Interview Questions

Q:

What is the difference between EFT & Wire?

Answer

EFT-Electronic Funds Transfer is basically batch of payments are transferring from one bank to another bank with specified time lines.  EFT payments are also called as BACS if it is UK, ACH in US for domestic payments.  Foreign payments are called as SWIFT payments.


WIRE: Wire can be used to release payments for local or international, Different countries will be named in different ways viz., CHAPS for Local Payments made in UK, WIRE for all international payments made from UK and Local & foreign payments made in all other countries

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

5 5183
Q:

Promotions and promotion mix :

What is the difference between a marketing mix and a promotional mix?

Answer

A marketing mix and a promotional mix does have some differences, both being highly crucial for the success of a business. Marketing is very essential for the growth and continuity of business operations. It helps in creating new customers and retaining the existing ones to keep the business ongoing. Marketing focuses on all the elements of the marketing mix viz product, price, place and promotion while promotion focuses more on the customer- how to reach a product to its customers and how to sell it to them ultimately

Report Error

View answer Workspace Report Error Discuss

3 5176
Q:

How will you call the return code of JCL ?

Answer

Return Code in JCL can b obtained by the use of COND paramater...it is used to know the return codes of previous steps.

Report Error

View answer Workspace Report Error Discuss

2 5172
Q:

What do you mean by inline function?

Answer

An inline function is a function that is expanded inline when invoked.ie. the compiler replaces the function call with the corresponding function code. An inline function is a function that is expanded in line when it is invoked. That is the compiler replaces the function call with the corresponding function code (similar to macro)

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

1 5162
Q:

Which one of the following sorts rows in SQL?

A) ORDER BY B) GROUP BY
C) SORT BY D) ALIGN BY
 
Answer & Explanation Answer: A) ORDER BY

Explanation:
Report Error

View Answer Report Error Discuss

0 5160
Q:

A special member function of a class, which is invoked automatically whenever an object goes out of the scope is called

A) Constructor B) Destructor
C) Friend function D) None of the above
 
Answer & Explanation Answer: B) Destructor

Explanation:

Destructor is a special member function of a class, which is invoked automatically whenever an object goes out of the scope. It has the same name as its class with a tilde character prefixed.

Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Software Architect

1 5153
Q:

What will happen when an exception is not processed?

A) It will eat up lot of memory and program size B) Terminate the program
C) Crash the compiler D) None of the mentioned
 
Answer & Explanation Answer: A) It will eat up lot of memory and program size

Explanation:

As in the case of not using an exception, it will remain useless in the program and increase the code complexity.

Report Error

View Answer Report Error Discuss

Filed Under: C++

2 5139
Q:

HTML language is a set of markup

A) Groups B) Attributes
C) Tags D) Sets
 
Answer & Explanation Answer: C) Tags

Explanation:

HTML language is a set of markup tags. The code used to specify the formatting are called tags. Markup languages are designed for the processing, definition and presentation of text. The language specifies code for formatting, both the layout and style, within a text file. 

 

HTML is an example of a markup language to improve the appearance of, and link text with data on the internet.

Report Error

View Answer Report Error Discuss

1 5136