Questions

Q:

In ancient Greek city states the central district would be built on a hilltop and it would contain the chief municipal and religious buildings . What was this place called?

Answer

Acropolis

Report Error

View answer Workspace Report Error Discuss

1 3308
Q:

Is MS Word an operating system?

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

Explanation:

False. MS-Word is not an Operating system.


 


Microsoft Word or MS-Word is an Application software developed by the company Microsoft. It allows users to Type and Save documents.

Report Error

View Answer Workspace Report Error Discuss

2 3308
Q:

Who is the richest person in the world 2018?

A) Jeff Bezos B) Bill Gates
C) Warren Buffets D) Mark Zuckerberg
 
Answer & Explanation Answer: A) Jeff Bezos

Explanation:

Jeff Bezos is the richest person in modern history. The Amazon.com Inc. founder’s net worth broke $150 billion in New York on 16th July 2018 morning, according to the Bloomberg Billionaires Index.

 

 jeff_bezos1531830665.jpg image

 

That’s about $55 billion more than Microsoft Corp. co-founder Bill Gates, the world’s second-richest person.

Report Error

View Answer Report Error Discuss

5 3307
Q:

Consider the following statements relating to Coal India Limited:1. It is designated as a 'Maha Ratna'company under the Ministry of Coal.2. It is the single largest coal producing company in the world.3. The Headquarters of Coal India Limited is located at Ranchi Jharkhand.
Which of the statements given above is/are correct?

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

Explanation:

Headquarters Kolkata, West Bengal, IndiaCoal India Limited (CIL) is an Indian state-controlled coal mining company headquartered in Kolkata, West Bengal, India and the largest coal-producing company in the world and a Maharatna company.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 3307
Q:

When is the International Firefighters' Day(IFFD) observed every year ?

A) 2 May B) 4 May
C) 3 May D) 6 May
 
Answer & Explanation Answer: B) 4 May

Explanation:

International Firefighters' Day (IFFD) is observed on May 4. It was instituted after proposal emailed out across the world on January 4, 1999 due to the deaths of five firefighters in tragic circumstances in a bushfire in Australia.

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT

3 3307
Q:

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

#include "stdio.h"

main()

{

      unsigned char;

       FILE *fp;

       fp = fopen ("trail", "r");

       while (( ch = getc (fp)) ! = EOF)

               printf ("%c", ch);

       fclose (fp);

}  

Answer

EOF has been defined as #define EOF -1 n the file "stdio.h" and an unsigned char ranges from 0 to 255 hence when EOF is read from the file it cannot be accommodated in ch. Solution is to declare ch as an int.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 3307
Q:

Explain the concept of Reentrancy?

Answer

It is a useful, memory-saving technique for multiprogrammed timesharing systems. A Reentrant Procedure is one in which multiple users can share a single copy of a program during the same period. Reentrancy has 2 key aspects: The program code cannot modify itself, and the local data for each user process must be stored separately. Thus, the permanent part is the code, and the temporary part is the pointer back to the calling program and local variables used by that program. Each execution instance is called activation. It executes the code in the permanent part, but has its own copy of local variables/parameters. The temporary part associated with each activation is the activation record. Generally, the activation record is kept on the stack.


Note: A reentrant procedure can be interrupted and called by an interrupting program, and still execute correctly on returning to the procedure.

Report Error

View answer Workspace Report Error Discuss

0 3306
Q:

Roentgen discovered

A) Electrocardiograph B) X–rays
C) Anti polio vaccine D) Encephalograph
 
Answer & Explanation Answer: B) X–rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

3 3306