Questions

Q:

Which one of the following crops is not cultivated in Karewas, the lacustrine deposit's of sand, clay, loam, silt and boulders?

 

A) Saffron B) Almond
C) Walnut D) Ling nut
 
Answer & Explanation Answer: D) Ling nut

Explanation:

Karewa sediments are treasures of many human civilizations and habitations. In fact, the agriculture of the valley dominantly survives and sustains on Karewa soils. The world famous saffron from Pampore and apples from Shopian are best examples.The famous almond orchids are best grown in the soils of karewas.

The karewas are mainly devoted to the cultivation of saffron, almond, walnut, apple and orchards.Ling nuts (singharas) grow throughout the East of India: West Bengal, Jharkhand, and Bihar are examples of such regions.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

0 2083
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 2083
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2083
Q:

Which country shares the longest border with China?

A) India B) Russia
C) Mongolia D) Kazakhstan
 
Answer & Explanation Answer: C) Mongolia

Explanation:

China shares land borders with 14 different countries, the longest being with Mongolia followed by Russia and then India.

Report Error

View Answer Report Error Discuss

2 2082
Q:

How many Filmfare awards has Shahrukh Khan won?

A) 5 B) 10
C) 15 D) 20
 
Answer & Explanation Answer: C) 15

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

0 2082
Q:

Project Cost Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Cost Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets 

  • Project scope statement

  • Work breakdown structure

  • WBS dictionary 

  • Project management plan


             - Schedule management plan


             - Staffing management plan


             - Risk register


II. Tools and Techniques



  • Analogous estimating

  • Determine resource cost rates

  • Bottom-up estimating

  • Parametric estimating

  • Project management software

  • Vendor bid analysis

  • Reserve analysis

  • Cost of quality


III. Outputs



  • Activity cost estimates 

  • Activity cost estimate supporting detail 

  • Requested changes

  • Cost management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2082
Q:

Who has become the first-ever captain to win 100 matches in IPL history?

A) Rohit Sharma B) Ajinkya Rahane
C) MS Dhoni D) Dinesh Karthik
 
Answer & Explanation Answer: C) MS Dhoni

Explanation:

MS Dhoni, the skipper of CSK - Chennai Super Kings team in IPL Indian Premier League has become the first-ever captain to win 100 matches in IPL history.

Report Error

View Answer Report Error Discuss

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

1 2082
Q:

The operating system creates _ from the physical computer.

A) Virtual device B) Virtual space
C) Virtual computer D) All of the above
 
Answer & Explanation Answer: C) Virtual computer

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2082