Question
Assuming that you are selected, what will be your strategy for next 60 days

Answers

If I am selected for this position, I’ll use my initial 60 days in understanding my role carefully in terms of the contribution to the business and increasing the overall profitability. I’ll sit with my line manager and other juniors to understand what has already been done and what its impact has been. From there on, I’ll formulate my strategy to growth in close conjunction with managers and see that it is properly implemented.   Your Comment






Search
Can you Answer!!
  • Q Is it possible to configure the security options of SQL through an interface (designed in VB or any other language)??
  • Q Explain what is the difference between sterilization and disinfection?
  • Q For entity beans, what happens to an instance field not mapped to any persistent storage, when the bean is passivated?
  • Q The Indian Independence Act was passed in the British parliament on :
  • Q What is a payment advice? Why would one be used? Give some examples of payment advices.
  • Q Difference between doGet and doPost ?
  • Q Who has propounded term “rainbow coalition” originated from politics and policies-
  • Q The capital of Japan.
  • Q What is the purpose of Save Points in Oracle database?
  • Q Give Rule 1 of Cæsura pause.
  • Q #define assert(cond) if(!(cond)) (fprintf(stderr, "assertion failed: %s, file %s, line %d ",#cond, __FILE__,__LINE__), abort()) void main(){ int i = 10; if(i==0) assert(i < 100); else printf("This statement becomes else for if in assert macro"); }