Questions

Q:

What is BGP ?

Answer

It is a protocol used to advertise the set of networks that can be reached with in an autonomous system. BGP enables this information to be shared with the autonomous system. 

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2308
Q:

Which phase change is an example of an exothermic process?

A) Liquid to Solid B) Gas to Solid
C) Gas to Liquid D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Processes that require or give off heat will be limited to changes of state, known as phase changes, and changes in chemical constitution, or chemical reactions. Changes of state involve a solid melting, a liquid freezing, a liquid boiling or a gas condensing.

 

An exothermic process is one that gives off heat, which is transferred to the surroundings. An endothermic process is a reaction which heat has to be supplied to the system from the surroundings.

 

Here in all the given options, heat is taken away from them to change there phase. 

Liquid to Solid --- Freezing

Gas to Liquid --- Condensation

Gas to Solid --- Deposition 

are all examples of exothermic processes.

 

Report Error

View Answer Report Error Discuss

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

6 2308
Q:

In which of the following branches of Knowledge outstandin contribution for the benefits of mankind is not recognised with a Nobel Prize

A) Madicine B) Chemistry
C) Engineering D) Economics
 
Answer & Explanation Answer: C) Engineering

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 2308
Q:

Mallika Sarabhi is associated with which of the  following fields

A) Social Service B) Classical Music
C) Classical Dance D) Sports
 
Answer & Explanation Answer: C) Classical Dance

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 2307
Q:

Would the following program compile?

main()

{

    int a = 10, *j;

    void *k;

    J = k = &a;

    J++;

    k++;

   printf ("\n%u %u", j, k);

}

Answer

An error would be reported in the statement k++ since arithmetic on void pointers is not permitted unless the void pointer is appropriately typecasted.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2307
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 2306
Q:

Who among the following has directed the film 'Sardar'

A) Tapan Sinha B) Shyam Benegal
C) Ketan Mehta D) Buddhadeb Das Gupta
 
Answer & Explanation Answer: C) Ketan Mehta

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

0 2305
Q:

The Solar System was discoverd by

A) Galleleo B) Finsen
C) Copernicus D) None of these
 
Answer & Explanation Answer: C) Copernicus

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

0 2305