Interview Questions

Q:

What is CTS and what do you know about it?

Answer

The Change and Transport System (CTS) is a tool that helps you to organize development projects in the ABAP Workbench and in Customizing, and then transport the changes between the SAP Systems and clients in your system landscape. This documentation provides you with an overview of how to manage changes with the CTS and essential information on setting up your system and client landscape and deciding on a transport strategy. Read and follow this documentation when planning your development project.

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

2 4416
Q:

What is the main function of international monetary fund  ?

A) Help to solve Balance of Payment problems of member countries B) Act as private sector lending arm of the World Bank
C) Finance investment loans to developing countries D) Arrange international deposits from banks
 
Answer & Explanation Answer: A) Help to solve Balance of Payment problems of member countries

Explanation:
Report Error

View Answer Report Error Discuss

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

4 4415
Q:

List out the areas in which data structures are applied extensively?

Answer

Compiler Design,


 Operating System,


 Database Management System,


Statistical analysis package,


Numerical Analysis,


 Graphics,


 Artificial Intelligence,


 Simulation

Report Error

View answer Workspace Report Error Discuss

Subject: C++

4 4409
Q:

What is conversion operator ?

Answer

Class can have a public method for specific data type conversions.
for example:
class B
{
double value;
public  B(int i )
operator double()
{
return value;
}
};
B BObject;
double i = BObject; // assigning object to variable i of type double.
now conversion operator gets called to assign the value.

Report Error

View answer Workspace Report Error Discuss

11 4407
Q:

How can you implement a condition in a workflow?

Answer

You can implement a condition by using either of the following ways:




     =>   By creating a rule condition - Specifies that you can implement conditions either directly in code or by using a tool, called the Rule Condition Editor. Rule conditions are stored in a separate Extensible Markup Language (XML) file. When a rule condition occurs in a workflow, the expression in a condition is evaluated and a Boolean value is returned.

     =>   By creating a code condition - Refers to defining a condition directly in code. A code condition can be created by writing a method in the code. The method contains code for the condition and returns a Boolean value.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

1 4400
Q:

Why do you want to work in our hospital and/or community?

Answer

Tips :


Use your background research to support your answer. Look at aspects such as the commitment to health care provision, innovations in patient care, the community it serves.

Report Error

View answer Workspace Report Error Discuss

8 4384
Q:

How do you rate your patience and people friendliness?

Answer

When you are applying for a job at a call center you should know that there will be moments when unsatisfied customers will get angry on you. The key here is to focus on what is the purpose of the call, maintain your calmness and be polite.


As an answer to this question, you can say that you would rate your level of patience and people friendliness above average. You can back it up with an example from your personal or professional life. 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

7 4380
Q:

Which of the following method declarations are allowed inside interface?

A) public void m1() B) private void m1()
C) protected void m1() D) abstract public void m1()
 
Answer & Explanation Answer: D) abstract public void m1()

Explanation:

Inside an interface every method will be by default abstract and public

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

0 4380