Bank Clerk Questions


Q:

Kamal consistently runs 240 meters a day and on Saturday he runs for 400 meters. How many kilometers will he have to run in four weeks ?

A) 5.75 kms B) 7.36 kms
C) 8.2 kms D) 6.98 kms
 
Answer & Explanation Answer: B) 7.36 kms

Explanation:

Total running distance in four weeks = (24 x 240) + (4 x 400)

= 5760 + 1600

= 7360 meters

= 7360/1000

=> 7.36 kms

Report Error

View Answer Report Error Discuss

Filed Under: Time and Distance
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

7 5650
Q:

Which of the following is not a correct variable type?

A) real B) char
C) float D) double
 
Answer & Explanation Answer: A) real

Explanation:

A variable provides us with named storage that our programs can manipulate. Each variable in C++ has a specific type, which determines the size and layout of the variable's memory the range of values that can be stored within that memory and the set of operations that can be applied to the variable.

The name of a variable can be composed of letters, digits, and the underscore character. It must begin with either a letter or an underscore. Upper and lowercase letters are distinct because C++ is case-sensitive −

 

Basic types of variables:


1. bool

Stores either value true or false.

2. char

Typically a single octet (one byte). This is an integer type.

3. int

The most natural size of an integer for the machine.

4. float

A single-precision floating point value.

5. double

A double-precision floating point value.

6. void

Represents the absence of type.

7. wchar_t

A wide character type.

Report Error

View Answer Report Error Discuss

10 5649
Q:

Prasanna invested certain amount in three different schemes X, Y and Z with the rate of interest 10% p.a, 12% p.a and 15% p.a respectively. If the total interest accrued in one year was Rs. 3200 and the amount invested in Scheme Z was 150% of the amount invested in Scheme X and 240% of the amount invested in Scheme Y, what was the amount invested in Scheme Y by Prasanna ?

A) Rs.6000 B) Rs.4500
C) Rs.7500 D) Rs.5000
 
Answer & Explanation Answer: D) Rs.5000

Explanation:

Let a, b and c be the amounts invested in schemes X, Y and Z respectively. Then,

As we know:

Simple interest (S.I.) = PTR/100

(a × 10 × 1/100) + (b × 12 × 1/100) + (c × 15 × 1/100) = 3200

= 10a + 12b + 15c = 320000 .........(1)

Now, c = 240% of b = 12b/5 .........(2)

And, c = 150% of a = 3a/2 => a = 2/3 c = (2 × 12)b/(3 × 5) = 8b/5 .......(3)

From (1), (2) and (3), we have

16b + 12b + 36b = 320000 => 64b = 320000 => b = 5000

∴ Sum invested in Scheme Y = Rs.5000.

Report Error

View Answer Report Error Discuss

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

9 5649
Q:

Statements : Government has spoiled many top ranking financial institutions by appointing bureaucrats as Directors of these institutions.

Conclusions :

a) Government should appoint Directors of the financial institutes taking into consideration the expertise of the person in the area of finance.
b) The Director of the financial institute should have expertise commensurate with the financial work carried out by the institute.

A) Only a follows B) Only b follows
C) Both a & b follows D) Neither a nor b follows
 
Answer & Explanation Answer: C) Both a & b follows

Explanation:

According to the statement, Government has spoiled financial institutions by appointing bureaucrats as Directors. This means that only those persons should be appointed as Directors who are experts in finance and are acquainted with the financial work of the institute. So, both a and b follows.

Report Error

View Answer Report Error Discuss

Filed Under: Statement and Conclusions
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

2 5647
Q:

Find the speed of stream if a boat covers 36 km in downstream in 6 hours which is 3 hours less in covering the same distance in upstream?

A) 1.5 kmph B) 1 kmph
C) 0.75 kmph D) 0.5 kmph
 
Answer & Explanation Answer: B) 1 kmph

Explanation:

Speed of the boat upstream = 36/9 = 4 kmph

Speed of the boat in downstream = 36/6 = 6 kmph

Speed of stream = 6-4/2 = 1 kmph

Report Error

View Answer Report Error Discuss

18 5644
Q:

Three of the following four are alike in a certain way and hence form a group. Which is the one that does not belong to that group?

A) 42 B) 72
C) 110 D) 152
 
Answer & Explanation Answer: D) 152

Explanation:

42 = 72 - 7

 92 - 9 = 72

 112 - 11 = 110

 122 + 8 = 152

Except 152, others show the same trend.

Report Error

View Answer Report Error Discuss

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

20 5640
Q:

The number of ways that 7 teachers and 6 students can sit around a table so that no two students are together is 

A) 7! x 7! B) 7! x 6!
C) 6! x 6! D) 7! x 5!
 
Answer & Explanation Answer: B) 7! x 6!

Explanation:

The students should sit in between two teachers. There are 7 gaps in between teachers when they sit in a roundtable. This can be done in 7P6ways. 7 teachers can sit in (7-1)! ways.

 

 Required no.of ways is = 7P6.6! = 7!.6!

Report Error

View Answer Report Error Discuss

Filed Under: Permutations and Combinations
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

10 5638
Q:

To exit the PowerPoint application, you should

A) Double click the application control menu icon B) Click the application minimize button
C) Double click the document control menu icon D) Click the document close button
 
Answer & Explanation Answer: A) Double click the application control menu icon

Explanation:

To exit the PowerPoint application, you should Double click the application control menu icon or you can go to file menu and click exit button or you can close the window button.

Report Error

View Answer Report Error Discuss

1 5635