Interview Questions

Q:

Compare Error Detection and Error Correction:

Answer

The correction of errors is more difficult than the detection. In error detection, checks only any error has occurred. In error correction, the exact number of bits that are corrupted and location in the message are known. The number of the errors and the size of the message are important factors.

Report Error

View answer Workspace Report Error Discuss

2 5316
Q:

What are the components or materials used by Accounts receivable departments?

Answer

Accounts Receivable department is very important department of the company. The responsbilities of the department is approval of credit limit to the customer study the past history of customer credit sending invoices to the customer updation of the customer credit data factoring contacts with the factoring agents follow up of customers motivating the customers to pay the dues intime and communicating the information to the management. Credit sales data estimation of credit sales for the future period request for funds to finance department whenever they required follow up of customers receivables management.

Report Error

View answer Workspace Report Error Discuss

2 5295
Q:

What is the function of the CICS translator?

Answer

The CICS translator converts the EXEC CICS commands into call statements for a specific programming language. There are CICS translators for Assembler, COBOL, and PL/1.

Report Error

View answer Workspace Report Error Discuss

0 5285
Q:

What items are important in every Android project?

Answer

 These are the essential items that are present each time an Android project is created:


- AndroidManifest.xml


- build.xml


- bin/


- src/


- res/


- assets/

Report Error

View answer Workspace Report Error Discuss

7 5267
Q:

How to identify a given positive decimal number as even/odd without using % or / operator ?

Answer

You may be very good at coding,but if you questioning how on earth you could solve this problem.Then here is a solution. If you remember the good old days of our primary school then the solution is easy,"division is a matter of iterative subtraction".


public class TestEvenOdd {
public static void main(String arg[ ]){
int num=6;
int result=num;
while(result>=2){
result=result-2;
}
if(result==1){
System.out.println("The number is odd");
}else{
System.out.print("The number is even");
}
}
}

Report Error

View answer Workspace Report Error Discuss

Subject: Java

3 5265
Q:

What is account payable? How we pass the entries in account payable and related all the question based on account payable?

Answer

Accounts Payable is a short term liability of an organization. It's a process by which a company buys goods and services on credit and is billed in the form of an invoice, which states the terms and conditions of the payment. Accounts Payable is recorded as a current liability in the balance sheet. All accounts paayble entries are to be coded under the right G/L accounts to have an accurate picture of the company's short term liability.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

4 5249
Q:

Give an example for the use of volatile keyword in c++ ?

Answer

Most of the times compilers will do optimization to the code to speed up the program. For example in the below code,


int k = 15;
while( k == 15)


{
// Do something
}


compiler may think that value of 'k' is not getting changed in the program and replace it with 'while(true)', which will result in an infinite loop. In actual scenario, the value of 'k' may be getting updated from outside of the program.


Volatile keyword is used to tell compiler that the variable declared using 'volatile' may be used from outside the current scope, so that compiler won't apply any optimization. This matters only in case of multi-threaded applications.


In the above example if variable 'k' was declared using volatile, compiler will not optimize it. In shot, value of the volatile variables will be read from the memory location directly.

Report Error

View answer Workspace Report Error Discuss

5 5248
Q:

Assuming that you are selected, what will be your strategy for next 30 days?

Answer

If I am chosen for this position, I’ll use my first 30 days in understanding my role carefully in terms of the contribution to the industry and increasing the overall profitability. I’ll sit with my line manager and other juniors to realize what has already been finished and what its impact has been. From there on, I’ll formulate my strategy to development in close conjunction with managers and see that it is perfectly implemented.

Report Error

View answer Workspace Report Error Discuss

Subject: Human Resources

3 5247