Questions

Q:

 Which of the following occurs when a transaction rereads data it has previously read and finds modification or deletions caused by a committed transaction?

A) Nonrepeatable read B) Phantom read
C) Dirty read D) Consistent read
 
Answer & Explanation Answer: A) Nonrepeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 3332
Q:

Which is the only gem of world made of a single element?

A) Platinum B) Diamond
C) Emerald D) Ruby
 
Answer & Explanation Answer: B) Diamond

Explanation:

The only gem of world made of a single element is Diamond.

the_only_gem_of_world_made_of_a_single_element1563602197.jpg image

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

6 3331
Q:

The first cellular phone service in india was introduced by ________

Answer

The first cellular phone service in india was introduced by Modi Telstra on August 23, 1995 in calcutta under the name Mobile Net. 

Report Error

View answer Workspace Report Error Discuss

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

Who gave the Slogan Inquilab Zindabadh ?

A) M.K.Gandhi B) Nehru
C) Iqbal D) Bal Gangadhar Thilak
 
Answer & Explanation Answer: C) Iqbal

Explanation:

It was given by Iqbal

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 3331
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 3330
Q:

Who is the author of book ' Arctic Summer'.

Answer

Dammon Galgut

Report Error

View answer Workspace Report Error Discuss

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