Questions

Q:

Who has been appointed as an Executive Director in the World Bank in the US ?

A) S Aparna B) Ashok Lavasha
C) Rahul Verma D) S C Garg
 
Answer & Explanation Answer: A) S Aparna

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2686
Q:

Which color has the highest energy?

A) Violet B) Red
C) Blue D) White
 
Answer & Explanation Answer: A) Violet

Explanation:

Violet colour has the highest energy. The higher the frequency, the faster the oscillations and thus the higher the energy. Therefore, the highest-frequency ultra-violet light or the lowest wavelength is violet.

Report Error

View Answer Report Error Discuss

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

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

What is virtual channel?

Answer

Virtual channel is normally a connection from one source to one destination, although multicast connections are also permitted. The other name for virtual channel is virtual circuit.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2685
Q:

Speed regulation of synchronous motor is

A) 1% B) 25%
C) Zero D) 0.5%
 
Answer & Explanation Answer: C) Zero

Explanation:

speed_regulation_of_synchronous_motor1553077296.jpg image

Synchronous motor is a motor which runs at a constant speed irrespective of load attached to it. So the speed regulation of synchronous motor is ZERO.

Report Error

View Answer Report Error Discuss

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

5 2683
Q:

A VM/VSE customer wants to implement a WAS on an existing zSeries server. On which of the following operating environments would WAS best be implemented?

A) VSE B) z/VM
C) z/OS D) Linux
 
Answer & Explanation Answer: D) Linux

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2682
Q:

In Which three languages is the Rosetta Stone written?

Answer

Greek, demotic Egyptian and hieroglyphics.

Report Error

View answer Workspace Report Error Discuss

Subject: World History

0 2682
Q:

The fog that commonly occurs along the sea-coasts is of the ______ type

A) radiation B) advection
C) frontal D) convection
 
Answer & Explanation Answer: B) advection

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2681