Questions

Q:

Which herb is being cultivated in Jammu as part of the Aroma Mission?

 

A) Parsley B) Mint
C) Lavender D) Basil
 
Answer & Explanation Answer: C) Lavender

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 6823
Q:

Who is the Indian Classical dancer credited with the first female dancer to learn Chhau form ?

Answer

Sonal Mansingh

Report Error

View answer Workspace Report Error Discuss

9 6815
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 6815
Q:

Metals are generally ______.

I. Ductile

II. Malleable

III. Poor conductors of heat

A) Only I and II B) Only I and III
C) Only II and III D) All I, II and III
 
Answer & Explanation Answer: A) Only I and II

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 6810
Q:

Which of the following does not contain the material particles

A) alpha - rays B) beta - rays
C) gamma - rays D) anode rays
 
Answer & Explanation Answer: C) gamma - rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

16 6806
Q:

7 C in the R?

Answer

The given letter equation implies that, 


7 C in the R = 7 Colours in a Rainbow.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

5 6806
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 6805
Q:

Who summons the joint sitting of both the houses of the Indian Parliament?

 

A) Prime Minister of India B) President of India
C) Speaker of Lok Sabha D) Chairman of Rajya Sabha
 
Answer & Explanation Answer: B) President of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 6804