Questions

Q:

Which statement describes nuclear binding energy?

A) It is the energy that is required to overcome mass defect. B) It is the result of converting mass to energy.
C) It is the energy that is required to bind protons and neutrons together in a nucleus. D) None of the above
 
Answer & Explanation Answer: A) It is the energy that is required to overcome mass defect.

Explanation:

Nuclear binding energy is the minimum energy that would be required to disassemble the nucleus of an atom into its component parts. These component parts are neutrons and protons, which are collectively called nucleons.

Report Error

View Answer Report Error Discuss

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

0 2290
Q:

Project Management - Introduction

What is Portfolio Management?

Answer

A Portfolio is a collection of projects or programs and other work that are grouped together to facilitate effective management of that work to meet strategic business objectives.

Report Error

View answer Workspace Report Error Discuss

0 2289
Q:

What is the study of flags called

A) Vexillology B) Vexillography
C) Vexology D) None of the above
 
Answer & Explanation Answer: A) Vexillology

Explanation:

The study of flags is called Vexillology and the art of flag design is called as Vexillography. The man who studies flags is called as Vexillologist.

Report Error

View Answer Report Error Discuss

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

3 2289
Q:

All bones stop growing by the end of adolescence.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement "All bones stop growing by the end of adolescence" is a FALSE statement.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2288
Q:

Exercise improves memory and learning.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Exercise can boost your memory and thinking skills by improvising alertness, attention and motivation.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2287
Q:

The playback singer who is certified as the 'Most Recorded Artist' in the world (2009) by the World Records Academy is ________

Answer

Asha Bhosle . She  is the sister of Latha Mangeshkar

Report Error

View answer Workspace Report Error Discuss

0 2287
Q:

Point out the error, ifany, in the followingb code?

typedef struct

{

     int data;

     NODEPTR link;

} *NODEPTR;

 

Answer

A typedef defines a new name for a type, and in simpler cases like the one shown below you can define a new structure type and a typedef for it at the same time.


typedef struct


{


    char name[20];


    int age;


} emp;


However, in the structure defined in this question, there is an error because a typedef declaration cannot be used until it is defined. In the given code fragment the typedef declaration is not yet defined at he point where the link field is declared.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2287
Q:

What are the different job scheduling in operating systems?

Answer

Scheduling is the activity of the deciding when process will receive the resources they request.


FCS ---> FCSFS stands for First Come First Served. In FCFS the job that has been waiting the longest is served next.


Round Robin Scheduling--->Round Robin scheduling is a scheduling method where each process gets a small quantity of time to run and then it is preempted and the next process gets to run. This is called time-sharing and gives the effect of all the processes running at the same time


Shortest Job First ---> The Shortest job First scheduling algorithm is a nonpreemptive scheduling algorithm that chooses the job that will execute the shortest amount of time.


Priority Scheduling--->Priority scheduling is a scheduling method where at all times the highest priority process is assigned the resource.

Report Error

View answer Workspace Report Error Discuss

0 2286