Questions

Q:

Who was appointed as NASSCOM chairman in April 2017 ?

A) C P. Gurnani B) Raman Roy
C) Smt. Singha D) None
 
Answer & Explanation Answer: B) Raman Roy

Explanation:

The National Association of Software and Services Companies (Nasscom) appointed Raman Roy (Managing Director of Quatrro Global Services) as its chairman for 2017-2018.

 Rishad Premji (Chief Strategy Officer (CSO), Wipro Limited) has been appointed Vice Chairman. Raman Roy has replaced Mr. CP Gurnani.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

3 2657
Q:

Graphite is a good conductor of electricity.

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

Explanation:

Graphite is a good conductor of electricity as it contains free electrons to move through the structure of the graphite.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

0 2657
Q:

Cricket is the national game of which country?

A) Australia B) India
C) Canada D) Spain
 
Answer & Explanation Answer: A) Australia

Explanation:

Cricket is the national game of Australia.

Report Error

View Answer Report Error Discuss

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

8 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 2656
Q:

What does ADP stand for army?

Answer

ADP stand for Army Doctrine Publication.  An official written document that provides established principles in the U.S. Army that support national objectives.

Report Error

View answer Workspace Report Error Discuss

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

1 2656
Q:

Consider the electromagnetic radiations having wavelengths 200 nm, 500 nm and 1000 nm. Which wavelength (s) of the following can make visual sensation to a human eye?

A) 200 nm and 500 nm B) 500 nm and 1000 nm
C) 500 nm only D) 200 nm and 1000 nm
 
Answer & Explanation Answer: C) 500 nm only

Explanation:
Visual image of human eye is 390-700 nanometer. So, approximate value is 500 nanometer only.
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2655
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 2655
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 2655