Questions

Q:

Which is the national game of pakistan ?

A) Cricket B) Kabaddi
C) Archery D) Hockey
 
Answer & Explanation Answer: D) Hockey

Explanation:

hockey

Report Error

View Answer Report Error Discuss

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

0 2682
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 2682
Q:

As the object covers equal distances in equal intervals of time, it is said to be in ____________ motion.

A) uniform B) linear
C) translational D) equilibrium
 
Answer & Explanation Answer: A) uniform

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams

13 2682
Q:

What organelle is responsible for photosynthesis?

A) mitochondria B) Cytoplasm
C) Chloroplasts D) Ribosomes
 
Answer & Explanation Answer: C) Chloroplasts

Explanation:

Chloroplasts are organelles in plant and bacteria cells that contain the chlorophyll is responsible for photosynthesis.

Report Error

View Answer Report Error Discuss

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

7 2681
Q:

Which among the following type of soil has the largest area covered in India?

A) Laterite B) Alluvial
C) Black D) Red
 
Answer & Explanation Answer: B) Alluvial

Explanation:

Alluvial type of soil has the largest area covered in India. Alluvial soils are fine-grained fertile soil deposited by water flowing over flood plains or in river beds. Most of the soil is Sandy and clayey soils are not uncommon.

Report Error

View Answer Report Error Discuss

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

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

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2681
Q:

Which statement describes nuclear binding energy?

A) It is the energy that is required to overcome mass defect. B) It is the result of converting mass to energy.
C) It is the energy that is required to bind protons and neutrons together in a nucleus. D) None of the above
 
Answer & Explanation Answer: A) It is the energy that is required to overcome mass defect.

Explanation:

Nuclear binding energy is the minimum energy that would be required to disassemble the nucleus of an atom into its component parts. These component parts are neutrons and protons, which are collectively called nucleons.

Report Error

View Answer Report Error Discuss

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

0 2680