Questions

Q:

Which city has been designated as the UNESCO World Book Capital 2019  ?

A) Warsaw B) Sharjah
C) Pune D) Kochi
 
Answer & Explanation Answer: B) Sharjah

Explanation:

Sharjah, the city of United Arab Emirates (UAE), has been designated as the UNESCO World Book Capital 2019 by Irina Bokova, the Director-General of UNESCO, at the Headquarters of the International Federation of Library Associations (IFLA) at La Haye. The honour is in recognition of the Emirate’s pioneering role in supporting and expanding the local and regional publishing industries, promoting reading to become an intrinsic cultural practice, as well as embracing inter-cultural, knowledge-based dialogue. Sharjah was the first emirate in UAE to establish a formal school and a library. It was also the first emirate to house many cultural institutions like the Emirates Publishers Association and the Emirates’ writers Union. Sharjah is the 19th city to become World Book Capital. It is preceded by Conakry in 2017 and Athens in 2018.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

8 4234
Q:

Rabindranath Tagore was awarded Noble Prize for his literary work named

A) Geetanjali B) Rajtarangini
C) Chokher Bali D) None of these
 
Answer & Explanation Answer: A) Geetanjali

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

2 4234
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 4234
Q:

Initiating Process Group

What are the Project Management Processes included in the Initiating  Process Group ?

Answer


    • Develop Project Charter

    • Develop Preliminary Project Scope Statement


Report Error

View answer Workspace Report Error Discuss

0 4233
Q:

Foam brightens like the dogwood now is an example of

A) a metaphor B) consonance
C) a simile D) alliteration
 
Answer & Explanation Answer: C) a simile

Explanation:

A simile is a figure of speech in which two different things are compared using like or as words.

 

Here in the given sentence, Foam brightens like the dogwood foam's brightness is compared to dogwood. Hence, it is a simile.

Report Error

View Answer Report Error Discuss

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

8 4233
Q:

Which of the following cities is the first mono rail inaugurated?

A) Delhi B) Mumbai
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Mumbai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4233
Q:

The Reserve Bank of India has taken some initiatives to prevent a US type sub-prime Crisis in India. Which of the following is/ are such initiatives?

A. Banks are adviced to set up credit counselling centres. 

B. Banks should stop giving housing loans to big borrowers (Asking for loans of  Rs.50 lakhs and above )

C. Banks should not give loans to builders and property dealers/developers

A) Only (A) B) Only (B)
C) Only (C) D) All (A), (B), (C)
 
Answer & Explanation Answer: A) Only (A)

Explanation:
Report Error

View Answer Report Error Discuss

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

0 4229
Q:

The amount of RAM storage is measured in

A) bytes B) mega bytes
C) giga bytes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

RAM storage capacity is measured in bytes, kilo bytes, mega bytes, giga bytes,...

Report Error

View Answer Report Error Discuss

2 4228