Interview Questions

Q:

What areas would you like to further develop professionally?

Answer

Why they ask this and what they are looking for:


 


This question "What areas would you like to further develop professionally?" will uncover whether you are interested and knowledgeable about your own development and as such will can be a cloaked attempt to discover your weaknesses.


A common target of the question is to discover how motivated you are to extend yourself. If you are motivated to learn, then you are probably more motivated to do the job well.


 


How to answer this:


First show that you are concerned and active about your own development. You can indicate how development has worked for your in the past.


You're right, continued learning and development is important and I continue to work to improve key skills.


Do answer the question, of course, but do not show gaping holes in your skill set and especially those in key areas required in the job. A good trick is to talk about developing your skills in new areas that will be of future benefit to the company.


 


For example : I am in programming now and love the work, but one day I would like to develop into a management role.


 


Hope this helps you..!

Report Error

View answer Workspace Report Error Discuss

1 2393
Q:

What is final method?

Answer

Final method is a method defined in the super class with final modifier.


We cannot overriding final method of super class in the sub class.


EX:


 Class Sample {


   final void funOne() {


   }


   void funTwo() {


   }


}


Class Sub extends Sample {


  void funOne() { // overriding is not allowed


  }


  viod funTwo() { //overriding is allowed


  }


}

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2393
Q:

what is the job description of a payroll officer?

Answer

1. Collection of attendance / collation of attendance


2. Scrutunizing the received attendance 


3. Calculating the salary as per the attendance, based on LOP received


4. Once the Payroll Processing is over, the gross salary should be checked with Master Data of salary.


5. Netpay has to request for bank transfers / cheque 


6. Need to take care of statutories like PF / ESI / PT / Income Tax


7. While processing salary, statutory deductions like PF / ESIC / PT and income tax calculations tobe taken care.


8. Arriving the salary structure for New Joiners


9. F&F tobe done for resigned employees


10. PF & ESI Nomination has to take care for the new joiners


11. PF Settlement / PF transfer has to take care for the resigned employees after 60days from the date of resignation.

Report Error

View answer Workspace Report Error Discuss

2 2391
Q:

Can you access non static variable in static context ?

Answer

A static variable in Java belongs to its class and its value remains the same for all its instances. A static variable is initialized when the class is loaded by the JVM. If your code tries to access a non-static variable, without any instance, the compiler will complain, because those variables are not created yet and they are not associated with any instance.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2389
Q:

What do you mean by motivation?

Answer

Motivation means to arouse your hidden qualities and use them against something to overcome. As only motivation makes you successful in life, Without motivation one is like without any goal in life. Motivation is the only factor that could even make an adrift person to become successful.

Report Error

View answer Workspace Report Error Discuss

Subject: Motivation

9 2389
Q:

What does destination scan mean?

A) The shipment has arrived at a UPS facility. B) The shipment has departed a UPS facility and is on its way to the next UPS facility.
C) The shipment has arrived at the local UPS facility responsible for final delivery. D) UPS has received the shipment.
 
Answer & Explanation Answer: C) The shipment has arrived at the local UPS facility responsible for final delivery.

Explanation:

Shipment movement information is captured each time a tracking label is scanned in the UPS delivery system. There may be several days between scans if the shipment is going cross-country or moving between countries.

 

Destination Scan: The shipment has arrived at the local UPS facility responsible for final delivery.

Arrival Scan: The shipment has arrived at a UPS facility.

Departure Scan: The shipment has departed a UPS facility and is on its way to the next UPS facility.

Origin Scan: UPS has received the shipment.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales

0 2387
Q:

What is multicast?

Answer

To send data/info to group of computers using same network

Report Error

View answer Workspace Report Error Discuss

0 2387
Q:

Which command displays memory usage in linux?

A) Top B) Free
C) Buffer D) Swap
 
Answer & Explanation Answer: B) Free

Explanation:

Free command displays memory usage in linux.

Report Error

View Answer Report Error Discuss

3 2386