Questions

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

Project authorization is one of the processes that is associated with the initiation phase of a project. Authorization can come in many different forms, and projects are generally authorized by all of the following except

A) Technological Advances B) Customer request or market demand
C) Executive year - end bonuses D) Business or Social needs
 
Answer & Explanation Answer: C) Executive year - end bonuses

Explanation:

Project authorization should not be exclusively based upon the impact of an executive's bonus (many people would agree that it should not ever be based upon an executive's bonus). Answer A, B, and D are common events that predicate the need for project authorization and can evolve into large scope projects.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 2772
Q:

The HIV retrovirus is particularly deadly because

A) I can become AIDS shortly afte being contracted B) It attacks the body immune system
C) Treatments can be dangerous for patients D) Its hard to diagnose accurately
 
Answer & Explanation Answer: B) It attacks the body immune system

Explanation:

HIV is a virus that damages the immune system. HIV is a lifelong condition, and without treatment, a person with HIV can develop AIDS.

The_HIV_retrovirus_is_particularly_deadly_because1563452540.jpg image

Report Error

View Answer Report Error Discuss

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

9 2771
Q:

A feature of catabolic reactions is that they

A) occur only in mitochondria B) occur only during loss of body weight
C) involve release of energy D) involve consumption of energy
 
Answer & Explanation Answer: C) involve release of energy

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2770
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 2770
Q:

What was the total time taken to write the Indian Constitution?

A) 2 years, 08 months & 18 days B) 2 years, 11 months & 18 days
C) 2 years, 09 months & 18 days D) 2 years, 10 months & 18 days
 
Answer & Explanation Answer: B) 2 years, 11 months & 18 days

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2770
Q:

Which part of the brain is responsible for memory?

A) Cerebellum B) Medulla Oblongata
C) Cerebrum D) All of the above
 
Answer & Explanation Answer: A) Cerebellum

Explanation:
Report Error

View Answer Report Error Discuss

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

8 2770
Q:

Pulses are a good source of

A) Proteins B) Fats
C) Vitamins D) Carbohydrates
 
Answer & Explanation Answer: A) Proteins

Explanation:

A pulse is an edible seed that grows in a pod. Pulses include all beans, peas, and lentils.
Pulses are a great source of protein.

This means they can be particularly important for people who do not get protein by eating meat, fish or dairy products.

 

However, pulses can also be a healthy choice for meat-eaters. You can add pulses to soups, casseroles and meat sauces to add extra texture and flavor. This means you can use less meat, which makes the dish lower in fat and cheaper.

Report Error

View Answer Report Error Discuss

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

4 2769