Questions

Q:

Which of the following is a physical property of water?

A) Tasteless B) odorless
C) conducts electricity D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2102
Q:

The Cabinet Committee on Economic Affairs (CCEA) has approved expansion of "Beti Bachao Beti Padhao" yojana for a pan India coverage from 2017-2018 to _____.

 

A) 2018-2019 B)  2019-2020
C) 2020-2021 D) 2021-2022
 
Answer & Explanation Answer: B)  2019-2020

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2102
Q:

A duty is a task required of which citizens

A) citizens elected to a party B) a minority of citizens
C) a majority of citizens D) all citizens
 
Answer & Explanation Answer: D) all citizens

Explanation:

A duty is a task that is to be obeyed, followed and respected by all the citizens of the country or state.

Report Error

View Answer Report Error Discuss

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

2 2102
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2102
Q:

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2102
Q:

The Shiites believed that the Umayyad

A) should pray more B) should not be in power
C) got special treatment D) should rule
 
Answer & Explanation Answer: B) should not be in power

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2102
Q:

Which Governor General abolished the 'Sati System' in India?

A) Lord Canning B) Lord Ripon
C) Lord Wiliam Bentinck D) Lord Dalhousie
 
Answer & Explanation Answer: C) Lord Wiliam Bentinck

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2102
Q:

Project Management Process Groups

What are the Project Management Process Groups?

Answer

This section identifies and describes the five Project Management Process Groups required for any project. These five process Groups have clear dependencies and are performed in the same sequence on each project.


The five Process Groups are :


Initiating  Process Group - Defines and authorizes the project or a project phase


Planning Process Group - Defines and refines objectives, and plans the course of action required to attain the objectives and scope that the project was undertaken to address.


Executing Process Group - Integrates people and other resources to carry out the project management plan for the project


Monitoring and Controlling process Group - Regularly measures and monitors progress to identify variances from the project management plan so that corrective action can be taken when necessary to meet project objectives.


Closing Process Group - Formalizes acceptance of the product, service or result and brings the project or a project phase to an orderly end.

Report Error

View answer Workspace Report Error Discuss

0 2101