Questions

Q:

Pop music appeals to which type of audience?

A) A broad audience B) North American-born individuals only
C) An old audience D) A niche audience
 
Answer & Explanation Answer: A) A broad audience

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2067
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 2067
Q:

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2066
Q:

Define what is Six Sigma?

Answer



Six sigma is a data-driven technique and way for eliminating defects in any progress from product to service and from manufacturing to transactional.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

5 2066
Q:

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2066
Q:

Explain in your words about Channel of communication, Skipper and Sundry Services.

Answer

Channel of communication : It is a floe of communication within a department.


Skipper : This term is used for the status of a room, which indicates that a guest has left the hotel room without arranging to settle his or her account. 


Sundry Services :These are the extra services, which are provided to the guests. For e.g. message, handling of guests.

Report Error

View answer Workspace Report Error Discuss

Subject: Hospitality

6 2065
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 2065
Q:

What's the theme of Global Aviation Summit 2019?

A) Health for all B) Journey for all
C) Ticket for all D) Flying for all
 
Answer & Explanation Answer: D) Flying for all

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2065