Questions

Q:

Addis Ababa is the Capital city of

A) Angola B) Burundi
C) Chile D) Ethiopia
 
Answer & Explanation Answer: D) Ethiopia

Explanation:

The Capital city of Ethiopia is Addis Ababa.

 

Countries and Capital cities ::

Angola  -  Launda

Burundi  -  Bujumbura

Chile  -  Santiago

Report Error

View Answer Report Error Discuss

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

2 2288
Q:

Which aricle of the UN charterr established the International Trusteeship system

A) 78 B) 79
C) 75 D) 74
 
Answer & Explanation Answer: C) 75

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2288
Q:

The best - paid player in the world playing with Barcelona team

Answer

Lionel Messi

Report Error

View answer Workspace Report Error Discuss

Subject: Sports

2 2288
Q:

The Limitation Law, which passed by the British in 1859, addressed which one of the following issues?

A) Loan bonds would not have any legal validity B) Loan bonds signed between money lender and Ryots would have validity only for three years
C) Loan bonds could not be executed by money lenders D) Loan bonds would have validity for ten years
 
Answer & Explanation Answer: B) Loan bonds signed between money lender and Ryots would have validity only for three years

Explanation:

The ryots came to see the moneylender as devious and deceitful. They complained of moneylenders manipulating laws and forging accounts. In 1859 the British passed a Limitation Law that stated that the loan bonds signed between moneylenders and ryots would have validity for only three years. This law was meant to check the accumulation of interest over time. The moneylender, however, turned the law around, forcing the ryot to sign a new bond every three years.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

0 2287
Q:

Tides in the sea are caused by 

A) Effect of Sun B) Effect of Moon
C) Combined effect of Moon and Sun D) Gravitational Force of Earth and Sun
 
Answer & Explanation Answer: C) Combined effect of Moon and Sun

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2287
Q:

Write a program for matrix multiplication in c

Answer

#include <stdio.h>


int main() {


  int a[5][5], b[5][5], c[5][5], i, j, k, sum = 0, m, n, o, p;


  printf( "\nEnter the row and column of first matrix" );


  scanf( "%d %d", &m, &n );


  printf( "\nEnter the row and column of second matrix" );


  scanf( "%d %d", &o, &p );


  if(n!=o) {


      printf( "Matrix mutiplication is not possible" );


      printf( "\nColumn of first matrix must be same as row of second matrix" );


  }


  else {


      printf( "\nEnter the First matrix" );


      for( i=0; i<m; i++ )


      for( j=0; j<n; j++ )


           scanf( "%d", &a[i][j] );


      printf( "\nEnter the Second matrix" );


      for( i=0; i<o; i++ )


      for( j=0; j<p; j++ )


           scanf( "%d", &b[i][j] );


      printf( "\nThe First matrix is\n" );


      for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<n; j++ ) {


           printf( "%d\t", a[i][j] );


      }


      }


      printf( "\nThe Second matrix is\n" );


      for( i=0; i<o; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", b[i][j] );


      }       


      }


      for( i=0; i<m; i++ )


      for( j=0; j<p;j++ )


           c[i][j] = 0;


      for( i=0; i<m; i++ ) { //row of first matrix


      for( j=0; j<p; j++ )  {  //column of second matrix


           sum = 0;


           for( k=0; k<n; k++ )


               sum = sum + a[i][k]*b[k][j];


           c[i][j] = sum;


      }


      }


  }


  printf( "\nThe multiplication of two matrix is\n" );


  for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", c[i][j] );


      }


  }


  return 0;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2287
Q:

Each degree of latitude is equals to

A) 112 kms B) 111 kms
C) 110 kms D) 101 kms
 
Answer & Explanation Answer: B) 111 kms

Explanation:

The each degree of latitude is equals to 111 kms approx (69 miles). As Earth is lightly ellipsoid in shape it changes at equator and poles from 110.5 kms to 111.7 kms respectively.

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

14 2287
Q:

What is SLIP

Answer

It is a very simple protocol used for transmission of IP datagrams across a serial line.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2287