Questions

Q:

The Nobel Prize in Economics was started in

A) 1901 B) 1936
C) 1957 D) 1967
 
Answer & Explanation Answer: D) 1967

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 2667
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 2667
Q:

Which country is the largest producer of sugarcane in the world?

A) Brazil B) Russia
C) China D) India
 
Answer & Explanation Answer: A) Brazil

Explanation:

The country Brazil is the largest producer of sugarcane in the world.

Report Error

View Answer Report Error Discuss

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

0 2667
Q:

A protein that acts as a hormone is

A) Estrogen B) Insulin
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Insulin

Explanation:

A protein that acts as a hormone is INSULIN.

a_protein_that_acts_as_a_hormone_is1534420157.jpg image

Insulin is a peptide hormone produced by beta cells of the pancreatic islets; it is considered to be the main anabolic hormone of the body.  Insulin helps keeps your blood sugar level from getting too high or too low.  

Report Error

View Answer Report Error Discuss

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

2 2667
Q:

What is the name of the Indian Coast Guard Ship which has been decommissioned by the Indian navy recently ?

A) Sarathi B) Shaurya
C) Varuna D) Ayush
 
Answer & Explanation Answer: C) Varuna

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2666
Q:

In a spreadsheet program how is data organized?

A) Rows and columns B) Layers and planes
C) Lines and spaces D) All of the above
 
Answer & Explanation Answer: A) Rows and columns

Explanation:
Report Error

View Answer Report Error Discuss

6 2666
Q:

The force that generates wind is

A) Gravity force B) Pressure gradient force
C) Coriolis force D) Centrifugal force
 
Answer & Explanation Answer: B) Pressure gradient force

Explanation:

Wind is the flow of gases on a large scale. On the surface of the Earth, wind consists of the bulk movement of air. The force that generates wind is called as Pressure gradient force.

Report Error

View Answer Report Error Discuss

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

3 2666
Q:

What is the Purpose of a Project Charter?

Answer

 


1. Project Charter refers to a statement of objectives in a project.


 
2. It provides a preliminary delineation of roles and responsibilities, outlines the project objectives, identifies the main stakeholders, and defines the authority of the project manager.


 
3. It serves as a reference of authority for the future of the project. The terms of reference are usually part of the project charter.

Report Error

View answer Workspace Report Error Discuss

10 2666