Interview Questions

Q:

What is the Standard Template Library?

Answer

A library of container templates approved by the ANSI committee for inclusion in the standard C++ specification. A programmer who then launches into a discussion of the generic programming model, iterators, allocators, algorithms, and such, has a higher than average understanding of the new technology that STL brings to C++ programming

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

2 10339
Q:

Tell me about a time that you helped someone?

Answer

Most recently, we had a new hire (Prakash) that was really struggling with getting to work on time, and I knew the boss (Dan) was getting irritated. Over lunch one day I explained to Prakash how important it was to our boss for everyone to be there at least 10 minutes early. It was personal with the Harry, but you could really get on his bad side when you were frequently late. The new employee was grateful for the advice. At his previous employment, the boss was only concerned about the work getting done on time; he/she did not "watch the clock".

Report Error

View answer Workspace Report Error Discuss

Subject: Work History

6 10252
Q:

Which of the following is not the member of class?

A) Virtual function B) Static function
C) Friend function D) Const function
 
Answer & Explanation Answer: C) Friend function

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Analyst , Database Administration , IT Trainer

19 10231
Q:

What type of inheritance that PHP supports? Provide an example.

Answer

PHP supports single level inheritance.


Inheriting a class would mean creating a new class with all functionality of the existing class in addition to some more. The created class is called as a subclass of the parent class. Parent is a keyword which we use to access members of a parent class. Inheritance is usually defined by using the keyword “Extend”. $this is used a reference to the calling object. Inheritance avoids redundancy of code.


Example:


Class employee extends manager : Here Employee is a subclass of manager.


Echo $this->name can be used to echo variable name of the parent class.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

1 10230
Q:

What are the difference between call screen and leave screen?

Answer

Call Screen: Calling a single screen is a special case of embedding a screen sequence. If you want to prevent the called screen from covering the current screen completely, you can use the CALL SCREEN statement with the STARTING AT and ENDING AT


CALL SCREEN 1000.


CALL SCREEN 1000 STARTING AT 10 10 ENDING AT 20 20.


LEAVE SCREEN statement ends the current screen and calls the subsequent screen.


LEAVE SCREEN.


LEAVE TO SCREEN 2000.


Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

5 10181
Q:

What are some open source cloud computing platform databases?

Answer

Cloud computing platform has various databases that are in support. The open source databases that are developed to support it is as follows:


- MongoDB: is an open source database system which is schema free and document oriented database. It is written in C++ and provides tables and high storage space. 


- CouchDB: is an open source database system based on Apache server and used to store the data efficiently


- LucidDB: is the database made in Java/C++ for data warehousing. It provides features and functionalities to maintain data warehouse.

Report Error

View answer Workspace Report Error Discuss

Subject: Cloud Computing

2 10093
Q:

What are your goals for the next five years / ten years?

Answer

The best way to respond to the interview question "What are your goals for the future?"


Don't discuss your goals for returning to school or having a family, they are not relevant and could knock you out of contention for the job. Rather, you want to connect your answer to the job you are applying for. Examples of good responses include:


=> My long-term goals involve growing with a company where I can continue to learn, take on additional responsibilities, and contribute as much of value as I can.


=> I see myself as a top performing employee in a well-established organization, like this one. I plan on enhancing my skills and continuing my involvement in (related) professional associations.


=> Once I gain additional experience, I would like to move on from a technical position to management.


=> In the XYZ Corporation, what is a typical career path for someone with my skills and experiences?

Report Error

View answer Workspace Report Error Discuss

8 10069
Q:

A UNION query is which of the following?

A) Combines the output from multiple queries and does not include the same number of columns. B) Combines the output from multiple queries and must include the same number of columns.
C) Combines the output from no more than two queries and does not include the same number of columns. D) Combines the output from no more than two queries and must include the same number of columns.
 
Answer & Explanation Answer: B) Combines the output from multiple queries and must include the same number of columns.

Explanation:

A UNION query combines the output from multiple queries and must include the same number of columns.

Report Error

View Answer Report Error Discuss

Filed Under: SQL
Job Role: Analyst , Database Administration , IT Trainer

2 9995