Questions

Q:

Which composition is considered the unofficial national anthem of Austria?

Answer

Johann Strauss's on the Banks of the Beautiful Blue Danube

Report Error

View answer Workspace Report Error Discuss

8 2630
Q:

Which of the following is true about compounds?

A) They are substances B) They have properties similar to those of their component elements
C) They can be physically separated into their component elements D) They have compositions that vary
 
Answer & Explanation Answer: A) They are substances

Explanation:

Compounds are substances is true about them.

Report Error

View Answer Report Error Discuss

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

1 2629
Q:

Write a c program for binary search.

Answer

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

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

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

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2629
Q:

Who is the author of ' The Accidental Prime Minister - The Making and Unmaking of Manmohan Singh'

Answer

Sanjaya Baru

Report Error

View answer Workspace Report Error Discuss

3 2628
Q:

In Which three languages is the Rosetta Stone written?

Answer

Greek, demotic Egyptian and hieroglyphics.

Report Error

View answer Workspace Report Error Discuss

Subject: World History

0 2628
Q:

One of the following companies does have business interest in both oil and shipping sectors. Identify this.

A) Tata Group B) Reliance Group
C) Essar Group D) ONGC
 
Answer & Explanation Answer: C) Essar Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

6 2628
Q:

The Indira Gandhi Zoological Park is located in which state?

A) Sikkim B) Manipur
C) Andhra Pradesh D) Mizoram
 
Answer & Explanation Answer: C) Andhra Pradesh

Explanation:

The Indira Gandhi Zoological Park is located in Vishakapatnam (Vizag) in the state of Andhra Pradesh.

Indira_Gandhi_Zoological_Park_is_located_in1549605716.jpg image

Report Error

View Answer Report Error Discuss

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

3 2628
Q:

Oligopolistic industries are characterized by

A) a few dominant firms and no barriers to entry B) a large number of firms and low entry barriers
C) a few dominant firms and substantial entry barriers D) a few dominant firms and low entry barriers
 
Answer & Explanation Answer: C) a few dominant firms and substantial entry barriers

Explanation:

Oligopoly is market structure where a small number of large firms are there. Oligopolistic industries are characterized by a few dominant firms and substantial entry barriers.

Report Error

View Answer Report Error Discuss

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

6 2627