QUANTITATIVE SECTION
1. If two pencils cost 8 cents, then how much do 5 pencils cost?
Ans. 20 cents
2. Some work is done by two people in 24 minutes. One of them can do this work alone in 40 minutes. How much time does the second person take to do the same work ?
Ans. 60 minutes
3. A car is filled with four and half gallons of fuel for a round trip.If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back?
Ans.2 gallons
4. The lowest temperature in the night in a city A is 1/3 more than 1/2 the highest during the day. Sum of the lowest temperature and the highest temperature is 100 degrees. Then what is the low temp?
Ans.40 degrees
5. Javagal, who decided to go to weekened trip should not exceed 8 hours driving in a day. The average speed of forward journey is 40 miles/hr.Due to traffic on sundays, the return journey's average speed is 30 m/h. How far he can select a picnic spot?
a) 120 miles
b) between 120 and 140 miles
c) 160 miles
Ans. 120 miles
6. A salesperson by mistake multiplied a number and got the answer as 3, instead of dividing the number by 3.What is the answer he should have actually got?
Ans. 3
7. A building with height D shadow upto G. What is the height of a neighbouring building with a shadow of C feet.
Ans. (C*D)/G
8. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit.
Ans. 15 mph
9. A bus started from bustand at 8.00am, and after staying for 30 minutes at a destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. During the return journey bus travels with 50% faster speed.At what time does it return to the busstand?
Ans. 11.00am
10. In a mixture, R is 2 parts and S is 1 part. In order to make S to 25% of the mixture, how much of R is to be added?
Ans.One part of R
11. Wind flows 160 miles in 330 min, for travelling 80 miles how much time does it require?
Ans. 2 hrs 45 mins
12. With a 4/5 full tank a vehicle can travel 12 miles, how far can it travel with a 1/3 full tank
Ans. 5 miles
13. There are two trees in a lawn. One grows at a rate 3/5 of the other in 4 years. If the total growth of trees is 8 ft. What is the height of the smaller tree after 2 years
Ans. 1 1/2 feet
14. Refer to the figure below. A ship started from P and moves at a speed of I miles per hour and another ship starts from L and moving with H miles per hour simultaneously. Where do the two ships meet?
||---g---||---h---||---i---||---j---||---k---||---l---||
PG H I J K L are the various stops in between denoted by || . The values g, h, i, j, k, l denote the distance between the ports.
Ans. Between I and J, closer to J
Sunday, June 28, 2009
TCS Interview Questions
SYNONYMS
compunction = remorse (regret)
amiable = friendly
cajole = coax (wheedle – sweet talk)
incentive = provocation
Embrace = hug (hold-cuddle)
latent = potential
Confiscate = appropriate (to take charge)
emancipate = liberate
lament = mourn
confiscate = appropriate
obstinate = stubborn
acumen = exactness
metamorphosis = transform
scrutiny = close examination
annihilate = to destroy
fuse = combine
whet = sharpen
behest = request
adage = proverb
penitence = to repeat
ovation = applause
overt = obvious
Efface = obliterate
compunction = remorse (regret)
amiable = friendly
cajole = coax (wheedle – sweet talk)
incentive = provocation
Embrace = hug (hold-cuddle)
latent = potential
Confiscate = appropriate (to take charge)
emancipate = liberate
lament = mourn
confiscate = appropriate
obstinate = stubborn
acumen = exactness
metamorphosis = transform
scrutiny = close examination
annihilate = to destroy
fuse = combine
whet = sharpen
behest = request
adage = proverb
penitence = to repeat
ovation = applause
overt = obvious
Efface = obliterate
Sunday, January 25, 2009
Saturday, June 21, 2008
C Job Interview Questions
1.) What does static variable mean?
2.) What is a pointer?
3.) What is a structure?
4.) What are the differences between structures and arrays?
5.) In header files whether functions are declared or defined?
6.) What are the differences between malloc() and calloc()?
7.) What are macros? What are its advantages and disadvantages?
8.) Difference between pass by reference and pass by value?
9.) What is static identifier?
10.) Where are the auto variables stored?
11.) Where does global, static, local, register variables, free memory and C Program instructions get stored?
12.) Difference between arrays and linked list?
13.) What are enumerations?
14.) Describe about storage allocation and scope of global, extern, static, local and register variables?
15.) What are register variables? What are the advantage of using register variables?
16.) What is the use of typedef?
17.) Can we specify variable field width in a scanf() format string? If possible how?
18.) Out of fgets() and gets() which function is safe to use and why?
19.) Difference between strdup and strcpy?
20.) What is recursion?
21.) Differentiate between a for loop and a while loop? What are it uses?
22.) What are the different storage classes in C?
23.) Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
24.) What is difference between Structure and Unions?
25.) What the advantages of using Unions?
26.) What are the advantages of using pointers in a program?
27.) What is the difference between Strings and Arrays?
28.) In a header file whether functions are declared or defined?
29.) What is a far pointer? where we use it?
30.) How will you declare an array of three function pointers where each function receives two ints and returns a float?
31.) what is a NULL Pointer? Whether it is same as an uninitialized pointer?
32.) What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
33.) What does the error 'Null Pointer Assignment' mean and what causes this error?
34.) What is near, far and huge pointers? How many bytes are occupied by them?
35.) How would you obtain segment and offset addresses from a far address of a memory location?
36.) Are the expressions arr and &arr same for an array of integers?
37.) Does mentioning the array name gives the base address in all the contexts?
38.) Explain one method to process an entire string as one unit?
39.) What is the similarity between a Structure, Union and enumeration?
40.) Can a Structure contain a Pointer to itself?
41.) How can we check whether the contents of two structure variables are same or not?
42.) How are Structure passing and returning implemented by the complier?
43.) How can we read/write Structures from/to data files?
44.) What is the difference between an enumeration and a set of pre-processor # defines?
45.) What do the 'c' and 'v' in argc and argv stand for?
46.) Are the variables argc and argv are local to main?
47.) What is the maximum combined length of command line arguments including the space between adjacent arguments?
48.) If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
49.) Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
50.) What are bit fields? What is the use of bit fields in a Structure declaration?
51.) To which numbering system can the binary number 1101100100111100 be easily converted to?
52.) Which bit wise operator is suitable for checking whether a particular bit is on or off?
53.) Which bit wise operator is suitable for turning off a particular bit in a number?
54.) Which bit wise operator is suitable for putting on a particular bit in a number?
55.) Which bit wise operator is suitable for checking whether a particular bit is on or off?
56.) which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
57.) Write a program to compare two strings without using the strcmp() function.
58.) Write a program to concatenate two strings.
59.) Write a program to interchange 2 variables without using the third one.
60.) Write programs for String Reversal & Palindrome check
61.) Write a program to find the Factorial of a number
62.) Write a program to generate the Fibinocci Series
63.) Write a program which employs Recursion
64.) Write a program which uses Command Line Arguments
65.) Write a program which uses functions like strcmp(), strcpy()? etc
66.) What are the advantages of using typedef in a program?
67.) How would you dynamically allocate a one-dimensional and two-dimensional array of integers?
68.) How can you increase the size of a dynamically allocated array?
69.) How can you increase the size of a statically allocated array?
70.) When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
71.) Which function should be used to free the memory allocated by calloc()?
72.) How much maximum can you allocate in a single call to malloc()?
73.) Can you dynamically allocate arrays in expanded memory?
74.) What is object file? How can you access object file?
75.) Which header file should you include if you are to develop a function which can accept variable number of arguments?
76.) Can you write a function similar to printf()?
77.) How can a called function determine the number of arguments that have been passed to it?
78.) Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
79.) How do you declare the following:
An array of three pointers to chars
An array of three char pointers
A pointer to array of three chars
A pointer to function which receives an int pointer and returns a float pointer
A pointer to a function which receives nothing and returns nothing
80.) What do the functions atoi(), itoa() and gcvt() do?
81.) Does there exist any other function which can be used to convert an integer or a float to a string?
82.) How would you use qsort() function to sort an array of structures?
83.) How would you use qsort() function to sort the name stored in an array of pointers to string?
84.) How would you use bsearch() function to search a name stored in array of pointers to string?
85.) How would you use the functions sin(), pow(), sqrt()?
86.) How would you use the functions memcpy(), memset(), memmove()?
87.) How would you use the functions fseek(), freed(), fwrite() and ftell()?
88.) How would you obtain the current time and difference between two times?
89.) How would you use the functions randomize() and random()?
90.) How would you implement a substr() function that extracts a sub string from a given string?
91.) What is the difference between the functions rand(), random(), srand() and randomize()?
92.) What is the difference between the functions memmove() and memcpy()?
93.) How do you print a string on the printer?
94.) Can you use the function fprintf() to display the output on the screen?
2.) What is a pointer?
3.) What is a structure?
4.) What are the differences between structures and arrays?
5.) In header files whether functions are declared or defined?
6.) What are the differences between malloc() and calloc()?
7.) What are macros? What are its advantages and disadvantages?
8.) Difference between pass by reference and pass by value?
9.) What is static identifier?
10.) Where are the auto variables stored?
11.) Where does global, static, local, register variables, free memory and C Program instructions get stored?
12.) Difference between arrays and linked list?
13.) What are enumerations?
14.) Describe about storage allocation and scope of global, extern, static, local and register variables?
15.) What are register variables? What are the advantage of using register variables?
16.) What is the use of typedef?
17.) Can we specify variable field width in a scanf() format string? If possible how?
18.) Out of fgets() and gets() which function is safe to use and why?
19.) Difference between strdup and strcpy?
20.) What is recursion?
21.) Differentiate between a for loop and a while loop? What are it uses?
22.) What are the different storage classes in C?
23.) Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
24.) What is difference between Structure and Unions?
25.) What the advantages of using Unions?
26.) What are the advantages of using pointers in a program?
27.) What is the difference between Strings and Arrays?
28.) In a header file whether functions are declared or defined?
29.) What is a far pointer? where we use it?
30.) How will you declare an array of three function pointers where each function receives two ints and returns a float?
31.) what is a NULL Pointer? Whether it is same as an uninitialized pointer?
32.) What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
33.) What does the error 'Null Pointer Assignment' mean and what causes this error?
34.) What is near, far and huge pointers? How many bytes are occupied by them?
35.) How would you obtain segment and offset addresses from a far address of a memory location?
36.) Are the expressions arr and &arr same for an array of integers?
37.) Does mentioning the array name gives the base address in all the contexts?
38.) Explain one method to process an entire string as one unit?
39.) What is the similarity between a Structure, Union and enumeration?
40.) Can a Structure contain a Pointer to itself?
41.) How can we check whether the contents of two structure variables are same or not?
42.) How are Structure passing and returning implemented by the complier?
43.) How can we read/write Structures from/to data files?
44.) What is the difference between an enumeration and a set of pre-processor # defines?
45.) What do the 'c' and 'v' in argc and argv stand for?
46.) Are the variables argc and argv are local to main?
47.) What is the maximum combined length of command line arguments including the space between adjacent arguments?
48.) If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
49.) Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
50.) What are bit fields? What is the use of bit fields in a Structure declaration?
51.) To which numbering system can the binary number 1101100100111100 be easily converted to?
52.) Which bit wise operator is suitable for checking whether a particular bit is on or off?
53.) Which bit wise operator is suitable for turning off a particular bit in a number?
54.) Which bit wise operator is suitable for putting on a particular bit in a number?
55.) Which bit wise operator is suitable for checking whether a particular bit is on or off?
56.) which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
57.) Write a program to compare two strings without using the strcmp() function.
58.) Write a program to concatenate two strings.
59.) Write a program to interchange 2 variables without using the third one.
60.) Write programs for String Reversal & Palindrome check
61.) Write a program to find the Factorial of a number
62.) Write a program to generate the Fibinocci Series
63.) Write a program which employs Recursion
64.) Write a program which uses Command Line Arguments
65.) Write a program which uses functions like strcmp(), strcpy()? etc
66.) What are the advantages of using typedef in a program?
67.) How would you dynamically allocate a one-dimensional and two-dimensional array of integers?
68.) How can you increase the size of a dynamically allocated array?
69.) How can you increase the size of a statically allocated array?
70.) When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
71.) Which function should be used to free the memory allocated by calloc()?
72.) How much maximum can you allocate in a single call to malloc()?
73.) Can you dynamically allocate arrays in expanded memory?
74.) What is object file? How can you access object file?
75.) Which header file should you include if you are to develop a function which can accept variable number of arguments?
76.) Can you write a function similar to printf()?
77.) How can a called function determine the number of arguments that have been passed to it?
78.) Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
79.) How do you declare the following:
An array of three pointers to chars
An array of three char pointers
A pointer to array of three chars
A pointer to function which receives an int pointer and returns a float pointer
A pointer to a function which receives nothing and returns nothing
80.) What do the functions atoi(), itoa() and gcvt() do?
81.) Does there exist any other function which can be used to convert an integer or a float to a string?
82.) How would you use qsort() function to sort an array of structures?
83.) How would you use qsort() function to sort the name stored in an array of pointers to string?
84.) How would you use bsearch() function to search a name stored in array of pointers to string?
85.) How would you use the functions sin(), pow(), sqrt()?
86.) How would you use the functions memcpy(), memset(), memmove()?
87.) How would you use the functions fseek(), freed(), fwrite() and ftell()?
88.) How would you obtain the current time and difference between two times?
89.) How would you use the functions randomize() and random()?
90.) How would you implement a substr() function that extracts a sub string from a given string?
91.) What is the difference between the functions rand(), random(), srand() and randomize()?
92.) What is the difference between the functions memmove() and memcpy()?
93.) How do you print a string on the printer?
94.) Can you use the function fprintf() to display the output on the screen?
C++ Job Interview Questions
1.) What is a class?
2.) What is an object?
3.) What is the difference between an object and a class?
4.) What is the difference between class and structure?
5.) What is public, protected, private?
6.) What are virtual functions?
7.) What is friend function?
8.) What is a scope resolution operator?
9.) What do you mean by inheritance?
10.) What is abstraction?
11.) What is polymorphism? Explain with an example.
12.) What is encapsulation?
13.) What do you mean by binding of data and functions?
14.) What is function overloading and operator overloading?
15.) What is virtual class and friend class?
16.) What do you mean by inline function?
17.) What do you mean by public, private, protected and friendly?
18.) When is an object created and what is its lifetime?
19.) What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
20.) Difference between realloc() and free?
21.) What is a template?
22.) What are the main differences between procedure oriented languages and object oriented languages?
23.) What is R T T I ?
24.) What are generic functions and generic classes?
25.) What is namespace?
26.) What is the difference between pass by reference and pass by value?
27.) Why do we use virtual functions?
28.) What do you mean by pure virtual functions?
29.) What are virtual classes?
30.) Does c++ support multilevel and multiple inheritance?
31.) What are the advantages of inheritance?
32.) When is a memory allocated to a class?
33.) What is the difference between declaration and definition?
34.) What is virtual constructors/destructors?
35.) In c++ there are only virtual destructors, no constructors. Why?
36.) What is late bound function call and early bound function call? Differentiate.
37.) How is exception handling carried out in c++?
38.) When will a constructor executed?
39.) What is Dynamic Polymorphism?
40.) Write a macro for swapping integers.
2.) What is an object?
3.) What is the difference between an object and a class?
4.) What is the difference between class and structure?
5.) What is public, protected, private?
6.) What are virtual functions?
7.) What is friend function?
8.) What is a scope resolution operator?
9.) What do you mean by inheritance?
10.) What is abstraction?
11.) What is polymorphism? Explain with an example.
12.) What is encapsulation?
13.) What do you mean by binding of data and functions?
14.) What is function overloading and operator overloading?
15.) What is virtual class and friend class?
16.) What do you mean by inline function?
17.) What do you mean by public, private, protected and friendly?
18.) When is an object created and what is its lifetime?
19.) What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
20.) Difference between realloc() and free?
21.) What is a template?
22.) What are the main differences between procedure oriented languages and object oriented languages?
23.) What is R T T I ?
24.) What are generic functions and generic classes?
25.) What is namespace?
26.) What is the difference between pass by reference and pass by value?
27.) Why do we use virtual functions?
28.) What do you mean by pure virtual functions?
29.) What are virtual classes?
30.) Does c++ support multilevel and multiple inheritance?
31.) What are the advantages of inheritance?
32.) When is a memory allocated to a class?
33.) What is the difference between declaration and definition?
34.) What is virtual constructors/destructors?
35.) In c++ there are only virtual destructors, no constructors. Why?
36.) What is late bound function call and early bound function call? Differentiate.
37.) How is exception handling carried out in c++?
38.) When will a constructor executed?
39.) What is Dynamic Polymorphism?
40.) Write a macro for swapping integers.
Interview Questions for Advanced JAVA
1.) What is RMI?
2.) Explain about RMI Architecture?
3.) What are Servelets?
4.) What is the use of servlets?
5.) Explain RMI Architecture?
6.) How will you pass values from htm page to the servlet?
7.) How do you load an image in a Servelet?
8.) What is purpose of applet programming?
9.) How will you communicate between two applets?
10.) What IS the difference between Servelets and Applets?
11.) How do you communicate in between Applets and Servlets?
12.) What is the difference between applet and application?
13.) What is the difference between CGI and Servlet?
14.) In the servlets, we are having a web page that is invoking servlets, username and password? Which is checks in database? Suppose the second page also if we want to verify the same information whether it will connect to the database or it will be used previous information?
15.) What are the difference between RMI and Servelets?
16.) How will you call an Applet using Java Script Function?
17.) How can you push data from an Applet to a Servlet?
18.) What are 4 drivers available in JDBC? At what situation are four of the drivers used?
19.) If you are truncated using JDBC, how can you that how much data is truncated?
20.) How will you perform truncation using JDBC?
21.) What is the latest version of JDBC? What are the new features added in that?
22.) What is the difference between RMI registry and OS Agent?
23.) To a server method, the client wants to send a value 20, with this value exceeds to 20 a message should be sent to the client. What will you do for achieving this?
24.) How do you invoke a Servelet? What is the difference between doPost method and doGet method?
25.) What is difference between the HTTP Servelet and Generic Servelet? Explain about their methods and parameters?
26.) Can we use threads in Servelets?
27.) Write a program on RMI and JDBC using Stored Procedure?
28.) How do you swing an applet?
29.) How will you pass parameters in RMI? Why do you serialize?
30.) In RMI, server object is first loaded into memory and then the stub reference is sent to the client. True or false?
31.) Suppose server object not loaded into the memory and the client request for it. What will happen?
32.) What is the web server used for running the servlets?
33.) What is Servlet API used for connecting database?
34.) What is bean? Where can it be used?
35.) What is the difference between java class and bean?
36.) Can we sent objects using Sockets?
37.) What is the RMI and Socket?
38.) What is CORBA?
39.) Can you modify an object in corba?
40.) What is RMI and what are the services in RMI?
41.) What are the difference between RMI and CORBA?
42.) How will you initialize an Applet?
43.) What is the order of method invocation in an Applet?
44.) What is ODBC and JDBC? How do you connect the Database?
45.) What do you mean by Socket Programming?
46.) What is difference between Generic Servlet and HTTP Servelet?
47.) What you mean by COM and DCOM?
48.) What is e-commerce?
2.) Explain about RMI Architecture?
3.) What are Servelets?
4.) What is the use of servlets?
5.) Explain RMI Architecture?
6.) How will you pass values from htm page to the servlet?
7.) How do you load an image in a Servelet?
8.) What is purpose of applet programming?
9.) How will you communicate between two applets?
10.) What IS the difference between Servelets and Applets?
11.) How do you communicate in between Applets and Servlets?
12.) What is the difference between applet and application?
13.) What is the difference between CGI and Servlet?
14.) In the servlets, we are having a web page that is invoking servlets, username and password? Which is checks in database? Suppose the second page also if we want to verify the same information whether it will connect to the database or it will be used previous information?
15.) What are the difference between RMI and Servelets?
16.) How will you call an Applet using Java Script Function?
17.) How can you push data from an Applet to a Servlet?
18.) What are 4 drivers available in JDBC? At what situation are four of the drivers used?
19.) If you are truncated using JDBC, how can you that how much data is truncated?
20.) How will you perform truncation using JDBC?
21.) What is the latest version of JDBC? What are the new features added in that?
22.) What is the difference between RMI registry and OS Agent?
23.) To a server method, the client wants to send a value 20, with this value exceeds to 20 a message should be sent to the client. What will you do for achieving this?
24.) How do you invoke a Servelet? What is the difference between doPost method and doGet method?
25.) What is difference between the HTTP Servelet and Generic Servelet? Explain about their methods and parameters?
26.) Can we use threads in Servelets?
27.) Write a program on RMI and JDBC using Stored Procedure?
28.) How do you swing an applet?
29.) How will you pass parameters in RMI? Why do you serialize?
30.) In RMI, server object is first loaded into memory and then the stub reference is sent to the client. True or false?
31.) Suppose server object not loaded into the memory and the client request for it. What will happen?
32.) What is the web server used for running the servlets?
33.) What is Servlet API used for connecting database?
34.) What is bean? Where can it be used?
35.) What is the difference between java class and bean?
36.) Can we sent objects using Sockets?
37.) What is the RMI and Socket?
38.) What is CORBA?
39.) Can you modify an object in corba?
40.) What is RMI and what are the services in RMI?
41.) What are the difference between RMI and CORBA?
42.) How will you initialize an Applet?
43.) What is the order of method invocation in an Applet?
44.) What is ODBC and JDBC? How do you connect the Database?
45.) What do you mean by Socket Programming?
46.) What is difference between Generic Servlet and HTTP Servelet?
47.) What you mean by COM and DCOM?
48.) What is e-commerce?
Interview Questions for Operating System
1.) What are the basic functions of an operating system?
2.) Explain briefly about, processor, assembler, compiler, loader, linker and the functions executed by them.
3.) What are the difference phases of software development? Explain briefly?
4.) Differentiate between RAM and ROM?
5.) What is DRAM? In which form does it store data?
6.) What is cache memory?
7.) What is hard disk and what is its purpose?
8.) Differentiate between Complier and Interpreter?
9.) What are the different tasks of Lexical analysis?
10.) What are the different functions of Syntax phase, Sheduler?
11.) What are the main difference between Micro-Controller and Micro- Processor?
12.) Describe different job scheduling in operating systems.
13.) What is a Real-Time System?
14.) What is the difference between Hard and Soft real-time systems?
15.) What is a mission critical system?
16.) What is the important aspect of a real-time system?
17.) If two processes which shares same system memory and system clock in a distributed system, what is it called?
18.) What is the state of the processor, when a process is waiting for some event to occur?
19.) What do you mean by deadlock?
20.) Explain the difference between microkernel and macro kernel.
21.) Give an example of microkernel.
22.) When would you choose bottom up methodology?
23.) When would you choose top down methodology?
24.) Write a small dc shell script to find number of FF in the design.
25.) Why paging is used?
26.) Which is the best page replacement algorithm and Why? How much time is spent usually in each phases and why?
27.) Difference between Primary storage and secondary storage?
28.) What is multi tasking, multi programming, multi threading?
29.) Difference between multi threading and multi tasking?
30.) What is software life cycle?
31.) Demand paging, page faults, replacement algorithms, thrashing, etc.
32.) Explain about paged segmentation and segment paging
33.) While running DOS on a PC, which command would be used to duplicate the entire diskette?
2.) Explain briefly about, processor, assembler, compiler, loader, linker and the functions executed by them.
3.) What are the difference phases of software development? Explain briefly?
4.) Differentiate between RAM and ROM?
5.) What is DRAM? In which form does it store data?
6.) What is cache memory?
7.) What is hard disk and what is its purpose?
8.) Differentiate between Complier and Interpreter?
9.) What are the different tasks of Lexical analysis?
10.) What are the different functions of Syntax phase, Sheduler?
11.) What are the main difference between Micro-Controller and Micro- Processor?
12.) Describe different job scheduling in operating systems.
13.) What is a Real-Time System?
14.) What is the difference between Hard and Soft real-time systems?
15.) What is a mission critical system?
16.) What is the important aspect of a real-time system?
17.) If two processes which shares same system memory and system clock in a distributed system, what is it called?
18.) What is the state of the processor, when a process is waiting for some event to occur?
19.) What do you mean by deadlock?
20.) Explain the difference between microkernel and macro kernel.
21.) Give an example of microkernel.
22.) When would you choose bottom up methodology?
23.) When would you choose top down methodology?
24.) Write a small dc shell script to find number of FF in the design.
25.) Why paging is used?
26.) Which is the best page replacement algorithm and Why? How much time is spent usually in each phases and why?
27.) Difference between Primary storage and secondary storage?
28.) What is multi tasking, multi programming, multi threading?
29.) Difference between multi threading and multi tasking?
30.) What is software life cycle?
31.) Demand paging, page faults, replacement algorithms, thrashing, etc.
32.) Explain about paged segmentation and segment paging
33.) While running DOS on a PC, which command would be used to duplicate the entire diskette?
INTERVIEW QUESTIONS FOR DATA STRUCTURE
1. What is a data structure?
2. What does abstract data type means?
3. Evaluate the following prefix expression " ++ 26 + - 1324" (Similar types can be asked)
4. Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1 (Similar types can be asked)
5. How is it possible to insert different type of elements in stack?
6. Stack can be described as a pointer. Explain.
7. Write a Binary Search program
8. Write programs for Bubble Sort, Quick sort
9. Explain about the types of linked lists
10. How would you sort a linked list?
11. Write the programs for Linked List (Insertion and Deletion) operations
12. What data structure would you mostly likely see in a non recursive implementation of a recursive algorithm?
13. What do you mean by Base case, Recursive case, Binding Time, Run-Time Stack and Tail Recursion?
14. Explain quick sort and merge sort algorithms and derive the time-constraint relation for these.
15. Explain binary searching, Fibinocci search.
16. What is the maximum total number of nodes in a tree that has N levels? Note that the root is level (zero)
17. How many different binary trees and binary search trees can be made from three nodes that contain the key values 1, 2 & 3?
18. A list is ordered from smaller to largest when a sort is called. Which sort would take the longest time to execute?
19. A list is ordered from smaller to largest when a sort is called. Which sort would take the shortest time to execute?
20. When will you sort an array of pointers to list elements, rather than sorting the elements themselves?
21. The element being searched for is not found in an array of 100 elements. What is the average number of comparisons needed in a sequential search to determine that the element is not there, if the elements are completely unordered?
22. What is the average number of comparisons needed in a sequential search to determine the position of an element in an array of 100 elements, if the elements are ordered from largest to smallest?
23. Which sort show the best average behavior?
24. What is the average number of comparisons in a sequential search?
25. Which data structure is needed to convert infix notations to post fix notations?
26. What do you mean by:
o Syntax Error
o Logical Error
o Runtime Error
How can you correct these errors?
27. In which data structure, elements can be added or removed at either end, but not in the middle?
28. How will inorder, preorder and postorder traversals print the elements of a tree?
29. Parenthesis are never needed in prefix or postfix expressions. Why?
30. Which one is faster? A binary search of an ordered set of elements in an array or a sequential search of the elements.
2. What does abstract data type means?
3. Evaluate the following prefix expression " ++ 26 + - 1324" (Similar types can be asked)
4. Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1 (Similar types can be asked)
5. How is it possible to insert different type of elements in stack?
6. Stack can be described as a pointer. Explain.
7. Write a Binary Search program
8. Write programs for Bubble Sort, Quick sort
9. Explain about the types of linked lists
10. How would you sort a linked list?
11. Write the programs for Linked List (Insertion and Deletion) operations
12. What data structure would you mostly likely see in a non recursive implementation of a recursive algorithm?
13. What do you mean by Base case, Recursive case, Binding Time, Run-Time Stack and Tail Recursion?
14. Explain quick sort and merge sort algorithms and derive the time-constraint relation for these.
15. Explain binary searching, Fibinocci search.
16. What is the maximum total number of nodes in a tree that has N levels? Note that the root is level (zero)
17. How many different binary trees and binary search trees can be made from three nodes that contain the key values 1, 2 & 3?
18. A list is ordered from smaller to largest when a sort is called. Which sort would take the longest time to execute?
19. A list is ordered from smaller to largest when a sort is called. Which sort would take the shortest time to execute?
20. When will you sort an array of pointers to list elements, rather than sorting the elements themselves?
21. The element being searched for is not found in an array of 100 elements. What is the average number of comparisons needed in a sequential search to determine that the element is not there, if the elements are completely unordered?
22. What is the average number of comparisons needed in a sequential search to determine the position of an element in an array of 100 elements, if the elements are ordered from largest to smallest?
23. Which sort show the best average behavior?
24. What is the average number of comparisons in a sequential search?
25. Which data structure is needed to convert infix notations to post fix notations?
26. What do you mean by:
o Syntax Error
o Logical Error
o Runtime Error
How can you correct these errors?
27. In which data structure, elements can be added or removed at either end, but not in the middle?
28. How will inorder, preorder and postorder traversals print the elements of a tree?
29. Parenthesis are never needed in prefix or postfix expressions. Why?
30. Which one is faster? A binary search of an ordered set of elements in an array or a sequential search of the elements.
Java Interview Questions
1.) What is the difference between an Abstract class and Interface?
2.) What is user defined exception?
3.) What do you know about the garbage collector?
4.) What is the difference between java and c++?
5.) In an htm form I have a button which makes us to open another page in 15 seconds. How will you do that?
6.) What is the difference between process and threads?
7.) What is update method called?
8.) Have you ever used HashTable and Directory?
9.) What are statements in Java?
10.) What is a JAR file?
11.) What is JNI?
12.) What is the base class for all swing components?
13.) What is JFC?
14.) What is the difference between AWT and Swing?
15.) Considering notepad/IE or any other thing as process, What will happen if you start notepad or IE 3 times ? Where three processes are started or three threads are started?
16.) How does thread synchronization occur in a monitor?
17.) Is there any tag in htm to upload and download files?
18.) Why do you canvas?
19.) How can you know about drivers and database information ?
20.) What is serialization?
21.) Can you load the server object dynamically? If so what are the 3 major steps involved in it?
22.) What is the layout for toolbar?
23.) What is the difference between Grid and Gridbaglayout?
24.) How will you add panel to a frame?
25.) Where are the card layouts used?
26.) What is the corresponding layout for card in swing?
27.) What is light weight component?
28.) Can you run the product development on all operating systems?
29.) What are the benefits if Swing over AWT?
30.) How can two threads be made to communicate with each other?
31.) What are the files generated after using IDL to java compiler?
32.) What is the protocol used by server and client?
33.) What is the functionability stubs and skeletons?
34.) What is the mapping mechanism used by java to identify IDL language?
35.) What is serializable interface?
36.) What is the use of interface?
37.) Why is java not fully objective oriented?
38.) Why does java not support multiple inheritance?
39.) What is the root class for all java classes?
40.) What is polymorphism?
41.) Suppose if we have a variable 'I' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
42.) What are virtual functions?
43.) Write down how will you create a Binary tree?
44.) What are the traverses in binary tree?
45.) Write a program for recursive traverse?
46.) What are session variable in servlets?
47.) What is client server computing?
48.) What is constructor and virtual function? Can we call a virtual function in a constructor?
49.) Why do we use oops concepts? What is its advantage?
50.) What is middleware? What is the functionality of web server?
51.) Why is java not 100% pure oops?
52.) When will you use an interface and abstract class?
53.) What is the exact difference in between Unicast and Multicast object? Where will it be used?
54.) What is the main functionality of the remote reference layer?
55.) How do you download stubs from Remote place?
56.) I want to store more than 10 objects in a remote server? Which methodology will follow?
57.) What is the main functionality of Prepared Statement?
58.) What is meant by Static query and Dynamic query?
59.) What are Normalization Rules? Define Normalization?
60.) What is meant by Servelet? What are the parameters of service method?
61.) What is meant by Session? Explain something about HTTP Session Class?
62.) In a container there are 5 components. I want to display all the component names, how will you do that?
63.) Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
64.) Tell some latest versions in JAVA related areas?
65.) What is meant by class loader? How many types are there? When will we use them?
66.) What is meant by flickering?
67.) What is meant by distributed application? Why are we using that in our application?
68.) What is the functionality of the stub?
69.) Explain about version control?
70.) Explain 2-tier and 3-tier architecture?
71.) What is the role of Web Server?
72.) How can we do validation of the fields in a project?
73.) What is meant by cookies? Explain the main features?
74.) Why java is considered as platform independent?
75.) What are the advantages of java over C++?
76.) How java can be connected to a database?
77.) What is thread?
78.) What is difference between Process and Thread?
79.) Does java support multiple inheritance? if not, what is the solution?
80.) What are abstract classes?
81.) What is an interface?
82.) What is the difference abstract class and interface?
83.) What are adapter classes?
84.) what is meant wrapper classes?
85.) What are JVM.JRE, J2EE, JNI?
86.) What are swing components?
87.) What do you mean by light weight and heavy weight components?
88.) What is meant by function overloading and function overriding?
89.) Does java support function overloading, pointers, structures, unions or linked lists?
90.) What do you mean by multithreading?
91.) What are byte codes?
92.) What are streams?
93.) What is user defined exception?
94.) In an htm page form I have one button which makes us to open a new page in 15 seconds. How will you do that?
2.) What is user defined exception?
3.) What do you know about the garbage collector?
4.) What is the difference between java and c++?
5.) In an htm form I have a button which makes us to open another page in 15 seconds. How will you do that?
6.) What is the difference between process and threads?
7.) What is update method called?
8.) Have you ever used HashTable and Directory?
9.) What are statements in Java?
10.) What is a JAR file?
11.) What is JNI?
12.) What is the base class for all swing components?
13.) What is JFC?
14.) What is the difference between AWT and Swing?
15.) Considering notepad/IE or any other thing as process, What will happen if you start notepad or IE 3 times ? Where three processes are started or three threads are started?
16.) How does thread synchronization occur in a monitor?
17.) Is there any tag in htm to upload and download files?
18.) Why do you canvas?
19.) How can you know about drivers and database information ?
20.) What is serialization?
21.) Can you load the server object dynamically? If so what are the 3 major steps involved in it?
22.) What is the layout for toolbar?
23.) What is the difference between Grid and Gridbaglayout?
24.) How will you add panel to a frame?
25.) Where are the card layouts used?
26.) What is the corresponding layout for card in swing?
27.) What is light weight component?
28.) Can you run the product development on all operating systems?
29.) What are the benefits if Swing over AWT?
30.) How can two threads be made to communicate with each other?
31.) What are the files generated after using IDL to java compiler?
32.) What is the protocol used by server and client?
33.) What is the functionability stubs and skeletons?
34.) What is the mapping mechanism used by java to identify IDL language?
35.) What is serializable interface?
36.) What is the use of interface?
37.) Why is java not fully objective oriented?
38.) Why does java not support multiple inheritance?
39.) What is the root class for all java classes?
40.) What is polymorphism?
41.) Suppose if we have a variable 'I' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
42.) What are virtual functions?
43.) Write down how will you create a Binary tree?
44.) What are the traverses in binary tree?
45.) Write a program for recursive traverse?
46.) What are session variable in servlets?
47.) What is client server computing?
48.) What is constructor and virtual function? Can we call a virtual function in a constructor?
49.) Why do we use oops concepts? What is its advantage?
50.) What is middleware? What is the functionality of web server?
51.) Why is java not 100% pure oops?
52.) When will you use an interface and abstract class?
53.) What is the exact difference in between Unicast and Multicast object? Where will it be used?
54.) What is the main functionality of the remote reference layer?
55.) How do you download stubs from Remote place?
56.) I want to store more than 10 objects in a remote server? Which methodology will follow?
57.) What is the main functionality of Prepared Statement?
58.) What is meant by Static query and Dynamic query?
59.) What are Normalization Rules? Define Normalization?
60.) What is meant by Servelet? What are the parameters of service method?
61.) What is meant by Session? Explain something about HTTP Session Class?
62.) In a container there are 5 components. I want to display all the component names, how will you do that?
63.) Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
64.) Tell some latest versions in JAVA related areas?
65.) What is meant by class loader? How many types are there? When will we use them?
66.) What is meant by flickering?
67.) What is meant by distributed application? Why are we using that in our application?
68.) What is the functionality of the stub?
69.) Explain about version control?
70.) Explain 2-tier and 3-tier architecture?
71.) What is the role of Web Server?
72.) How can we do validation of the fields in a project?
73.) What is meant by cookies? Explain the main features?
74.) Why java is considered as platform independent?
75.) What are the advantages of java over C++?
76.) How java can be connected to a database?
77.) What is thread?
78.) What is difference between Process and Thread?
79.) Does java support multiple inheritance? if not, what is the solution?
80.) What are abstract classes?
81.) What is an interface?
82.) What is the difference abstract class and interface?
83.) What are adapter classes?
84.) what is meant wrapper classes?
85.) What are JVM.JRE, J2EE, JNI?
86.) What are swing components?
87.) What do you mean by light weight and heavy weight components?
88.) What is meant by function overloading and function overriding?
89.) Does java support function overloading, pointers, structures, unions or linked lists?
90.) What do you mean by multithreading?
91.) What are byte codes?
92.) What are streams?
93.) What is user defined exception?
94.) In an htm page form I have one button which makes us to open a new page in 15 seconds. How will you do that?
Friday, March 21, 2008
Microsoft Interview questions
Puzzles....
1. Crazy Guy On The Airplane
A line of 100 airline passengers is waiting to board a plane. they each hold a ticket to one of the 100 seats on that flight.
2. 100 doors in a row.
you have 100 doors in a row that are all initially closed. you make 100 passes by the doors starting with the first door every time.
3. 100 programmers and an assassin
100 programmers are lined up in a row by an assassin. The assassin puts red and blue hats on them. They can't see their own hats, but they can see the hats of the people in front of them. the assassin starts in the back and says "what color is your hat?"
4. 3 black hats and 2 white hats
Four men are lined up on some steps. They are all facing in the same direction. A wall seperates the fourth man from the other three
5. Which bucket has the highest ratio between red and blue?
If you have two buckets, one with red paint and the other with blue paint, and you take one cup from the blue bucket and poor it into the red bucket. Then you take one cup from the red bucket and poor it into the blue bucket. Which bucket has the highest ratio between red and blue?
6. Bucket of Jelly Beans
You have a bucket of jelly beans. Some are red, some are blue, and some green. With your eyes closed, pick out 2 of a like color. How many do you have to grab to be sure you have 2 of the same?
7. If you had an infinite supply of water and a 5 quart and 3 quart pail, how would you measure exactly
If you had an infinite supply of water and a 5 quart and 3 quart pail, how would you measure exactly 4 quarts?
8. 4 women who want to cross a bridge
There are 4 women who want to cross a bridge. They all begin on the same side. You have 17 minutes to get all of them across to the other side. It is night. There is one flashlight. A maximum of two people can cross at one time.
9. Find a jar with a contaminated pill from a set of jars
You have 4 jars of pills. Each pill is a certain weight, except for contaminated pills contained in one jar, where each pill is weight + 1. How could you tell which jar had the contaminated pills in just one measurement?
10. Why does a mirror appear to reverse left and right but not up or down?
Why does a mirror appear to reverse left and right but not up or down?
1. Crazy Guy On The Airplane
A line of 100 airline passengers is waiting to board a plane. they each hold a ticket to one of the 100 seats on that flight.
2. 100 doors in a row.
you have 100 doors in a row that are all initially closed. you make 100 passes by the doors starting with the first door every time.
3. 100 programmers and an assassin
100 programmers are lined up in a row by an assassin. The assassin puts red and blue hats on them. They can't see their own hats, but they can see the hats of the people in front of them. the assassin starts in the back and says "what color is your hat?"
4. 3 black hats and 2 white hats
Four men are lined up on some steps. They are all facing in the same direction. A wall seperates the fourth man from the other three
5. Which bucket has the highest ratio between red and blue?
If you have two buckets, one with red paint and the other with blue paint, and you take one cup from the blue bucket and poor it into the red bucket. Then you take one cup from the red bucket and poor it into the blue bucket. Which bucket has the highest ratio between red and blue?
6. Bucket of Jelly Beans
You have a bucket of jelly beans. Some are red, some are blue, and some green. With your eyes closed, pick out 2 of a like color. How many do you have to grab to be sure you have 2 of the same?
7. If you had an infinite supply of water and a 5 quart and 3 quart pail, how would you measure exactly
If you had an infinite supply of water and a 5 quart and 3 quart pail, how would you measure exactly 4 quarts?
8. 4 women who want to cross a bridge
There are 4 women who want to cross a bridge. They all begin on the same side. You have 17 minutes to get all of them across to the other side. It is night. There is one flashlight. A maximum of two people can cross at one time.
9. Find a jar with a contaminated pill from a set of jars
You have 4 jars of pills. Each pill is a certain weight, except for contaminated pills contained in one jar, where each pill is weight + 1. How could you tell which jar had the contaminated pills in just one measurement?
10. Why does a mirror appear to reverse left and right but not up or down?
Why does a mirror appear to reverse left and right but not up or down?
Five Questions to Always Ask On an Interview
1. WHAT ARE THE PRIORITIES THAT WILL NEED TO BE ADDRESSED IMMEDIATELY IN THIS POSITION?: A title alone tells you nothing. The job description won't reveal much either, except whether or not you're capable of doing what's required functionally on a daily basis. For the same reason that you put your accomplishments on your resume - and not just the job description - here, too, you want to get a sense of the individuality of this job in this company.
Was everything left running smoothly? Is it pretty much picking up and continuing daily functions as normal? Or is there damage control that needs to be done? If so, is there a time line for the repair, and is it an achievable one considering your capabilities? Is it realistic regardless of who holds the position?
If you don't have any information, this will begin to clue you in about both the supervisor and the previous employee. If you have been provided with some detail already, then the answer should track with what you've already learned.
2. HOW LONG WAS THE PREVIOUS PERSON HERE? WHY DID THEY LEAVE? Generally, in answering the first part, the interviewer will answer the second part as well. But if they don't, then ask it. And if that person was there an oddly short time, you also want to know how long the person before that was there.
See where I'm going with this? If the job is in disarray, and the last two people were there a short period of time and were fired, you don't need to ask any of the other questions here. Exit gracefully and then run! Because before long, you, too, will be terminated for not achieving whatever it is they want done - regardless of if the stated time frame sounded realistic or not.
3. TELL ME ABOUT YOUR MANAGEMENT STYLE. HOW DO YOU BRING OUT THE BEST IN YOUR EMPLOYEES?: Is he a micro manager? Is he an information hound that needs to be kept informed of everything? Does he leave people alone to do what he hired them for and simply keep on top of what's going on? Does he help you if you have trouble? Do any mentoring? Or is he a berating, derogatory, jerk?
Obviously he's not going to come right out and tell you he's a micro manager! Instead he might say, "I like to keep a very close watch on what's going on in my department," or "I visit with each member of my department on a daily basis to make sure they're staying on track," or something similar.
You'll find that the person will be fairly straightforward in sharing their management style with you. What you want to pay attention to is how they word it.
4. WHAT TYPES OF PEOPLE TEND TO EXCEL HERE?: Workaholics? Ones who are self-motivated and manage themselves well? People who work well in teams or committees? Employees who keep their supervisor informed of "where they are with things" on a daily basis?
This tells you something about the pervasive culture in the company or department. Generally speaking, companies - or departments - tend to be made up of similar types of people that are in harmony with the company culture and philosophy. An entrepreneurial person won't function well in a committee environment. While sales personalities can vary greatly, the top achievers are goal driven and motivated to achieve, rather than complacent. People who are accustomed to thinking for themselves will find themselves chafing in a company that has a more dictatorial style, while those who perform better when they're told what to do will find themselves adrift in a company that requires its employees to think for themselves.
5. HOW LONG HAVE YOU BEEN HERE? WHY DO YOU STAY?: The answer to this question will give you an indication as to the feeling or health of the department or company. The way in which he answers the question will also give you additional insight into your potential boss, his management style, and what type of people excel in the department or company.
These are informational questions, not challenges. Be genuinely interested in the answer, because you're gaining valuable information that has to do with your future. When you leave the interview and process it within yourself, you'll be matching what you learned with what you are looking for.
Pay attention to the interviewer's body language and facial expressions. Is he relaxed? Does he fill in some of the spaces? Does he speak TO you - or AT you? Does he answer the question briefly and then quickly fire off another one? These, too, are valuable cues, and after the interview, you'll need to piece them together with the verbal information you received.
Your perfect job might land in your lap by grace and good fortune. But more likely, you'll need to look for it. It's there - but to recognize it, you'll need to know what it doesn't look like, as well as what it does.
Was everything left running smoothly? Is it pretty much picking up and continuing daily functions as normal? Or is there damage control that needs to be done? If so, is there a time line for the repair, and is it an achievable one considering your capabilities? Is it realistic regardless of who holds the position?
If you don't have any information, this will begin to clue you in about both the supervisor and the previous employee. If you have been provided with some detail already, then the answer should track with what you've already learned.
2. HOW LONG WAS THE PREVIOUS PERSON HERE? WHY DID THEY LEAVE? Generally, in answering the first part, the interviewer will answer the second part as well. But if they don't, then ask it. And if that person was there an oddly short time, you also want to know how long the person before that was there.
See where I'm going with this? If the job is in disarray, and the last two people were there a short period of time and were fired, you don't need to ask any of the other questions here. Exit gracefully and then run! Because before long, you, too, will be terminated for not achieving whatever it is they want done - regardless of if the stated time frame sounded realistic or not.
3. TELL ME ABOUT YOUR MANAGEMENT STYLE. HOW DO YOU BRING OUT THE BEST IN YOUR EMPLOYEES?: Is he a micro manager? Is he an information hound that needs to be kept informed of everything? Does he leave people alone to do what he hired them for and simply keep on top of what's going on? Does he help you if you have trouble? Do any mentoring? Or is he a berating, derogatory, jerk?
Obviously he's not going to come right out and tell you he's a micro manager! Instead he might say, "I like to keep a very close watch on what's going on in my department," or "I visit with each member of my department on a daily basis to make sure they're staying on track," or something similar.
You'll find that the person will be fairly straightforward in sharing their management style with you. What you want to pay attention to is how they word it.
4. WHAT TYPES OF PEOPLE TEND TO EXCEL HERE?: Workaholics? Ones who are self-motivated and manage themselves well? People who work well in teams or committees? Employees who keep their supervisor informed of "where they are with things" on a daily basis?
This tells you something about the pervasive culture in the company or department. Generally speaking, companies - or departments - tend to be made up of similar types of people that are in harmony with the company culture and philosophy. An entrepreneurial person won't function well in a committee environment. While sales personalities can vary greatly, the top achievers are goal driven and motivated to achieve, rather than complacent. People who are accustomed to thinking for themselves will find themselves chafing in a company that has a more dictatorial style, while those who perform better when they're told what to do will find themselves adrift in a company that requires its employees to think for themselves.
5. HOW LONG HAVE YOU BEEN HERE? WHY DO YOU STAY?: The answer to this question will give you an indication as to the feeling or health of the department or company. The way in which he answers the question will also give you additional insight into your potential boss, his management style, and what type of people excel in the department or company.
These are informational questions, not challenges. Be genuinely interested in the answer, because you're gaining valuable information that has to do with your future. When you leave the interview and process it within yourself, you'll be matching what you learned with what you are looking for.
Pay attention to the interviewer's body language and facial expressions. Is he relaxed? Does he fill in some of the spaces? Does he speak TO you - or AT you? Does he answer the question briefly and then quickly fire off another one? These, too, are valuable cues, and after the interview, you'll need to piece them together with the verbal information you received.
Your perfect job might land in your lap by grace and good fortune. But more likely, you'll need to look for it. It's there - but to recognize it, you'll need to know what it doesn't look like, as well as what it does.
Friday, October 12, 2007
Veterinary Questions for Interview
Accidents happen in every profession. What if you kill an animal by accident (wrong drug, surgical mistake, overdose, etc)? What would you do?
An owner brings in a young healthy dog and wants you to euthanize it because they will be moving
out of the state. What do you do?
What are two diseases that would be common in a thirteen-year-old cat?
What can you do to make a dog that is afraid of doctors more comfortable?
How do you know if a cat is scared?
What current issues do you think veterinarians are involved in?
How do I feel about euthanasia? Do I have a problem with it?
What are 5 qualities of a great vet
How do you deal with stress, how do you relax, who do you turn to if you're stressed?
What is the difference between animal rights and animal welfare?
Why do you want to be a vet?
Out of your vet experience, what do you enjoy the most?
How do you feel about using live animals to practice surgery, etc?
Tell me about the appealing/non-appealing parts of veterinary medicine
Would you treat an animal hit by a car even though the owner won't pay?
Who should you call if you think the animal you are treating may have been abused? What legal avenues can the vet pursue if any?
Do you have a right not to treat an animal?
An owner brings in a young healthy dog and wants you to euthanize it because they will be moving
out of the state. What do you do?
What are two diseases that would be common in a thirteen-year-old cat?
What can you do to make a dog that is afraid of doctors more comfortable?
How do you know if a cat is scared?
What current issues do you think veterinarians are involved in?
How do I feel about euthanasia? Do I have a problem with it?
What are 5 qualities of a great vet
How do you deal with stress, how do you relax, who do you turn to if you're stressed?
What is the difference between animal rights and animal welfare?
Why do you want to be a vet?
Out of your vet experience, what do you enjoy the most?
How do you feel about using live animals to practice surgery, etc?
Tell me about the appealing/non-appealing parts of veterinary medicine
Would you treat an animal hit by a car even though the owner won't pay?
Who should you call if you think the animal you are treating may have been abused? What legal avenues can the vet pursue if any?
Do you have a right not to treat an animal?
Teacher Questions for Interview
What do you expect from the school principal, psychologist and superintendent?
What are the greatest teaching strengths you would bring to a teaching position?
What would you tell a parent who complained about his/her child not having enough homework?
Imagine that you replace a teacher during the year. Describe how you would become acquainted with parents and students.
In your opinion, how effective are parent conferences in solving student problems?
How do you let parents know the progress of their child?
Tell me some ways you would involve parents in your classroom.
Describe some ways you can inform parents of what is going on in your classroom.
What two core teaching strategies do you most use to achieve this result?
When you think about your students, in what major ways do you most want to influence their lives?
What do you need to know in order to begin your lesson planning for a class?
What three things do you most want to know about your students?
How much do you want to know about your students in order to be most helpful to them?
What are your three most important reasons for wanting to be a teacher?
You have heard students complaining constantly about another teacher. What would you do?
What do you believe is the major purpose of teacher evaluation?
What talents do you bring to this position?
How would you go about setting standards at the beginning of the year?
How do you get students to do what you want them to do? Describe your system of classroom management.
How do you get students to develop in self-discipline? Can you teach this?
Who should be responsible for the discipline in the school?
If you have a student disrupting your classroom, what steps would you take to solve this problem?
What is your attitude towards individual vs. total class punishment?
Compare negative and positive reinforcement and describe effects of each.
What steps would you take to get a student who has been tardy to be more punctual?
What would I expect to see in your classroom's physical environment?
Describe what diagnostic and proscriptive learning means?
What are the various ways for materials to be presented to students such as in social science?
If you were asked to get in-service experience in one area of the curriculum, which area would you choose?
What goals do you hope to achieve in your subject?
In which curriculum area do you feel particularly strong?
Name some ways that a student in a group can show you he has the concept?
How would you individualize the learning process in your classroom?
How can you tell students are learning? Evaluation techniques?
What does individualized teaching mean to you?
What do you understand the inquiry method to be in science or social sciences?
Do you prefer homogeneous or heterogeneous grouping? Why?
How would you decide on groups in mathematics?
What reading programs do you have experience with? What do you like or dislike about them?
If you were hired to teach starting this September, how would you go about setting up your reading program?
What are the greatest teaching strengths you would bring to a teaching position?
What would you tell a parent who complained about his/her child not having enough homework?
Imagine that you replace a teacher during the year. Describe how you would become acquainted with parents and students.
In your opinion, how effective are parent conferences in solving student problems?
How do you let parents know the progress of their child?
Tell me some ways you would involve parents in your classroom.
Describe some ways you can inform parents of what is going on in your classroom.
What two core teaching strategies do you most use to achieve this result?
When you think about your students, in what major ways do you most want to influence their lives?
What do you need to know in order to begin your lesson planning for a class?
What three things do you most want to know about your students?
How much do you want to know about your students in order to be most helpful to them?
What are your three most important reasons for wanting to be a teacher?
You have heard students complaining constantly about another teacher. What would you do?
What do you believe is the major purpose of teacher evaluation?
What talents do you bring to this position?
How would you go about setting standards at the beginning of the year?
How do you get students to do what you want them to do? Describe your system of classroom management.
How do you get students to develop in self-discipline? Can you teach this?
Who should be responsible for the discipline in the school?
If you have a student disrupting your classroom, what steps would you take to solve this problem?
What is your attitude towards individual vs. total class punishment?
Compare negative and positive reinforcement and describe effects of each.
What steps would you take to get a student who has been tardy to be more punctual?
What would I expect to see in your classroom's physical environment?
Describe what diagnostic and proscriptive learning means?
What are the various ways for materials to be presented to students such as in social science?
If you were asked to get in-service experience in one area of the curriculum, which area would you choose?
What goals do you hope to achieve in your subject?
In which curriculum area do you feel particularly strong?
Name some ways that a student in a group can show you he has the concept?
How would you individualize the learning process in your classroom?
How can you tell students are learning? Evaluation techniques?
What does individualized teaching mean to you?
What do you understand the inquiry method to be in science or social sciences?
Do you prefer homogeneous or heterogeneous grouping? Why?
How would you decide on groups in mathematics?
What reading programs do you have experience with? What do you like or dislike about them?
If you were hired to teach starting this September, how would you go about setting up your reading program?
Secretary Questions for Interview
If I asked you to schedule a meeting and insure that all aspects of the meeting are taken care of, what will you do?
What else should we know about you?
What level of management are you currently supporting?
Do you know how to use Microsoft Outlook?
Give me an example on how you would answer the phone?
How fast can you type?
What technical skills do you possess?
Do you know how to use MS PowerPoint?
Do you know how to use MS Word?
Do you know how to use MS Excel?
Can you use macros?
Can you create a calendar of projects for each manager in Excel?
What is your experience with meeting planning and calendar maintenance?
How do you coordinate and schedule a meeting?
What are the different means by which documents may be filed?
How do you work with confidential information?
What else should we know about you?
What level of management are you currently supporting?
Do you know how to use Microsoft Outlook?
Give me an example on how you would answer the phone?
How fast can you type?
What technical skills do you possess?
Do you know how to use MS PowerPoint?
Do you know how to use MS Word?
Do you know how to use MS Excel?
Can you use macros?
Can you create a calendar of projects for each manager in Excel?
What is your experience with meeting planning and calendar maintenance?
How do you coordinate and schedule a meeting?
What are the different means by which documents may be filed?
How do you work with confidential information?
Sales Questions for Interview
What makes you different from any other salesman?
Pick anything in this room and try to sell it to me.
What do you like and dislike about presentations and why?
What do you see as the key issues in negotiating?
What do you see as the key skills in closing?
How would your present prospects and customers describe you as their sales representative?
How many rejections do you take in a typical week?
How do you move forward from a string of rejections?
What are some of the challenges you see that are facing this industry?
What are your top three open-ended questions for initial sales calls?
What do you think are the most important skills in succeeding in sales?
In your current position, how much time would you say you spend directly with prospects and customers throughout the sales day and what specifically do you do with them?
What type of sales cycle is most rewarding to you? A long cycle for a big ticket item or a series of smaller, more frequent sales.
What do you like and dislike about the sales process and why?
What do you like and dislike about the products or services you're selling now and why?
What are your favorite selling books?
Pick anything in this room and try to sell it to me.
What do you like and dislike about presentations and why?
What do you see as the key issues in negotiating?
What do you see as the key skills in closing?
How would your present prospects and customers describe you as their sales representative?
How many rejections do you take in a typical week?
How do you move forward from a string of rejections?
What are some of the challenges you see that are facing this industry?
What are your top three open-ended questions for initial sales calls?
What do you think are the most important skills in succeeding in sales?
In your current position, how much time would you say you spend directly with prospects and customers throughout the sales day and what specifically do you do with them?
What type of sales cycle is most rewarding to you? A long cycle for a big ticket item or a series of smaller, more frequent sales.
What do you like and dislike about the sales process and why?
What do you like and dislike about the products or services you're selling now and why?
What are your favorite selling books?
Receptionist Questions for Interview
Why did you stay so long in your last two Companies? What is your career goals? What do you least like about dealing with customer? What do you know my company? How much salary do you expect?
What is most important about being a Receptionist?
A person walks into the building and asks to speak to one of the managers he can see threw the window. The manager told you he is unavailable to speak with anyone today. What do you tell the person? What if they argue? What if they will not take no for an answer?
What are you trying to accomplish when answering the phone?
How fast can you type?
One of our managers is not picking up the phone, but the client needs to speak with him right away. What do you do?
What is the difference between a Receptionist and a Secretary?
Please give me an example on how you would answer the phone?
Do you know how to use MS Word?
Tell us about your clerical experience.
Assume that you've been hired for the position. A mother calls and says her child is sick and she needs an appointment this morning. You don't have an open appointment for the morning. What will you do?
What is most important about being a Receptionist?
A person walks into the building and asks to speak to one of the managers he can see threw the window. The manager told you he is unavailable to speak with anyone today. What do you tell the person? What if they argue? What if they will not take no for an answer?
What are you trying to accomplish when answering the phone?
How fast can you type?
One of our managers is not picking up the phone, but the client needs to speak with him right away. What do you do?
What is the difference between a Receptionist and a Secretary?
Please give me an example on how you would answer the phone?
Do you know how to use MS Word?
Tell us about your clerical experience.
Assume that you've been hired for the position. A mother calls and says her child is sick and she needs an appointment this morning. You don't have an open appointment for the morning. What will you do?
Principal Questions for Interview
What computer programs and or skills are you proficient in?
How do you bring out excellence in others?
How do you deal with mediocrity?
What are the most important ways that you will help the teachers?
How would you approach staff morale?
What do you consider to be the characteristics of an excellent teacher?
How would you score yourself as a teacher given your standards?
A teacher does not measure up to expectations. How do you address the situation? What process would you follow?
Are there any recent professional articles, books, or conferences have you encountered lately that have affected your practice?
When you have an important decision to make, how do you make it?
How do you get a feel for what teachers or students are thinking?
How do you solicit and process evaluation of your performance?
What has been your experience with parental involvement in schools?
What is your expectation of student conduct, demeanor, or deportment in how they carry themselves in school and at school related functions?
Tell us about a difficult discipline situation you have dealt with.
What is the principal’s role in helping students develop character and virtue?
How do you envision the principal relating to the students?
What experience do you have in development, fundraising, and endowments?
Describe your knowledge of finance and experience in budgeting.
In what ways are you a visionary?
Discuss the balance between academics, athletics, the arts, and other extracurriculars.
What is the role of technology in education?
What has been your experience in curriculum and design? How will you approach this element at our school?
What do you consider to be your greatest contribution to the schools you have worked in, in light of that, what do you feel you can bring to our school?
What do you think is the most important task of the principal?
How would you express your understanding of what our school stands for and how does this fit with your personal educational philosophy?
Why do you want to be principal of this School?
How do you bring out excellence in others?
How do you deal with mediocrity?
What are the most important ways that you will help the teachers?
How would you approach staff morale?
What do you consider to be the characteristics of an excellent teacher?
How would you score yourself as a teacher given your standards?
A teacher does not measure up to expectations. How do you address the situation? What process would you follow?
Are there any recent professional articles, books, or conferences have you encountered lately that have affected your practice?
When you have an important decision to make, how do you make it?
How do you get a feel for what teachers or students are thinking?
How do you solicit and process evaluation of your performance?
What has been your experience with parental involvement in schools?
What is your expectation of student conduct, demeanor, or deportment in how they carry themselves in school and at school related functions?
Tell us about a difficult discipline situation you have dealt with.
What is the principal’s role in helping students develop character and virtue?
How do you envision the principal relating to the students?
What experience do you have in development, fundraising, and endowments?
Describe your knowledge of finance and experience in budgeting.
In what ways are you a visionary?
Discuss the balance between academics, athletics, the arts, and other extracurriculars.
What is the role of technology in education?
What has been your experience in curriculum and design? How will you approach this element at our school?
What do you consider to be your greatest contribution to the schools you have worked in, in light of that, what do you feel you can bring to our school?
What do you think is the most important task of the principal?
How would you express your understanding of what our school stands for and how does this fit with your personal educational philosophy?
Why do you want to be principal of this School?
Pilot Interview Questions
You signal to the air traffic controler that you are ready for landing and you get no response. What do you do?
Please explain in order what actions you would perform once everyone has boarded the plane?
What would you do if you saw a passenger being abusive to a member of cabin crew?
What do you think poses the greatest threat to Airline security today?
Discuss the significance of Mcrit.
Why do airliners have swept wings?
How many seats does a particular aircraft that the Company flies have?
What would you do if you lost an engine on take off?
Please explain in order what actions you would perform once everyone has boarded the plane?
What would you do if you saw a passenger being abusive to a member of cabin crew?
What do you think poses the greatest threat to Airline security today?
Discuss the significance of Mcrit.
Why do airliners have swept wings?
How many seats does a particular aircraft that the Company flies have?
What would you do if you lost an engine on take off?
Pharmacist Questions for Interview
What were your least favorite rotations and why?
Have you ever had a major conflict with a preceptor/doctor? If so, how did you handle it?
What qualities do you expect in a preceptor?
What would your pharmacy preceptors say about you?
What is one of the major issues facing pharmacy today?
What practice areas are you interested in?
Describe a clinical intervention that you have made.
Choose a topic relating to clinical pharmacy, and we’ll ask you a question about it.
What do you anticipate a typical day in your career to be like?
If you were alone on a deserted island, what three medications would you bring with you?
Here’s a scenario we would like you to consider: You are the only pharmacist in the pharmacy. On the phone is a nurse wanting to know dosing for a dopamine drip for a patient who is crashing. At the window is a doctor who is ranting and raving about an enoxaparin order that wasn’t approved. On the other line is a nurse calling about a patient with a vancomycin level of 15. In what order do you handle these problems?
Have you ever had a major conflict with a preceptor/doctor? If so, how did you handle it?
What qualities do you expect in a preceptor?
What would your pharmacy preceptors say about you?
What is one of the major issues facing pharmacy today?
What practice areas are you interested in?
Describe a clinical intervention that you have made.
Choose a topic relating to clinical pharmacy, and we’ll ask you a question about it.
What do you anticipate a typical day in your career to be like?
If you were alone on a deserted island, what three medications would you bring with you?
Here’s a scenario we would like you to consider: You are the only pharmacist in the pharmacy. On the phone is a nurse wanting to know dosing for a dopamine drip for a patient who is crashing. At the window is a doctor who is ranting and raving about an enoxaparin order that wasn’t approved. On the other line is a nurse calling about a patient with a vancomycin level of 15. In what order do you handle these problems?
Nursing Questions for Interview
How would you respond if a doctor in a rude and haughty tone questioned your work, which you knew to be top-notch and absolutely accurate?
How would you respond if asked by the head nurse to do some of the menial tasks for patients that are normally not your responsibility?
Have you ever been burned out? When? What did you do about it?
Give a specific example of a time when you knew you did a good job as a nurse.
Why did you decide to become a nurse rather than a doctor?
Describe a situation where you found yourself working with someone who was very sensitive or thin-skinned.
We all have tried different ways of showing consideration for others. What are some things you've actually done?
What are some of the ways that Nursing can become more professional?
If you were told that the nursing field was closed and you could not be a nurse, what would you do?
What types of nursing tasks are most objectionable to you?
Describe a situation you experienced in the past year, connected with nursing, that made you angry.
How many years do you see yourself staying with this hospital?
Describe a challenging problem you faced on one of your clinical rotations. How did you solve the problem?
What is the role of the director of nursing?
What is your personal philosophy of nursing?
Why did you choose nursing?
How would you respond if asked by the head nurse to do some of the menial tasks for patients that are normally not your responsibility?
Have you ever been burned out? When? What did you do about it?
Give a specific example of a time when you knew you did a good job as a nurse.
Why did you decide to become a nurse rather than a doctor?
Describe a situation where you found yourself working with someone who was very sensitive or thin-skinned.
We all have tried different ways of showing consideration for others. What are some things you've actually done?
What are some of the ways that Nursing can become more professional?
If you were told that the nursing field was closed and you could not be a nurse, what would you do?
What types of nursing tasks are most objectionable to you?
Describe a situation you experienced in the past year, connected with nursing, that made you angry.
How many years do you see yourself staying with this hospital?
Describe a challenging problem you faced on one of your clinical rotations. How did you solve the problem?
What is the role of the director of nursing?
What is your personal philosophy of nursing?
Why did you choose nursing?
Subscribe to:
Posts (Atom)
