Questions

Q:

Which city is known as "Queen of Arabian Sea"  ?

A) Vizag B) Kakinada
C) Mumbai D) Kochi
 
Answer & Explanation Answer: D) Kochi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

8 5392
Q:

On a systems development project, Richard needs two programmers. He knows John and Smith were able to create a program in 40 days similar to the one he wants to create on his project. He decides to use 40 days as his estimate. This is an example of what type of estimating?

A) Parametric modeling B) Analogous
C) Rule of thumb D) Fixed Rate
 
Answer & Explanation Answer: B) Analogous

Explanation:

Richard is using an estimate based on a project very similar to to his own with staff he will be using.  Answer A is incorrect because perametric modeling involves using a mathematical model to predict costs, such as dollars per line of code. Answer C is incorrect, although close; if the development project is a common item, such as putting down new flooring, a rule -of-thumb measurement can be used, although it is less accurate. Answer D is incorrect because it is not a form of estimating, but a type of pricing.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 5391
Q:

The headquarters of International Atomic Energy Agency is located in

A) London B) Vienna
C) Paraguay D) Washington
 
Answer & Explanation Answer: B) Vienna

Explanation:

It is located in Vienna

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 5390
Q:

How do you rate your English skills?

Answer

Again, before you apply for a job to a call center you should be aware that most of the call centers cater to English speaking customers and this needs you to speak clear English without any grammatical mistakes. 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

13 5388
Q:

Myanmar is located in _____________.

 

A) South Asia B) South-east Asia
C) East Asia D) South-west Asia
 
Answer & Explanation Answer: B) South-east Asia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 5388
Q:

Find the missing number in the given puzzle?

missing_number_puzzle1546602135.jpg image

A) 963 B) 696
C) 969 D) 966
 
Answer & Explanation Answer: C) 969

Explanation:

1 + 1 = 121 = 1x1 1+1 1x1

1 + 2 = 134 = 1x1 1+2 2x2

2 + 2 = 444 = 2x2 2+2 2x2

3 + 2 = 954 = 3x3 3+2 2x2

3 + 3 = ?   

Similarly, 3x3 3+3 3x3 = 969

Report Error

View Answer Report Error Discuss

28 5384
Q:

A situation where we have people whose level of income is not sufficient to meet the minimum consumption expenditure is considered as

A) Absolute Poverty B) Relative Poverty
C) Urban Poverty D) Rural Poverty
 
Answer & Explanation Answer: A) Absolute Poverty

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

5 5383
Q:

We want to round off x, a Float to an Int value. The correct way to do so would be

A) Y = ( int ) ( x + 0.5 ) ; B) Y = int ( x + 0.5) ;
C) Y = ( int ) x + 0.5; D) Y = ( int ) ( ( int ) x + 0.5 )
 
Answer & Explanation Answer: A) Y = ( int ) ( x + 0.5 ) ;

Explanation:

Rounding off a value means replacing it by a nearest value that is approximately equal or smaller or greater to the given number.

 

y = (int)(x + 0.5); here x is any float value. To roundoff, we have to typecast the value of x by using (int)

 

Example:

 

#include

 

int main ()

 

{

 

  float x = 2.6;

 

  int y = (int)(x + 0.5);

 

  printf ("Result = %d\n", y );

 

  return 0;

 

}

 

Result : 3

Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 5382