Questions

Q:

In R-DBMS, the data is organized in the form of _____.

A) Hierarchical structure B) Tabular structure
C) Linked structure D) All of the above
 
Answer & Explanation Answer: B) Tabular structure

Explanation:

Data is organized in the form of row and columns, thus it is in tabular structure.

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification

5 2869
Q:

Bertolt Brecht is associated with which theatrical movement?

A) Thesis B) Theater of cruelty
C) Epic theater D) None of the above
 
Answer & Explanation Answer: C) Epic theater

Explanation:

Eugen Berthold Friedrich Brecht, known professionally as Bertolt Brecht, was a German theatre practitioner, playwright, and poet.

Image result for Bertolt Brecht

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

4 2869
Q:

What is a single celled organism called

A) protoctists B) chromosomes
C) unicellular D) bicellular
 
Answer & Explanation Answer: C) unicellular

Explanation:

An organism is a living thing, and there are two broad categories of organisms: those made up of only a single cell, and those made up of multiple cells.

Single-celled organisms means which contains only one cell are called unicellular organisms. 'Uni-' means 'one,' so the name 'unicellular' literally means 'one cell.'

 

Examples of Unicellular or Single celled organisms ::

 

Prokaryotic organisms like Bacteria,...

Some algae like green algae, euglena,...

Report Error

View Answer Report Error Discuss

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

5 2868
Q:

Which one of the following elements cannot be detected by "Lassaigne's test"?

A) I B) Cl
C) S D) F
 
Answer & Explanation Answer: D) F

Explanation:

The sodium fusion test, or Lassaigne's test, is used in elemental analysis for the qualitative determination of the presence of foreign elements, namely halogens, nitrogen, and sulphur, in an organic compound. It was developed by J. L. Lassaigne.Silver fluoride is soluble in water and does not precipitate and thus this method cannot be used for detection of fluorine.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

2 2868
Q:

Yakshagana, a dance drama is popular in

A) Karnataka B) Tamil Nadu
C) Kerala D) Andhra Pradesh
 
Answer & Explanation Answer: A) Karnataka

Explanation:

Yakshagana is a traditional Indian dance drama form developed in Karnataka state of India.

Report Error

View Answer Report Error Discuss

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

10 2867
Q:

Which one of the following statements about Buddhist Stupas in India is not correct?

A) Ashoka played an important role in popularizing the Stupa cult. B) They were repositories of relics of Buddha and other monks.
C) They were located in rural areas. D) They were located close to trade routes.
 
Answer & Explanation Answer: C) They were located in rural areas.

Explanation:

A stupa is a mound-like or hemispherical structure containing relics that is used as a place of meditation.Buddhist sources claim that during the 3rd century BCE, the Mauryan Emperor Ashoka the Great ordered these eight stupas to be opened, further distributed the relics of the Buddha into 84,000 portions, and had stupas built over them all over the expanding Buddhist world.They were located on trade routes in order to propagate Buddhism.However, there were no evidence of them being located in rural areas.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2867
Q:

Recently deleted files are stored in

A) Taskbar B) My Computer
C) Recycle Bin D) Desktop
 
Answer & Explanation Answer: C) Recycle Bin

Explanation:

Deleted files are not permanently removed from the hard drive or the computers memory. Before they are permanently removed from the system they are stored in Recycle Bin. Recycle Bin is a folder or directory where deleted items are temporarily stored. It is also called as trash.

Report Error

View Answer Report Error Discuss

6 2866
Q:

What will be output of following c code?

void main()
{
struct india
{
char c;
float d;
};
struct world
{
int a[3];
char b;
struct india orissa;
};
struct world st ={{1,2,3},'P','q',1.4};
clrscr();
printf("%dt%ct%ct%f",st.a[1],st.b,st.orissa.c,st.orissa.d);
getch();
}

Answer

Output: 2 p q 1.400000

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2865