Question
Do you have any other offer at hand

Answers

This is usually a closing question and they might want to know how actively you are looking for a job. Usually give an honest answer and say why you are looking for another job with that offer at hand.   Your Comment






Search
Can you Answer!!
  • Q Product name from the words Durability Reliability Excellence
  • Q What are the types of maven plugins?
  • Q What error occurs if a try-catch-finally statement sequence does not have a catch clause?
  • Q Integration between PP and QM Module.
  • Q Name a time when you identified strengths and weaknesses of alternative solutions to problems. What was the impact?
  • Q What is lifo valuation?
  • Q The subjects in which, women got less number of Nobel Prizes?
  • Q explain hepatic sinusoid
  • Q Can Multiple Paragraphs Be Included in a List Item?
  • Q What are the New Job Postings from the Company or Organization, Zoological Survey of India (ZSI) ?
  • Q main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }