Questions

Q:

Jalal-ud-din Muhammad Akbar was proclaimed Emperor in

A) 1556 AD B) 1557 AD
C) 1558 AD D) 1560 AD
 
Answer & Explanation Answer: A) 1556 AD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7166
Q:

Lightning heats the surrounding air to

A) 300 deg Cent B) 3000 deg Cent
C) 30000 deg Cent D) 300000 deg Cent
 
Answer & Explanation Answer: C) 30000 deg Cent

Explanation:

Lightning is extremely hot — a flash can heat the air around it to temperatures five times hotter than the sun’s surface. This heat causes surrounding air to rapidly expand and vibrate, which creates the pealing thunder we hear a short time after seeing a lightning flash.

Lightning heats the surrounding air to about 30,000 degrees Centigrades.

Report Error

View Answer Report Error Discuss

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

5 7165
Q:

What is difference between ARP and RARP?

Answer

The address resolution protocol (ARP) is used to associate the 32 bit IP address with the 48 bit physical address, used by a host or a router to find the physical address of another host on its network by sending a ARP query packet that includes the IP address of the receiver.


The reverse address resolution protocol (RARP) allows a host to discover its Internet address when it knows only its physical address

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

14 7161
Q:

Coral Reefs in India can be found in

A) Rameshwaram B) Trivandrum
C) The coast of Orissa D) Waltair
 
Answer & Explanation Answer: A) Rameshwaram

Explanation:

In India Coral Reefs can be found in Rameshwaram.

 

Coral reefs in India are one of the most ancient and dynamic ecosystems of India. The coral reefs not only provide a sanctuary to a myriad of marine life but also play a key role in protecting the coastline from erosion.

Coral reefs are diverse underwater ecosystems held together by calcium carbonate structures secreted by corals. Coral reefs are built by colonies of tiny animals found in marine water that contain few nutrients.

Report Error

View Answer Report Error Discuss

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

17 7158
Q:

Which Amendment Act introduced changes in the Preamble to the Indian Constitution?

A) the 38th Amendment Act, 1975 B) the 40th Amendment Act, 1976
C) the 42nd Amendment Act, 1976 D) the 44th Amendment Act, 1979
 
Answer & Explanation Answer: C) the 42nd Amendment Act, 1976

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

5 7156
Q:

The best eradication method for a major infestation is

A) Chemical B) Bacteria
C) Fusion D) None of the above
 
Answer & Explanation Answer: A) Chemical

Explanation:
Report Error

View Answer Report Error Discuss

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

5 7155
Q:

Write a c program for linear search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7155
Q:

 A benefit of the three-tier architecture is which of the following?

A) New modules can be built to support specific business needs B) Performance improves for compiled SQL statements
C) Results in a thinner client and database server D) All of the above.
 
Answer & Explanation Answer: A) New modules can be built to support specific business needs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 7154