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 2231
Q:

Project Procurement Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Request Seller Responses?

Answer

I. Inputs



  • Organizational process assets

  • Procurement management plan

  • Procurement documents


II. Tools and Techniques



  • Bidder conferences

  • Advertising

  • Develop qualified sellers list


III. Outputs



  • Qualified sellers list

  • Procurement document package

  • Proposals

Report Error

View answer Workspace Report Error Discuss

0 2231
Q:

The Pullman strike in 1894 began when

A) Pullman workers attempted to move out of the company town. B) the Pullman workers’ union voted for a wildcat strike.
C) a recession prompted the Pullman Company to lay off workers. D) a workers’ delegation met with and was fired by George Pullman.
 
Answer & Explanation Answer: C) a recession prompted the Pullman Company to lay off workers.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

1 2231
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 2231
Q:

Free-floating anxiety refers to anxiety that is

A) unrelated to any realistic, known source B) related to a specific event
C) related to a realistic source D) related to a specific object
 
Answer & Explanation Answer: A) unrelated to any realistic, known source

Explanation:

Free floating anxiety is also known as Generalised Anxiety Disorder in which the individual may be unable to identify specific triggers for the anxiety.

Report Error

View Answer Report Error Discuss

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

0 2231
Q:

Why does a fountain pen leak in aeroplane flying at a height?

A) Because of reduced viscosity of the ink in the pen B) Because of increased viscosity of the ink in the pen
C) Because of higher atmospheric pressure outside the pen D) Because of lower atmospheric pressure outside the pen
 
Answer & Explanation Answer: D) Because of lower atmospheric pressure outside the pen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2230
Q:

The ozone layer is part of the

A) Troposphere B) Stratosphere
C) Ionosphere D) Mesosphere
 
Answer & Explanation Answer: B) Stratosphere

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2230
Q:

Explain Data Definition Language

Answer

Data Definition Language (DDL):- are the SQL statements that define the database structure.


Example:



  1.  CREATE

  2.  ALTER

  3.  DROP

  4.  TRUNCATE

  5.  COMMENT

  6.  RENAME

Report Error

View answer Workspace Report Error Discuss

1 2230