Questions

Q:

When insulin is released, it causes

A) Amount of glucose in blood decreases B) Amount of glucose in blood increases
C) Amount of bile juice increases D) Amount of bile juice decreases
 
Answer & Explanation Answer: A) Amount of glucose in blood decreases

Explanation:

We know that, when we eat a meal, any carbohydrates we've eaten are broken down into glucose and passed into the bloodstream. This rise in blood glucose causes insulin to be released from the pancreas so glucose can move inside the cells and be used. As glucose moves inside the cells, the amount of glucose in the bloodstream returns to normal and insulin release slows down.

Report Error

View Answer Report Error Discuss

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

3 2686
Q:

UDAN - 2 has how many routes?

A) 128 B) 325
C) 256 D) 110
 
Answer & Explanation Answer: B) 325

Explanation:

The Indian Government awarded 325 routes to airlines as well as helicopter operators under its regional connectivity scheme (RCS) with an emphasis on enhancing flight services to hilly and remote areas, including Kargil under the Regional air Connectivity Scheme (RCS) — Ude Desh Ka Aam Naagrik (UDAN-2).

In the UDAN - 1 it has 128 routes.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , 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:

Nucleotides are made of a pentose only.

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

Explanation:

DNA is made of nucleotides. And these Nucleotides are made of a pentose sugar deoxyribose, a phosphate, and a nitrogen-containing bases.


 


Hence, the given statement 'Nucleotides are made of a pentose only' is FALSE.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

2 2682