Interview Questions

Q:

How many ways are there to initialize int with a constant?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C notation. The second format uses constructor notation.

int foo = 123;

 

int bar (123);

Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Software Architect

1 7194
Q:

What is SQL*Plus? Explain its features

Answer

SQL*plus allows SQL and PL/SQL scripts to interactively run in command line.

It allows three kinds of commands to run; SQL, PL/SQL and SQL * Plus commands. It’s most commonly used by DBA’s to interact with the oracle database.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

9 7154
Q:

What items would you verify when processing an expense report /invoice for payment?

Answer

Employee Travel and Expense Report (ETER ) / Direct Pay / Unencumbered Goods and Services


- The ETER is examined for compliance with Travel policy by the accounting clerk prior to submission to Accounts payable


- Accounts Payable enters ETER Information into Banner as a Direct pay, generates a Banner invoice number, and records invoice information


- Reimbursement checks for ETERs will be processed within five business days after a completed and correct ETER is received by Accounts payable and scheduled for payment in the payment cycle following.


- ETERs should be submitted within  60 calendar days of incurring the expenses. TEARs submitted for expenses older than two months will not be processed nor reimbursed.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

7 7116
Q:

List the steps involved in creating the checksum.

Answer

- Divide the data into sections


- Add the sections together using 1's complement arithmetic


- Take the complement of the final sum, this is the check sum

Report Error

View answer Workspace Report Error Discuss

4 7115
Q:

How to perform incremental load in DataStage?

Answer

-Daily loading is known as incremental load.


-When data is selected from source, selected records are loaded between timestamp of last load and the current time 


-The parameter that are passed to perform are last loaded date and current date


-The first parameter is the stored last run date is read through job parameters


-The second parameter is the current date

Report Error

View answer Workspace Report Error Discuss

1 7114
Q:

How many types of macros are there in c++?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two types of macros. They are object-like and function-like.

Report Error

View Answer Report Error Discuss

Filed Under: C++

1 7096
Q:

What ACH stands for?

Answer

ACH stands for Automated Clearing House, which is an electronic transfer of funds between banks or financial institutions.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

0 7063
Q:

What’s the difference between md5( ), crc32( ) and sha1( ) crypto on PHP?

Answer The major difference is the length of the hash generated. CRC32 is, evidently, 32 bits, while sha1() returns a 128 bit value, and md5() returns a 160 bit value. This is important when avoiding collisions.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

1 7046