Interview Questions

Q:

What did you like or dislike about your previous job?

Answer

When you're asked what didn't like about your previous job, don't be too negative. The reason is that you don't want the interviewer to think that you'll speak negatively about the new job or the company when you're ready to move on, if you get this job.Rather, it makes sense to talk about yourself and what you're looking for in a new role.


I enjoyed the people I worked with. It was a friendly and fun atmosphere and I actually enjoyed going into work each morning. I felt the leadership team was great as well.


One of the reasons I am leaving is that I felt I was not challenged enough at the job. As a new employee in the working world, the company offers a great opportunity for a good entry level position. However, after being there for so many years, I felt I was not able to reach my full potential because of the lack of challenge and there was no room for advancement in the company. While I did enjoy working there and appreciate the skills I developed while with the company, I feel my  skill set can be better utilized elsewhere, where my capabilities are more recognized and there is the opportunity for growth.


The people I worked with at ABC Company were top notch at what they do. Through my experience there, I learned a lot about different management styles, and strategies for maintaining cooperation in a large group project setting. I feel that as valuable as that experience has been, I am anxious to work on more specialized projects where I will have the opportunity to be more of a leader.


While the people at XYZ Company were terrific to work with, I felt that the opportunities for me there were limited by the structure and size of the company. I believe that a larger company with an international presence can offer challenges, as well as opportunities unavailable at a smaller firm. The position with your company is a great match for my skill set, and I feel that I would be an asset in your marketing (or HR or IT) department.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Work History

2 4025
Q:

Why does the Outstanding exp & Prepared Expenses treated as Personal Account?

Answer

Because these exps are paid/payable to persons. person includes Sole Proprietor, Partnership Firms, HUF, Co; etc.Personal accounts always appear in B/S until it is transfered to expenditure by debiting to P&L A/C.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

1 4015
Q:

What is the difference between mysql_connect and mysql_pconnect?

Answer

There is a decent page in the php manual on the subject, in short mysql_pconnect() makes a persevering association with the database which implies a SQL join that don't close when the execution of your script closes. mysql_connect()provides just for the database new association while utilizing mysql_pconnect , the capacity would first attempt to locate a (relentless) connection that is as of now open with the same host, username and password. On the off chance that one is found, an identifier for it will be returned as opposed to opening another connection... the connection with the SQL server won't be terminated when the execution of the script ends. Rather, the link will stay open for future use.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP
Job Role: Database Administration

0 4007
Q:

What is meant by heap?

A) Used for fast reterival of elements B) Used for organising the elements
C) Both a & b D) None of the mentioned
 
Answer & Explanation Answer: C) Both a & b

Explanation:

A heap is a way to organize the elements of a range that allows for fast retrieval of the element.

Report Error

View Answer Report Error Discuss

Filed Under: C++

2 4004
Q:

What is Binary Portability Testing?

Answer

Testing an executable application for portability across system platforms and environments, usually for conformation to an ABI specification.

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

0 3994
Q:

Managing advertising, sales promotion and public relations :

what is public relations in marketing?

Answer

Public relations includes promotional activities that work to create a strong public image of the company. Public relations activities include helping the public to understand the company and its products. Public relations if done right can reach a large audience without the expensive cost of traditional advertising and marketing.

Report Error

View answer Workspace Report Error Discuss

0 3981
Q:

If sub class data member is hiding super class data member then how to access super class data member inside sub class methods?

Answer

use super keyword.


super keyword points immediate super class.


Class Sample {


int a =23;


 }


Class Sub extends Sample { 


 String a = "bablu";


 void show() {


 System.out.println(a); //bablu


 System. out. println(this.a); //bablu


 System. out.println(super.a); //23


}


}


Class Demo {


Public static void main(string[] args) {


sub s = new Sub();


s.show();


}


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 3980
Q:

Which of the following are valied?

A) A class can extend any number of classes simulteneously B) A class can implement only one interface at a time
C) A class can extend other class or can implement interface but not both simulteneously D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

A is wrong because a class can extend nly one class .B is wrong because a class can implement any number of interfaces.C is wronb because both can can be done simulteneously.So, D is correct

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

1 3972