Analyst Questions


Q:

In computer network nodes are

A) the computer that terminates the data B) the computer that originates the data
C) the computer that routes the data D) all of the mentioned
 
Answer & Explanation Answer: D) all of the mentioned

Explanation:

In computer network nodes are

* the computer that terminates the data

* the computer that originates the data

* the computer that routes the data

Report Error

View Answer Report Error Discuss

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

7 5825
Q:

If a person having Rs. 2000 and he want to distribute this to his five children in the manner that each son having Rs. 30 more than the younger one , what will be the share of youngest child ?

A) Rs. 175 B) Rs. 325
C) Rs. 340 D) Rs. 260
 
Answer & Explanation Answer: C) Rs. 340

Explanation:

Assume first child (the youngest) get = Rs. x

According to the question ;
each son having Rs. 30 more than the younger one

Second child will get = Rs. x + 30
Third child will get = Rs. x + 30 + 30 = x + 60
Forth child will get = Rs. x + 30 + 30 + 30 = x + 90
Fifth child will get = Rs. x + 30 + 30 + 30 + 30 = x + 120

Total amount they got = Rs. 2000

x + (x+30) + (x+60) + (x+90) + (x+120) = 2000
5x + 300 = 2000
5x = 1700
x = Rs. 340
So the youngest child will get Rs. 340.

Report Error

View Answer Report Error Discuss

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

22 5824
Q:

Who was the Indian politician five times chief minister of Tamilnadu recently passed away?

A) Annadhurai B) M. Karunanidhi
C) Stalin D) Kanimozhi
 
Answer & Explanation Answer: B) M. Karunanidhi

Explanation:

Muthuvel Karunanidhi was an Indian writer and politician who served as Chief Minister of Tamil Nadu for five terms and twenty years between 1969 and 2011. He passed away on 7th August in Kauvery Hospital due to prolonged illness.

Report Error

View Answer Report Error Discuss

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

3 5809
Q:

Galaxy named after Greek princess

A) Andromeda B) Whirlpool
C) Messier D) Cygnus
 
Answer & Explanation Answer: A) Andromeda

Explanation:

Andromeda Galaxy is the galaxy named after Greek princess Andromeda.

Report Error

View Answer Report Error Discuss

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

3 5807
Q:

Select the odd term out of the following?

A) Internet B) Macintosh OSX
C) Linux Mint D) Windows 8.1
 
Answer & Explanation Answer: A) Internet

Explanation:

Internet is not an operating system.

Report Error

View Answer Report Error Discuss

17 5802
Q:

What is another name for the governor of a state?

A) Chief Executive B) Attorney General
C) Secretary of the State D) Vice Pesident
 
Answer & Explanation Answer: A) Chief Executive

Explanation:

Another name for the governor of the state is Chief Executive of the state.

And we also know that, The attorney general is the head of the US Department of Justice, The vice president is just under the president of the US and The secretary of state is the head of the US Department of State.

Report Error

View Answer Report Error Discuss

5 5799
Q:

A train-A passes a stationary train B and a pole in 24 sec and 9 sec respectively. If the speed of train A is 48 kmph, what is the length of train B?

A) 200 mts B) 180 mts
C) 160 mts D) 145 mts
 
Answer & Explanation Answer: A) 200 mts

Explanation:

Length of train A = 48 x 9 x 5/18 = 120 mts

Length of train B = 48 x 24 x 5/18 - 120

=> 320 - 120 = 200 mts.

Report Error

View Answer Report Error Discuss

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

4 5799
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

24 5797