Interview Questions

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 9921
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 9882
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 9872
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 9850
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 9810
Q:

What is money market?

Answer

A segment of the financial market in which financial instruments with high liquidity and very short maturities are traded. The money market is used by participants as a means for borrowing and lending in the short term, from several days to just under a year. Money market securities consist of negotiable certificates of deposit (CDs), bankers acceptances, U.S. Treasury bills, commercial paper, municipal notes, federal funds and repurchase agreements (repos).

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

9 9654
Q:

What is the difference between Listview and Treeview?

Answer

Tree view control is designed to display data that is hierarchical in nature, such as organization trees, the entries in an index, the files, directories on a disk. It is often used in conjuction with the List view control, which is used to display the contents of the folder selected in the tree view.


List view control displays data as listitem objects. The control excels at representing subsets of data or discrete objects.The list view property is often used in association with a tree view control.

Report Error

View answer Workspace Report Error Discuss

10 9332
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 9283