Questions

Q:

The single most important invention to farmers is the

A) Tractor B) Automobile
C) Grain solo D) Cotton gin
 
Answer & Explanation Answer: A) Tractor

Explanation:

Tractor was the single most important invention to farmers.

Report Error

View Answer Report Error Discuss

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

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

Would the following program compile?

main()

{

    int a = 10, *j;

    void *k;

    J = k = &a;

    J++;

    k++;

   printf ("\n%u %u", j, k);

}

Answer

An error would be reported in the statement k++ since arithmetic on void pointers is not permitted unless the void pointer is appropriately typecasted.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

Which measurement depends on gravitational force?

A) Mass B) Weight
C) Height D) All of the above
 
Answer & Explanation Answer: B) Weight

Explanation:

We know that,

Weight W = mg. That is mass times gravitational force.

Report Error

View Answer Report Error Discuss

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

3 2656
Q:

Spongy, porous bone tissue is also called

A) Compact bone B) Bone fissure
C) Yellow bone marrow D) Cancellous bone
 
Answer & Explanation Answer: D) Cancellous bone

Explanation:

Spongy, porous bone tissue is also called cancellous bone.

 

Cancellous bone is found in bones that aren't generally under significant stress like in the shoulder blades, ribs, parts of the skull, and at the ends of long bones.

 

Report Error

View Answer Report Error Discuss

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

3 2656
Q:

All bones stop growing by the end of adolescence.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement "All bones stop growing by the end of adolescence" is a FALSE statement.

Report Error

View Answer Workspace Report Error Discuss

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

2 2656
Q:

Hypnosis is sometimes used to treat anxiety disorders.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Hypnosis is a state of human consciousness involving focused attention, reduced peripheral awareness, and an enhanced capacity to respond to suggestion.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2655