Questions

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

Which of the following is Not an Operating System?

A) UNIX B) Windows NT
C) C++ D) DOS
 
Answer & Explanation Answer: C) C++

Explanation:

C++ is not an Operating System.

 

An Operating System is a collection of system programs that manages all the other programs application programs in a computer as well as the allocation and use of hardware resources such as the CPU, Memory and the Hard Disk Drive.

It acts as an interface between the hardware and the user level program.

It controls and facilitates the overall operation of a computer. 

 

Here

UNIX : UNIX is a popular multi-user, multitasking operating system (OS) developed at Bell Labs.

 

Windows NT : Windows NT is a family of operating systems produced by Microsoft, the first version of which was released in July 1993.

 

DOS : DOS is Disk Operating System. The term DOS can refer to any operating system.

 

C++ : C++ is a programming language and computing platform.

 

Hence, C++ is not an Operating System.

Report Error

View Answer Report Error Discuss

8 5385
Q:

Arrange the following words as per order in the dictionary

1. Diffident

2. Difficult

3.Different

4.Diffidence

A) 1,2,3,4 B) 3,2,4,1
C) 2,1,3,4 D) 3,2,1,4
 
Answer & Explanation Answer: D) 3,2,1,4

Explanation:
Report Error

View Answer Report Error Discuss

0 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:

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

Which is not a green house gas in the following?

 

A) Ozone B) Nitrous oxide
C) Water vapour D) Hydrogen
 
Answer & Explanation Answer: D) Hydrogen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 5380
Q:

GDP can be calculated by summing

A) Consumption, investment, government purchases, and net exports B) Consumption, investment, government spending, and imports
C) Consumption, investment, government purchases, and imports D) Consumption, investment, wages, and rent
 
Answer & Explanation Answer: A) Consumption, investment, government purchases, and net exports

Explanation:

Gross domestic product (GDP) is the monetary value of all the finished goods and services produced within a country's borders in a specific time period.

Simply, GDP is a broad measurement of a nation’s overall economic activity. 

It is calculated by summation of Consumption, investment, government purchases, and net exports.

Report Error

View Answer Report Error Discuss

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

5 5377
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 5374