Exams


Q:

Find the missing number in the given number series?

625, 625, 600, ?, 475, 875

A) 545 B) 700
C) 675 D) 725
 
Answer & Explanation Answer: B) 700

Explanation:

Here the given number series 625, 625, 600, ?, 475, 875 follows a pattern that

625

625 + (0 x 0) = 625

625 - (5 x 5) = 625 - 25 = 600

600 + (10 x 10) = 600 + 100 = 700

700 - (15 x 15) = 700 - 225 = 475

475 + (20 x 20) = 475 + 400 = 875

 

Hence, the missing number in the given number series is 700.

 

Report Error

View Answer Report Error Discuss

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

15 120125
Q:

Select the antonym of:

to sue

A) to absolve B) to litigate
C) to indict D) to solicit
 
Answer & Explanation Answer: A) to absolve

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 120067
Q:

Find the odd one out?

6, 3, 3, 4.5, 10

A) 3 B) 4.5
C) 6 D) 10
 
Answer & Explanation Answer: D) 10

Explanation:

Here the given number series is 6, 3, 3, 4.5, 10

The odd one in the given series is 10

The pattern it follows is

6

6 x 0.5 = 3

3 x  1  = 3

3 x 1.5 = 4.5

4.5 x 2 = 9

 

Hence, the odd number is 10.

Report Error

View Answer Report Error Discuss

7 119859
Q:

Select the antonym of 

homogeneous

A) akin B) ditto
C) disparate D) cognate
 
Answer & Explanation Answer: C) disparate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 119674
Q:

Select the option that depicts the correct mirror image for the given word.

 

STRONG

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Image Analysis
Exam Prep: Bank Exams

42 119580
Q:

The few crowd (1)/ was not surprising (2)/ considering the publicity involved. (3)/ No error (4)

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 119552
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

31 119512
Q:

Choose the antonym of

fatigue

A) restive B) slouch
C) vigour D) tire
 
Answer & Explanation Answer: C) vigour

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

3 119478