Questions

Q:

What information does a supply schedule provide

 

A) It shows the supply for a product at various prices B) It shows the supply for different products at different prices
C) It shows the supply for a product at a single price point D) None of the above
 
Answer & Explanation Answer: A) It shows the supply for a product at various prices

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 25418
Q:

The story of vitamins dates back to

A) 15th century B) 16th century
C) 17th century D) 18th century
 
Answer & Explanation Answer: D) 18th century

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

16 25416
Q:

How many Fundamental Duties are in the Indian Constitution?

A) Nine B) Eleven
C) Twelve D) Twenty
 
Answer & Explanation Answer: B) Eleven

Explanation:

List of fundamental duties of the citizens of India in Article 51A of the Indian Constitution :

1. to abide by the constitution and respect its ideal and institutions;

2. to cherish and follow the noble ideals which inspired our national struggle for freedom;

3. to uphold and protect the sovereignty, unity and integrity of India;

4. to defend the country and render national service when called upon to do so;

5. to promote harmony and the spirit of common brotherhood amongst all the people of India   transcending religious, linguistic and regional diversities, to renounce practices derogatory to the   dignity of women;

6. to value and preserve the rich heritage of our composite culture;

7. to protect and improve the natural environment including forests, lakes, rivers, and wild-life       and to have compassion for living creatures;

8. to develop the scientific temper, humanism and the spirit of inquiry and reform;

9. to safeguard public property and to abjure violence;

10. to strive towards excellence in all spheres of individual and collective activity

11. who is a parent or guardian , to provide opportunities for education to his child, or as the case may be, ward between the age of six and fourteen years.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank PO

71 25404
Q:

Mount Everest is located between

 

A) China & India B) India & Nepal
C) China & Nepal D) India & Myanmar
 
Answer & Explanation Answer: C) China & Nepal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: Bank Exams

5 25361
Q:

What will output when you compile and run the following code?

#include <stdio.h>
struct student
{

int roll;
int cgpa;
int sgpa[8];

};

void main()
{

struct student s = { 12,8,7,2,5,9 };
int *ptr;
ptr = (int *)&s;
clrscr();
printf( "%d", *(ptr+3) );
getch();

}

A) 8 B) 7
C) 2 D) Compiler error
 
Answer & Explanation Answer: C) 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 25347
Q:

 Which of the following is the original purpose of SQL?

A) To specify the syntax and semantics of SQL data definition language B) To specify the syntax and semantics of SQL manipulation language
C) To define the data structures D) All of the above.
 
Answer & Explanation Answer: D) All of the above.

Explanation:

SQL is a domain-specific language used in programming and designed for managing data held in a relational database management system, or for stream processing in a relational data stream management system.

 

Purpose of SQL are ::

* To define the data structures

* To specify the syntax and semantics of SQL manipulation language

* To specify the syntax and semantics of SQL data definition language

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Analyst , Database Administration , IT Trainer

30 25312
Q:

Explain Belady's Anomaly?

Answer

Also called FIFO anomaly. Usually, on increasing the number of frames allocated to a process virtual memory, the process execution is faster, because fewer page faults occur. Sometimes, the reverse happens, i.e., the execution time increases even when more frames are allocated to the process. This is Belady's Anomaly. This is true for certain page reference patterns.

Report Error

View answer Workspace Report Error Discuss

59 25242
Q:

A number of cats got together and decided to kill between them 999919 rats. Every cat killed an equal number of rats. Each cat killed more rats than there were cats. How many rats do you think that each cat killed ?

A) 1009 B) 991
C) 2000 D) 1000
 
Answer & Explanation Answer: A) 1009

Explanation:

Given total number of rats = 999919

 

999919 = 1000000 - 81 = 10002 - 92 = (1000+9)(1000-9) = 1009 x 991.
Since there were more rats than there were cats, 991 cats killed 1009 rats each.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

55 25238