Questions

Q:

Which of the following is not an Output device?

A) Scanner B) Moniter
C) Printer D) Speakers
 
Answer & Explanation Answer: A) Scanner

Explanation:
Report Error

View Answer Report Error Discuss

9 4438
Q:

The substrate of photorespiration is

A) Glucose B) Pyruvic acid
C) Glycolate D) Sucrose
 
Answer & Explanation Answer: C) Glycolate

Explanation:
Report Error

View Answer Report Error Discuss

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

5 4438
Q:

What is the capital of Bangladesh ?

A) Dhaka B) Chittagong
C) Khulna D) Sylhet
 
Answer & Explanation Answer: A) Dhaka

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

18 4438
Q:

What is the difference between malloc() and calloc() functions?

Answer

As against malloc(), calloc() needs two arguments, the number of elements  to be allocated and the size of each element. For example,


 p = (int *) calloc (10, sizeof (int));


would allocate space for a 10- integer array. Additionally, calloc() would also set each of this element with a value 0.


Thus the above call to calloc() is equivalent to:


p = (int *) malloc (10 * sizeof (int));


memset (p, 0, 10 * sizeof( int ));

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4437
Q:

Which is the oldest tennis tournament in the world and also prestigious?

A) Wimbledon B) US Open
C) French Open D) Australian Open
 
Answer & Explanation Answer: A) Wimbledon

Explanation:

Wimbledon Tournament in the city London, is the prestigious and the oldest tournament in the world.

Report Error

View Answer Report Error Discuss

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

4 4437
Q:

 The first step in database development is which of the following?

A) Enterprise data modeling B) Logical database design
C) Physical database design and definition D) Database Implementation
 
Answer & Explanation Answer: A) Enterprise data modeling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4436
Q:

The command to eliminate a table from a database is

A) REMOVE TABLE CUSTOMER; B) UPDATE TABLE CUSTOMER;
C) DELETE TABLE CUSTOMER; D) DROP TABLE CUSTOMER;
 
Answer & Explanation Answer: D) DROP TABLE CUSTOMER;

Explanation:

The SQL DROP TABLE statement is used to remove a table definition and all data, indexes,...

Report Error

View Answer Report Error Discuss

4 4436
Q:

The US President who was forced to resign due to the Watergate scandal was

Answer

Nixon

Report Error

View answer Workspace Report Error Discuss

Subject: World History

13 4435