Questions

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:

Equity firm Warburg Pincus and telecom company Sing Tel Hold equity stake in which Indian Cellular service provider?

A) Bharti Televenture B) Hutch
C) Idea D) Reliance Telecom
 
Answer & Explanation Answer: A) Bharti Televenture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

8 2771
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:

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:

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:

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 would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2769