Questions

Q:

Agronomy is a branch of agriculture that deals with

A) Study of crops B) Study of soil
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Agronomy is a branch of agriculture that deals with the study of crops and the soils in which they are produced.

Report Error

View Answer Report Error Discuss

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

2 2074
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

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

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2073
Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Create WBS ?

Answer

I. Inputs



  • Organizational process assets

  • Project scope statement

  • Project scope management  plan

  • Approved Change requests


II. Tools and Techniques



  • Work breakdown structure templates

  • Decomposition


III. Outputs



  • Project scope statement(updates)

  • Work breakdown structure

  • WBS dictionary

  • Scope baseline

  • Project scope management plan(updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2073
Q:

Where's MBR located on the disk?

Answer

Main Boot Record is located is sector 0, track 0, head 0, cylinder 0 of the primary active partition.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2073
Q:

Which state launched employment scheme "Yuva Swabhiman Yojana" for urban youth?

A) Madhya Pradesh B) Telangana
C) West Bengal D) Uttar Pradesh
 
Answer & Explanation Answer: A) Madhya Pradesh

Explanation:

Madhya Pradesh state government has launched employment scheme "Yuva Swabhiman Yojana" for urban youth.

Report Error

View Answer Report Error Discuss

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

1 2073
Q:

Eight States have achieved more than 99% household electrification prior to the launch of 'Saubhagya Scheme'. Which one of the following is not among them?

A) Kerala B) Punjab
C) Himachal Pradesh D) Madhya Pradesh
 
Answer & Explanation Answer: D) Madhya Pradesh

Explanation:

Saubhagya –‘Pradhan Mantri Sahaj Bijli Har Ghar Yojana’ was launched in September2017 with the aim to provide access to electricity to all remaining households in the country.Eight States which have already achieved more than 99 percent household electrification prior to launch of Saubhagya scheme are ineligible for participation under the award scheme. These eight states are Andhra Pradesh, Gujarat, Goa, Haryana, Himachal Pradesh, Kerala, Punjab and Tamil Nadu.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2072
Q:

What's the maximum hard drive size for FAT16-based Windows system?

Answer

Maximum hard drive size for FAT16-based windows system is 2GB.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2072
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2072