Questions

Q:

The ratio of volume of a cone to that of a cylinder if cylinder radius is reduced by 4 times and its height increased by 8 times of that of the cone, is - 

A) 3:2 B) 2:3
C) 5:7 D) 7:5
 
Answer & Explanation Answer: B) 2:3

Explanation:

Ans. Let radius of the base and height of the cone be ‘r’ & ‘h’ respectively.

Then volume of cone = πr2h/3 For cylinder, radius is reduced by 4 times = r/4 And,  height is increased by 8 folds = 8h Volume of cylinder = πR2H = π(r/4)2 (8h) = (16/8)πr2h = πr2h/2 Ratio of volume of cone to volume of cylinder = (πr2h/3) : (πr2h/2) Or, Ratio = 2 : 3.

Report Error

View Answer Report Error Discuss

1 2207
Q:

Project Risk Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Risk Management Planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project Scope statement

  • Project Management plan


II. Tools and Techniques



  • Planning meetings and analysis


III. Outputs



  • Risk Management Plan

Report Error

View answer Workspace Report Error Discuss

0 2207
Q:

What is the purpose of SQL Profiler in SQL server?

Answer

SQL profiler is a tool to monitor performance of various stored procedures. It is used to debug the queries and procedures. Based on performance, it identifies the slow executing queries. Capture any problems by capturing the events on production environment so that they can be solved.

Report Error

View answer Workspace Report Error Discuss

1 2207
Q:

Instrument for measuring light intensity is called

A) Lucimeter B) Cryometer
C) Cyanometer D) Barometer
 
Answer & Explanation Answer: A) Lucimeter

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2207
Q:

Which of the following is a function of Earth's atmosphere?

A) supplies the oxygen and water for life B) screens out much of the Sun's ultraviolet radiation
C) insulates the surface against temperature extremes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Here all the options given are important functions of Earth's atmosphere.

Report Error

View Answer Report Error Discuss

2 2207
Q:

The law of conservation of mass states that mass cannot be changed overtime.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The law of conservation of mass states that in any closed system the mass of the system is neither created nor destroyed over time i.e, the mass cannot be changed overtime.


 


Hence, the given statement is true.

Report Error

View Answer Workspace Report Error Discuss

3 2207
Q:

All the organisms on your campus make up

A) a community B) a group
C) an ecosystem D) None of the above
 
Answer & Explanation Answer: A) a community

Explanation:

All the organisms on your campus make up a community.

Report Error

View Answer Report Error Discuss

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

2 2206
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 2206