Exams


Q:

Rearrange the parts of the sentence in correct order.

Saving the trees

P : requires a much

Q : bigger budget

R : of European forests

A) PRQ B) QRP
C) RPQ D) RQP
 
Answer & Explanation Answer: C) RPQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 100055
Q:

What is the output of this program ?

class main_arguments {
            public static void main(String [ ] args)
            {
                String [][] argument = new String[2][2];
                int x;
                argument[0] = args;
                x = argument[0].length;
                for (int y = 0; y < x; y++)
                    System.out.print(" " + argument[0][y]);           
            }
        }

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

Explanation:

In argument[0] = args;, the reference variable arg[0], which was referring to an array with two elements, is reassigned to an array (args) with three elements.
Output:
$ javac main_arguments.java
$ java main_arguments
1 2 3

Report Error

View Answer Report Error Discuss

Filed Under: Java
Exam Prep: GATE

7 100029
Q:

Select the related word/letters/number from the given alternatives.

EGIK:YWUS::FHJL:______________

A) ZXYT B) YXWV
C) XVTR D) WVSQ
 
Answer & Explanation Answer: A) ZXYT

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Analogy
Exam Prep: Bank Exams

0 100014
Q:

Find the odd number out of the following number series?

2 4 8 11.5 18.25 28.375

A) 18.25 B) 28.375
C) 11.5 D) 8
 
Answer & Explanation Answer: D) 8

Explanation:

Given number series follows a pattern that,

2

2 x 1.5 + 1 = 4

4 x 1.5 + 1 = 7 (not equal to 8)

7 x 1.5 + 1 = 11.5

11.5 x 1.5 + 1 = 18.25

18.25 x 1.5 + 1 = 28.375

 

Hence, the odd number in the given number series is 8.

Report Error

View Answer Report Error Discuss

Filed Under: Odd Man Out
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

17 99976
Q:

Select the synonym of

sheath

A) weapon B) hide
C) encourage D) coat
 
Answer & Explanation Answer: D) coat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 99920
Q:

Find the next number in te given series ?

5, 25, 61, 113, ...

A) 142 B) 181
C) 156 D) 179
 
Answer & Explanation Answer: B) 181

Explanation:

Here the series follow the rule that

12+22 = 5

32+42 = 25

52+62 = 61

72+82 = 113

 

SO NEXT IS, 92+102 = 181

Report Error

View Answer Report Error Discuss

Filed Under: Odd Man Out
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

14 99863
Q:

7 9 19 18 31 29

Find the odd number in the given Number Series?

A) 31 B) 29
C) 18 D) 19
 
Answer & Explanation Answer: B) 29

Explanation:

Here the given number series follows a pattern of two alternate series.

1. 7 19 31 ...(Difference of 12)

2. 9 18 27 ...(Difference of 9)

Here the odd number is 29 instead of 27

And the next number is 31 + 12 = 43 & 27 + 9 = 36

 

Report Error

View Answer Report Error Discuss

Filed Under: Odd Man Out
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

13 99779
Q:

Select the related word/letters/number from the given alternatives.

 

FS: IT :: QT: ?

 

A) PR B) TU
C) ST D) TQ
 
Answer & Explanation Answer: B) TU

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Analogy
Exam Prep: Bank Exams

0 99706