Questions

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

Distinguish between speculator and hedger?

Answer

The main difference lies in the motive of the two parties. The main motive of the hedger is to hedge(minimize) the risk from the occurence of some events. 


The motive of the speculator is to gamble in the market in order to make the profit by buying/selling the derivative products.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

2 2769
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 2769
Q:

Shahi Litchi of which recently got a GI tag?

A) Telangana B) Bihar
C) Odisha D) Maharastra
 
Answer & Explanation Answer: B) Bihar

Explanation:

Shahi Litchi of Bihar recently got a GI tag and got official recognition for Muzaffarpur in Bihar.

Report Error

View Answer Report Error Discuss

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

3 2769
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
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 2768
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 2768
Q:

Which statements about viruses are true?

A) HIV contains reverse transcriptase. B) A retrovirus contains RNA.
C) Both A & B D) All RNA-containing viruses are retroviruses.
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The statements true about viruses are :

 

1. The capsid enters the host cell if the virus is enveloped.

2. Enveloped viruses bud from the host cell. 

3. HIV contains reverse transcriptase.

4. A retrovirus contains RNA.

Report Error

View Answer Report Error Discuss

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

1 2768