Questions

Q:

The nimbus formed a special feature of Mughal portraiture under

A) Shah Jahan B) Aurangzeb
C) Jahangir D) Akbar
 
Answer & Explanation Answer: C) Jahangir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 7199
Q:

DRDO full form is

A) Delhi Research and Development Organisation B) Defence Research and Deployment
C) Delhi Rail Development Organisation D) Defence Research and Development Organisation
 
Answer & Explanation Answer: D) Defence Research and Development Organisation

Explanation:

DRDO stands for The Defence Research and Development Organisation.

 

The Defence Research and Development Organisation (DRDO) is an agency of the Republic of India, charged with the military's research and development, headquartered in New Delhi, India.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

7 7197
Q:

What is Materials Requirement Planning?

Answer

A given quantity of finished goods requires a given quantity of raw materials and components to make them. Materials requirement planning systems to make them. Materials requirements planning systems are computerized tools that manage when materials must be ordered to supply production at a later date. MRP is effective when output quantities are known.Small business owners are often their own MRP systems,storing the information needed to supply prodution in their knowledge and experience. Activities such as computer tracking inventory and forecasting demand are MRP activities.

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

6 7195
Q:

The brain of any computer system is

A) CPU B) Memory
C) Control D) ALU
 
Answer & Explanation Answer: A) CPU

Explanation:

Central Processing Unit (CPU) is the brain of any computer system.

Report Error

View Answer Report Error Discuss

19 7188
Q:

Major coalfields of India are located in the river valley of

A) Damodar B) Godavari
C) Mahanadi D) Wardha
 
Answer & Explanation Answer: A) Damodar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 7183
Q:

Who has been appointed as the new economic affairs secretary in the Union Finance Ministry  ?

A) N. K. Sinha B) Tapan Ray
C) Subhash C. Garg D) Kirti Singh
 
Answer & Explanation Answer: C) Subhash C. Garg

Explanation:

Subhash C. Garg, a 1983 batch lAS officer of Rajasthan cadre, has been appointed as the new the economic affairs secretary in the Union Finance Ministry. The post fell vacant after Shaktikanta Das retired on May 31, 2017. Currently, Tapan Ray, the corporate affairs secretary, has the additional charge of the economic affairs department. Prior to this appointment, Garg was Executive Director at World Bank for Bangladesh, Bhutan, India and Sri Lanka.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

10 7178
Q:

Jalal-ud-din Muhammad Akbar was proclaimed Emperor in

A) 1556 AD B) 1557 AD
C) 1558 AD D) 1560 AD
 
Answer & Explanation Answer: A) 1556 AD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7178
Q:

Write a c program for linear search.

Answer

#include<stdio.h>
int main(){

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

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7172