Interview Questions

Q:

How are this() and super() used with constructors?

Answer

Constructors use this to refer to another constructor in the same class with a different parameter list.


Constructors use super to invoke the superclass's constructor. If a constructor uses super, it must use it in the first line; otherwise, the compiler will complain.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 11623
Q:

What is another name for a real account in accounting? is it a permanent or a temporary account? Also, what is another name for a nominal account? is it a permanent or a temporary account ?

Answer

There are broadly  2 Type of accounts


1. Personnel Accounts


2. Impersonnel Accounts.


 


Personnel Accounts is an account maintained to record transactions with persons. Based on the classification of the persons personnel account can be of


1. Natural Personnel Account (Mr. Ram, Mr. Robert, Mr.Rahim)


2. Artificial Person (all entities like companies, banks, municipal corporations, all statutory or non statutory bodies)


3. Representative Person: Representing group transactions for group of persons like Salary Payable Account. Taxes payable account.


 


Where as Impersonnel Account shall be of Two types.


A. Real Account      B.Nominal Account.


Real Accounts are accounts to record transactions relating to Assets. Like Cash, Plant & Machinery etc., These type of accounts are permanent accounts.


Nominal Accounts are the accounts used to record the transactions relating to Income and Expenses. Like Salary, Power, Sales etc., At the end of the year all the nominal accounts are closed by transferring to Profit and loss account or Income and Expenditure account. The net differnce shall be carried forwarded to Balance Sheet.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

9 11507
Q:

What is the security aspects provided with cloud?

Answer

Security is one of the major aspects which come with any application and service used by the user. Companies or organizations remain much more concerned with the security provided with the cloud. There are many levels of security which has to be provided within cloud environment such as:


• Identity management: it authorizes the application service or hardware component to be used by authorized users.


• Access control: permissions has to be provided to the users so that they can control the access of other users who are entering the in the cloud environment.


• Authorization and authentication: provision should be made to allow the authorized and authenticated people only to access and change the applications and data.

Report Error

View answer Workspace Report Error Discuss

Subject: Cloud Computing

9 11393
Q:

Which is also called as abstract class?

A) virtual function B) pure virtual function
C) derived class D) None of these
 
Answer & Explanation Answer: B) pure virtual function

Explanation:

Classes that contain at least one pure virtual function are called as abstract base classes.

Report Error

View Answer Report Error Discuss

Filed Under: C++

8 11035
Q:

In preparing a bank reconciliation, outstanding checks are

A) Deducted from the balance sheet B) Added to the bank balance
C) Deducted from the bank balance D) Added to the balance sheet
 
Answer & Explanation Answer: A) Deducted from the balance sheet

Explanation:

If an outstanding check of the previous month clears the bank (is paid by the bank) in the current month, you simply remove that check from the list of outstanding checks.

If an outstanding check of the previous month does not clear the bank in the current month, the check will remain on the list of outstanding checks until the month that it does clear the bank.

In the bank reconciliation process, the total amount of the outstanding checks is deducted from the balance appearing on the bank statement.

Report Error

View Answer Report Error Discuss

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

4 10960
Q:

Exception handling is targeted at

A) Compile time error B) Logical error
C) Run time error D) All of the above
 
Answer & Explanation Answer: C) Run time error

Explanation:
Report Error

View Answer Report Error Discuss

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

4 10938
Q:

How many kinds of classes are there in c++?

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

Explanation:

There are two kinds of classes in c++. They are absolute class and concrete class.

Report Error

View Answer Report Error Discuss

Filed Under: C++

7 10833
Q:

find all Employee records containing the word "Joe", regardless of whether it was stored as JOE, Joe, or joe.

Answer

SELECT  * from Employees  WHERE  upper(EmpName) like upper('joe%');

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

7 10779