Questions

Q:

A bond formed by the transfer of electrons betwwen atoms of the elements is called

A) ionic bond B) covalent bond
C) co ordinate bond D) none
 
Answer & Explanation Answer: A) ionic bond

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

8 5494
Q:

Which of the following is not a plantation crop?

A) rubber B) coffee
C) gram D) coconut
 
Answer & Explanation Answer: C) gram

Explanation:

Gram is not a Plantation crop among the given options.

 

Plantation crops are known as cash crops. These crops are mostly grown at tropical and subtropical areas. These crops are grown for sale but not for local consumption. such crops include rubber, coffee, tea, various oil seeds, sugar cane,etc.

So, Gram is not a plantation crop.

Report Error

View Answer Report Error Discuss

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

8 5493
Q:

Answer the Following Puzzle

Number Puzzles Questions and Answers

A) 22 B) 33
C) 44 D) 55
 
Answer & Explanation Answer: A) 22

Explanation:

In each circle,lower number equals the product of the top two numbers, subtracting 3 for the left hand circle, 4 for the middle, and 5 for the right hand circle.

Report Error

View Answer Report Error Discuss

Filed Under: Number Puzzles

25 5488
Q:

Which company announced the launch of 1Gbps (gigabits per second) wired broadband internet services in Hyderabad, India's first giga city?

A) ACT Fibernet B) BSNL
C) RCOM D) Telenor India
 
Answer & Explanation Answer: A) ACT Fibernet

Explanation:

ACT Fibernet announced the launch of 1Gbps (gigabits per second) wired broadband internet services in Hyderabad. It makes the `City of Pearls’ India’s first `Giga City.’ In Hyderabad, the 1 Gb plan will offer at Rs 5,999 per month.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank Clerk

5 5488
Q:

Which of the following is a comparison operator in SQL?

A) LIKE B) BETWEEN
C) = D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

LIKE, BETWEEN and = operators are used for comparison in SQL. Comparison operators test whether two expressions are the same. Comparison operators can be used on all expressions except expressions of the text, ntext, or image data types.

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

35 5487
Q:

It travels over land and water. Who invented the HOVERCRAFT?

A) C. Cockerell B) S. Sperrow
C) O. Stricheg D) T. Henman
 
Answer & Explanation Answer: A) C. Cockerell

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

2 5486
Q:

The Sunderbans are found in

A) The Luni Basin B) Godavari Delta
C) Ganga Delta D) Mahanadi Delta
 
Answer & Explanation Answer: C) Ganga Delta

Explanation:

These mangrove or tidal forests are found in the submerged coastal plains of the Ganga. The name comes from the abundant sundari trees found here. 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

4 5484
Q:

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

#include "stdarg.h"

main()

{

     display ( 4, 12.5, 13.5, 14.5, 44.3);

}

display(int num, ...)

{

       float c; int j;

        va_list ptr;

        va_start (ptr, num);

        for ( j = 1; j <= num; j++)

        {

            c = va_arg ( ptr, float );

            printf ("\n%f", c);

         }

}

Answer

While extracting a float argument using va_arg we should have useed 


c = va_arg (ptr, double)

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 5483