Questions

Q:

Whose signature on Indian currency notes?

A) Finance minister B) RBI Governor
C) Prime minister D) President
 
Answer & Explanation Answer: B) RBI Governor

Explanation:

Except a one rupee note, all other denomination currencies have the signature of RBI Governor on it. One rupee note will have the sign of finance secretary of India.

whose_signature_on_indian_currency_notes1553773379.jpg image

Report Error

View Answer Report Error Discuss

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

11 17354
Q:

Who is the custodian of indian constitution?

A) Supreme Court B) Cabinet Ministers
C) President D) Parliament
 
Answer & Explanation Answer: A) Supreme Court

Explanation:

The president is the nominal custodian of the Indian constitution but the ideal custodian is the supreme court of India.

Who_is_the_custodian_of_indian_constitution1557491256.jpg image

Report Error

View Answer Report Error Discuss

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

25 17346
Q:

All of the logic and mathematical calculations done by the computer happen in/ on the ........

A) system board B) central control unit
C) central processing unit D) mother board
 
Answer & Explanation Answer: C) central processing unit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank PO

74 17340
Q:

In the given figure, how many pens are blue?

 

A) 23 B) 19
C) 12 D) 15
 
Answer & Explanation Answer: A) 23

Explanation:
Report Error

View Answer Report Error Discuss

1 17313
Q:

Which of the following countries is not a member of the Nuclear Suppliers Group(NSG)

A) France B) Russia
C) USA D) Iran
 
Answer & Explanation Answer: D) Iran

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

38 17297
Q:

Which is Highest Gallantry Award in India ?

Answer



Paramveer Chakra


 

Report Error

View answer Workspace Report Error Discuss

38 17285
Q:

Which of the following is a storage device?

A) Floppy discs B) hard disk drive
C) Optical disc D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Which_of_the_following_is_a_storage_device1554210303.jpg image

All of the above given options are storage devices.

Report Error

View Answer Report Error Discuss

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

37 17262
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

16 17250