actually i have 2 years teaching experience as computer
faculty but now i am a DBA but when i go for interview many
peoples asked me why i left my teaching profession and why
i want to come in this field kindly give me the proper
answer of this queston

Answer Posted / ug ist year student

You can always say that we must keep improving ourselves. To
go on the ladder, we must find opportunities to learn and
give it back to the company and the society. You have
already given back to the society what you knew. Now by
opting to work and learn by working, you are rising your
potential so that you are able to do your justified share in
keeping your company on a high profile and give back to the
society in a bigger way.
They may immediately ask u what are the bigger ways you are
planning for the society..! You may hav answers I guess.
Anyway you must say such things that will not divert your
attention from your work. u cant say u will be a part time
teacher or u wil build a school. coz it will mean u wont
take ur work as the main factor and tht u r not planning to
stay in their company for long if u want to build a school!!
Very dangerous.. so u think of something that will involve
the company in social work. Get to kno if the comapny has
any small goal related to social giving. Every company
normally has an impractical policy! So ur words of social
service in the name of the company and some small realistic
aims may help. dont sound as if u r decided on that social
service. just keep it short. but make sure u say some real
social service that u hav already undertaken(if u havent, do
some really different nice thing for real people) so tht
they dont think u r just talking for name sake. keep ur
social service achievement short but strong.never take
certificates of social service but photos might be better.r
u serving for the sake of certis?? No.ok next u immediately
talk about giving back to the society byhelping your comapny
grow. after all the company u r going to join in is great in
doing good. so u like to thank the society thru the company.
u can say all this. am sure u will be considered.. :)

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

704


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1637


What is the difference between if else and switchstatement

1318


What are Macros? What are its advantages and disadvantages?

651


How does placing some code lines between the comment symbol help in debugging the code?

550






What is the difference between exit() and _exit() function?

610


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2725


What is the value of c?

576


What is getch?

634


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

637


What are the rules for identifiers in c?

592


what are the different storage classes in c?

667


Why ca not I do something like this?

592


Is it possible to have a function as a parameter in another function?

604


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3847