Analyst Questions


Q:

Find the Next Number in the given number series?

3, 10.5, 36.75, 128.625, ?

A) 450.187 B) 442.151
C) 441.231 D) 456.852
 
Answer & Explanation Answer: A) 450.187

Explanation:

Pattern is

      • 3
      • 3 x 3.5 = 10.5
      • 10.5 x 3.5 = 36.75
      • 36.75 x 3.5 = 128.625
      • 128.625 x 3.5 = 450.187
Report Error

View Answer Report Error Discuss

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

9 53604
Q:

What is the number that should come in the place of question mark ?

1050    420    168     67.2     ?

A) 19.11 B) 14.25
C) 10.752 D) 26.88
 
Answer & Explanation Answer: D) 26.88

Explanation:

Given series follows the rule of

1050/2.5 = 420
420/2.5 = 168
168/2.5 = 67.2
so 67.2/2.5 = 26.88

Report Error

View Answer Report Error Discuss

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

17 53480
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

7 52834
Q:

Find the odd man out?

16, 254, 1296, 4096, 10000

A) 16 B) 254
C) 1296 D) 10000
 
Answer & Explanation Answer: B) 254

Explanation:

The given series 16, 254, 1296, 4096, 10000 follows a pattern that

 

24, 44, 64, 84, 104,...

Hence, the odd man in the series is 4 x 4 x 4 x 4 = 256 not 254.

Report Error

View Answer Report Error Discuss

3 52797
Q:

They come out at night without being called and are lost in the day without being stolen. What are they?

A) Light B) Bats
C) Stars D) Flights
 
Answer & Explanation Answer: C) Stars

Explanation:

Stars are what that come out at night without being called and are lost in the day without being stolen.

Report Error

View Answer Report Error Discuss

175 52652
Q:

6 : 18 :: 4 : ?

A) 14 B) 6
C) 16 D) 8
 
Answer & Explanation Answer: D) 8

Explanation:

Here the given number analogy follows two patterns that,

18 --> 6 x 3

4

12 --> 4 x 3

 

OR

6

18 ----> 6x6/2 = 18

4

8 ----> 4x4/2 = 8

 

As 12 is not available in the options, 8 is correct answer.

Report Error

View Answer Report Error Discuss

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

200 52600
Q:

26 january 1950 which day of the week?

A) Monday B) Wednesday
C) Thursday D) Tuesday
 
Answer & Explanation Answer: C) Thursday

Explanation:

We know that,

Odd days --> days more than complete weeks

Number of odd days in 400/800/1200/1600/2000 years are 0.

Hence, the number of odd days in first 1600 years are 0.

Number of odd days in 300 years = 1

Number of odd days in 49 years = (12 x 2 + 37 x 1) = 61 days = 5 odd days

Total number of odd days in 1949 years = 1 + 5 = 6 odd days

Now look at the year 1950

Jan 26 = 26 days = 3 weeks + 5 days = 5 odd days

Total number of odd days = 6 + 5 = 11 => 4 odd days

 

Odd days :-

0 = sunday ;

1 = monday ;

2 = tuesday ;

3 = wednesday ;

4 = thursday ;

5 = friday ;

6 = saturday

 

Therefore, Jan 26th 1950 was Thursday.

Report Error

View Answer Report Error Discuss

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

208 52425
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

29 52416