Interview Questions

Q:

Define Structure in C++.?

Answer

The C++ programming technique allows defining user defined datatypes through structure. The


syntax to declare structure is as follows:


struct student


{


char name[100]


char address[250]


};

Report Error

View answer Workspace Report Error Discuss

Subject: C++

0 2239
Q:

Echo vs print statement

Answer

echo() and print() are language constructs in PHP, both are used to output strings. The speed of both statements is almost the same.


echo() can take multiple expressions whereas print cannot take multiple expressions.


Print return true or false based on success or failure whereas echo doesn't return true or false.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 2238
Q:

Priorities often change suddenly throughout the day. If you are asked to quickly do another task, how does that affect your mood?

Answer

Sample Answers :


(i) I Know that not every day will be the same. So I recognize that changes in priority are a normal daily occurance and that i must be able to provide my care based on priorities.


(ii) Well at times I may get upset, but I understand by now these things happen, especially in the medical field.

Report Error

View answer Workspace Report Error Discuss

1 2237
Q:

What is the difference between a constructor and a method?

Answer

A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. We cannot invoke a constructor directly.


 


A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2237
Q:

Which among the following is an asset for a bank?

A) The loans disbursed by Bank to its customers B) Cash Deposits of Customers
C) Investments made by Bank’s customers in its financial Products D) All of the above
 
Answer & Explanation Answer: A) The loans disbursed by Bank to its customers

Explanation:

Asset means anything that can be converted into cash. Here in banks, the loans disbursed by Bank to its customers is considered as assets because when they are cleared by them, then they are directly converted to cash.

Report Error

View Answer Report Error Discuss

Filed Under: Accounts Receivable
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 2236
Q:

What are standard query operators in LINQ?

Answer

The standard query operators in LINQ are the extension methods that form the LINQ pattern. These operators form an API that enables querying of any .NET array or collection. It operates on sequences and allows you to perform operations, such as determining if a value exists in the sequence and performing an aggregated function, such as a summation over a sequence.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

0 2236
Q:

What CICS command are used to read a VSAM KSDS sequentially in ascending order?

Answer

READNEXT reads the next record from a browse operation for any of the three VSAM files.

Report Error

View answer Workspace Report Error Discuss

0 2235
Q:

Automatic stabilizers refer to

A) government spending and taxes that automatically increase or decrease along with the business cycle. B) changes in the money supply and interest rates that are intended to achieve macroeconomic policy objectives.
C) changes in federal taxes and purchases that are intended to achieve macroeconomic policy objectives. D) the money supply and interest rates that automatically increase or decrease along with the business cycle.
 
Answer & Explanation Answer: A) government spending and taxes that automatically increase or decrease along with the business cycle.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2234