Questions

Q:

Which state decided to launch Yuva Swabhiman Yojana for urban poor youth?

A) Madhya Pradesh B) Haryana
C) Himachal Pradesh D) Maharashtra
 
Answer & Explanation Answer: A) Madhya Pradesh

Explanation:

Madhya Pradesh state decided to launch Yuva Swabhiman Yojana for urban poor youth.

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 2682
Q:

Plants are photosynthetic autotrophs.

What does this mean?

Answer

Plants are photosynthetic autotrophs, which means that they are able to produce their own food through the process called photosynthesis.


 


In photosynthesis, plants use light, water, and carbon dioxide to create glucose, which they convert to cellulose and use to make new cells.


 


Hence, that is why, Plants are called photosynthetic autotrophs.

Report Error

View answer Workspace Report Error Discuss

Subject: General Science Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

0 2681
Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correct alternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to “No improvement”.


The trade union is hell bent at getting its demands fulfilled

A) hell bent in  B) hell bent about 
C) hell bent on  D) No improvement 
 
Answer & Explanation Answer: C) hell bent on 

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2681
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 2681
Q:

Name one problem that led to the civil war.

A) Slavery B) Economic reasons
C) State's Rights D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

0 2681
Q:

The fog that commonly occurs along the sea-coasts is of the ______ type

A) radiation B) advection
C) frontal D) convection
 
Answer & Explanation Answer: B) advection

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2680
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 2680
Q:

The Rio Olympics have been started in 2016 was

A) 5th August B) 6th August
C) 4th August D) 3rd August
 
Answer & Explanation Answer: A) 5th August

Explanation:

Rio Olympics were held in  Rio de Janeiro, Brazil, from 5 August to 21 August 2016.

  • Athletes : 11303
  • Countries : 207
  • Events : 306

 

Report Error

View Answer Report Error Discuss

Filed Under: Sports

5 2680