Interview Questions

Q:

In which year SBI was Nationalised ?

A) 1995 B) 1955
C) 1980 D) 1969
 
Answer & Explanation Answer: B) 1955

Explanation:

The nationalisation of banks in India took place in 1969 by Mrs. Indira Gandhi the then prime minister. It nationalised 14 banks then. These banks were mostly owned by businessmen and even managed by them. Before the steps of nationalisation of Indian banks, only State Bank of India (SBI) was nationalised. It took place in July 1955 under the SBI Act of 1955.

 In_which_year_SBI_was_Nationalised1559024417.jpg image

Nationalisation of Seven State Banks of India (formed subsidiary) took place on 19th July, 1960.

 

1955 : Nationalisation of State Bank of India.
1969 : Nationalisation of 14 major banks.
1980 : Nationalisation of seven banks with deposits over 200 crores.

Report Error

View Answer Report Error Discuss

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

54 45749
Q:

public abstract class Shape {

private int x;

private int y;

public abstract void draw();

public void setAnchor(int x, int y) {

this.x = x;

this.y = y;

}

}

Which two classes use the Shape class correctly?

A) public class Circle implements Shape { private int radius; B) public abstract class Circle extends Shape { private int radius; }
C) public class Circle extends Shape { private int radius; public void draw(); D) None
 
Answer & Explanation Answer: B) public abstract class Circle extends Shape { private int radius; }

Explanation:

Only B is true

Report Error

View Answer Report Error Discuss

Filed Under: Java

4 43998
Q:

public class Threads2 implements Runnable {

public void run() {

System.out.println("run.");

throw new RuntimeException("Problem");

Which among the following is true?

}

public static void main(String[] args) {

Thread t = new Thread(new Threads2());

t.start();

System.out.println("End of method.");

}

}

A) java.lang.RuntimeException: Problem B) run. java.lang.RuntimeException: Problem
C) End of method. java.lang.RuntimeException: Problem D) End of method. run. java.lang.RuntimeException: Problem
 
Answer & Explanation Answer: D) End of method. run. java.lang.RuntimeException: Problem

Explanation:

Only D can be true

Report Error

View Answer Report Error Discuss

Filed Under: Java

2 40578
Q:

 What is the string contained in s after following lines of code?

StringBuffer s = new StringBuffer(“Hello”); s.deleteCharAt(0);  ?

A) llo B) Hllo
C) ello D) H
 
Answer & Explanation Answer: C) ello

Explanation:

deleteCharAt() method deletes the character at the specified index location and returns the resulting StringBuffer object.

So after deleting the character at 0 ie 'H', the string returns 'ello' as the output.

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Analyst , IT Trainer

3 38664
Q:

What is the meaning of TDS? How it is charged?

Answer

TDS Meaning :


TDS means TAX DEDUCTABULE AT SOURCE. It is charged on Base Amount. 


TDS is tax charged by the customer who gets the services from Vendor or supplier. Here Customer is responsible to charge it and pay to the government.


Different types of TDS : 


1) TDS on salary has to be deducted on salary paid to employee by employer if it crosses the tax limit. And pay to the government on or before due date.


2) In case of TDS on contractors or profession or others, there is slab that min tax, surcharge,  education cess plus higher education cess, it is different and finance minister may change or keep same or remove in every year budget. Secondly you can deduct the TDS on bill amount while paying or if advance is paid.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

108 38501
Q:

Which operator performs pattern matching ?

A) LIKE operator B) EXISTS operator
C) BETWEEN operator D) None of these
 
Answer & Explanation Answer: A) LIKE operator

Explanation:

LIKE is a keyword that is used in the WHERE clause. Basically, LIKE allows us to do a search based operation on a pattern rather than specifying exactly what is desired (as in IN) or spell out a range (as in BETWEEN).

 

The syntax is as follows:
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}

 

{PATTERN} often consists of wildcards.

 

In SQL, there are two wildcards:


% (percent sign) represents zero, one, or more characters.

_ (underscore) represents exactly one character.

 

More :: Certification Questions on SQL

Report Error

View Answer Report Error Discuss

38 38113
Q:

Who is responsible to pay back all debts?

A) government B) spouse
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) government

Explanation:
Report Error

View Answer Report Error Discuss

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

0 37189
Q:

Which tag is used to display the numbered list?

 

1) <ol> </ol>    2) <li></li>     3) <ul> </ul>    4) <dl> </dl>

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

Explanation:

Use HTML tag <ol> element to define an ordered list.

Use the HTML type attribute to define the numbering type. Use the HTML <li> element to define a list item. Use the HTML <dl> element to define a description list.

 

Hence, as numbered list come under ordered list tag <ol> tag is used for numbered list.

Report Error

View Answer Report Error Discuss

17 37062