Questions

Q:

What does the EU do?

Answer

Execution Unit receives program instruction codes and data from BIU, executes these instructions and store the result in general registers.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2193
Q:

Who is the founder of the Indian Premier League (IPL)?

A) N. Srinivasan B) Samir Modi
C) Rajeev Shukla D) Lalit Modi
 
Answer & Explanation Answer: D) Lalit Modi

Explanation:

The founder of the Indian Premier League (IPL) is Lalit Modi.

Report Error

View Answer Report Error Discuss

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

3 2192
Q:

What is the precise time of earth rotation on axis?

Answer

23 hrs, 56 minutes and 4.9 seconds

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2192
Q:

Can You Guess The Missing Numbers In The Given Math Puzzle?

A) B)
C) D)
 
Answer & Explanation Answer: A)

Explanation:

Let the missing numbers be x, y, a and b

x + y = 8 ---- (1)
a - b = 6 ---- (2)
x + a = 13 --- (3)
y + b = 8 ---- (4)

2x + a + y = 21 --- From (1 & 3)
a + y = 14 ----  From (2 & 4)

Substitute (2 & 4) in (1 & 3)

2x + 14 = 21
2x = 7
x = 3.5

From (1) ---> 3.5 + y = 8
=> y = 8 - 3.5 = 4.5

a + y = 14 => a = 14 - y = 14 - 4.5 => a = 9.5
From (4) ---- y + b = 8 => b = 8 - y = 8 - 4.5 = 3.5

Hence,
x = 3.5
y = 4.5
a = 9.5
b = 3.5

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: CAT , Bank Exams

14 2192
Q:

What is fragmentation?

Answer

Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request.

Report Error

View answer Workspace Report Error Discuss

1 2192
Q:

The Nobel Literature Prize 2018 has been awarded to

A) Bob Dylan B) Shashi Tharoor
C) George Saunders D) No one
 
Answer & Explanation Answer: D) No one

Explanation:

This is for the first time that no Literature Prize will be given in 70 years because of a #MeToo scandal.

Report Error

View Answer Report Error Discuss

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

1 2192
Q:

Which of the following is not an intrusive igneous body?

A) Stock B) Dike
C) Stope D) Batholith
 
Answer & Explanation Answer: C) Stope

Explanation:

These are called intrusive igneous rocks because the magma has intruded into pre-exiting rock layers. Types of intrusive igneous rocks are granite and basalt .

A batholith is the largest of the intrusive bodies.

Report Error

View Answer Report Error Discuss

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

1 2192
Q:

Point out the error, if any, in the following program.

main()

{

    int ( *p )() = fun;

    ( *P ) ();

}

fun ()

{

    Printf ( "\nLoud and clear" );

Answer

Here we are initalising the function pointer p to the address of the function fun(). But during this initialisation the function has not been defined. Hence an error.


To eliminate this error add the prototype of the fun() before declaration of p, as shown below:


extern int fun();    or simply  int fun();

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2191