Questions

Q:

Which of the following metals forms an amalgam with other metals  ?

A) Mercury B) Zinc
C) Tin D) Lead
 
Answer & Explanation Answer: A) Mercury

Explanation:
Report Error

View Answer Report Error Discuss

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

20 7105
Q:

Who composed the National Anthem ' Jana Gana Mana '

A) Rabindranath Tagore B) R.D.Dinkar
C) Bakim Chandra Chatterjee D) Sarojini Naidu
 
Answer & Explanation Answer: A) Rabindranath Tagore

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

10 7103
Q:

 A benefit of the three-tier architecture is which of the following?

A) New modules can be built to support specific business needs B) Performance improves for compiled SQL statements
C) Results in a thinner client and database server D) All of the above.
 
Answer & Explanation Answer: A) New modules can be built to support specific business needs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 7102
Q:

Which Amendment Act introduced changes in the Preamble to the Indian Constitution?

A) the 38th Amendment Act, 1975 B) the 40th Amendment Act, 1976
C) the 42nd Amendment Act, 1976 D) the 44th Amendment Act, 1979
 
Answer & Explanation Answer: C) the 42nd Amendment Act, 1976

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

5 7097
Q:

The nimbus formed a special feature of Mughal portraiture under

A) Shah Jahan B) Aurangzeb
C) Jahangir D) Akbar
 
Answer & Explanation Answer: C) Jahangir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 7096
Q:

Write a c program for linear search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7093
Q:

How do you go about familiarizing yourself with the products you sell?

Answer

Retail products often change seasonally.  Can you quickly update yourself on all the new information so you can be prepared to sell the new inventory to customers as soon as it lands on the shelf


 

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

7 7092
Q:

The International Kite Festival (Uttarayan) will be started from which of the following states?

A) Telangana B) Karnataka
C) Odisha D) Gujarat
 
Answer & Explanation Answer: D) Gujarat

Explanation:

The 30th International Kite Festival (Uttarayan) will be held in Gujarat from January 8 to 13, 2017. Apart from this, three other international kite festivals will be held in different parts of India viz. Telangana International Kite Festival will be held in Hyderabad on January 14 and 15, the Delhi International Kite Festival from January 16 to 17 and the Belgaum International Kite Festival from January 18 to 22.

Report Error

View Answer Report Error Discuss

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

19 7090