Question
What are your top three skills?

Answers





Search
Can you Answer!!
  • Q What is the difference between Re-testing and Regression Testing? How do we write the test cases for the both .IS it done for the build, module or complete project?
  • Q The idiom ‘From hand to mouth’ means:
  • Q what is Co-transfection ?
  • Q Define sequence diagram?
  • Q What is field ?
  • Q Why is it so important for the human heart to develop early and begin functioning within the developing embryo?
  • Q Describe one simple rehashing policy.
  • Q Why do you go for servlet rather than CGI
  • Q Is JSP variable declaration thread safe
  • Q Who described the I.N.0 as 'Congress of flatters'?
  • Q What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b;void main() { int x=5, y=10; swap (x,y); printf(?%d %dn?,x,y); swap2(x,y); printf(?%d %dn?,x,y); } int swap2(int a, int b) { int temp; temp=a; b=a; a=temp; return 0; }