Questions

Q:

One light year is approximately equal to

A) 10^12 mts B) 10^16 mts
C) 10^11 mts D) 10^13 mts
 
Answer & Explanation Answer: B) 10^16 mts

Explanation:

Light year is the unit of to express astronomical distances, that light can travel in one year. Light moves at a velocity of about 300,000 kilometers (km) each second. So in one year, it can travel about 10 trillion km. More precisely, one light-year is equal to 9,500,000,000,000 kilometers.

 

Approximately, 1 light year = 10^16 mts.

Report Error

View Answer Report Error Discuss

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

4 4211
Q:

Who will be the chief guest of the opening ceremony of United Nation Vesak Day celebration to be held at Colombo, Sri Lanka between 12 May and 14 May ?

A) Bidhya Devi Bhandari B) Sheikh Hasina
C) Wijeyadasa Rajapakshe D) Narendra Modi
 
Answer & Explanation Answer: D) Narendra Modi

Explanation:

For the first time in Sri Lanka, the United Nation Vesak Day celebration will be held in Colombo and Kandy from May 12 to 14. Indian Prime Minister Narendra Modi will be the chief guest of the opening ceremony which will be held at BMICH in Colombo while Nepali President Bidhya Devi Bhandari will attend for the closing ceremony which is scheduled to be held at the Sri Dalada Maligawa premises in Kandy.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 4211
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

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

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4210
Q:

Which of the following is the regulator of the credit rating agencies in india?

A) RBI B) SBI
C) SIDBI D) SEBI
 
Answer & Explanation Answer: D) SEBI

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

4 4208
Q:

Grand Central Terminal Park Avenue is the world's

A) smallest railway station B) largest railway station
C) longest railway station D) None of above
 
Answer & Explanation Answer: B) largest railway station

Explanation:

Grand Central Terminal also referred to as Grand Central Station or Grand Central is the world’s largest railway station in terms of platforms in New York City with 44 platforms covering 48 acres.

Report Error

View Answer Report Error Discuss

4 4206
Q:

...................was conferred Sahitya Akademi Award for his poetry book Khara Zaran

A) Mr. Chinu Modi B) Robin Sharma
C) Gunvant Shah D) Narendra kohli
 
Answer & Explanation Answer: A) Mr. Chinu Modi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4206
Q:

What is at the end of a rainbow?

Answer

The logical answer for a puzzle is that the letter 'W'.


 


A rainbow is a spectrum of light that appears in the sky when sunlight is refracted through raindrops or other drops of moisture in the Earth's atmosphere. They have inspired much popular folklore, including the belief that a leprechaun can be found with a pot of gold at the end of a rainbow.

Report Error

View answer Workspace Report Error Discuss

3 4205
Q:

Who is named as 'Captain of the year' in the 10th annual ESPNcricinfo Awards ?

A) Quinton de Kock B) Hayley Williams
C) Ben Stokes D) Virat Kohli
 
Answer & Explanation Answer: D) Virat Kohli

Explanation:

Indian international cricketer Virat Kohli has named as the 'Captain of the Year' at the 10th annual ESPNcricinfo Awards. Kohli led India to nine wins out of 12 Tests in the year 2016.

♦ The ESPNcricinfo awards honour the best batting and bowling performances across the international formats of the game in the preceding calendar year.
♦ This year ESPNcricinfo introduced awards for women’s cricket across all three international formats.

Report Error

View Answer Report Error Discuss

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

10 4204