Questions

Q:

In Microsoft Word, _______ provides options to switch between Normal, Web Layout, Print Layout, Outline and Reading Views.

 

A) Standard tool bar B) View Buttons
C) Formatting tool bar D) Tab stop
 
Answer & Explanation Answer: B) View Buttons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

46 4176
Q:

Which sentence contains an interjection?

A) Hey, where did I park my car! B) Well, that’s a relief.
C) Oh, now I remember where i put my wallet. D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Yes, all the above given sentences have an interjection.

 

1. Hey ! is an interjection in the sentence , Hey!, where did I park my car? 

 

2. Well is an interjection in the sentence, Well!, that's a relief.

 

3. Oh! is an interjection in the sentence , Oh!, now I remember where i put my wallet.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

1 4176
Q:

Who was the  Indian cricketer honored with CK Naidu Lifetime Achievement  Award in 2014 ?

A) Kapil Dev B) Sachin Tendulkar
C) Rahul Dravid D) M S Dhoni
 
Answer & Explanation Answer: A) Kapil Dev

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 4175
Q:

World Population Day is observed on ____ ?

A) 9 July B) 11 July
C) 15 July D) 4 July
 
Answer & Explanation Answer: C) 15 July

Explanation:

World Population day is an annual event, observed on July 11 every year, which seeks to raise awareness of global population issues. 

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

6 4174
Q:

A research team of 6 people is to be formed from 10 chemists,5 politicians, 8 economists and 15 biologists.How many teams have atleast 5 chemists?

A) 7350 B) 6400
C) 6379 D) 7266
 
Answer & Explanation Answer: D) 7266

Explanation:

10C5 x 28C1 x 10C6 = 7266

Report Error

View Answer Report Error Discuss

0 4174
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 4172
Q:

Who has become the first woman Chief Justice of Delhi High Court?

A) Justice R. Banumathi B) Justice K.K.Usha
C) Justice G.Rohini D) Justice T. Meena Kumari
 
Answer & Explanation Answer: C) Justice G.Rohini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4170
Q:

In 1955, Imperial Bank of India, a leadimg commercial bank of that time was nationalised and renamed as:

A) Central Bank of India B) Bank of India
C) Indian Bank D) State Bank of India
 
Answer & Explanation Answer: D) State Bank of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

16 4169