Questions

Q:

Project Life Cycle - Characteristic of Project Phases

What is a deliverable?

Answer

A deliverable is a measurable, verifiable work product such as a specification, feasibility study report, detailed design document, or working prototype.

Report Error

View answer Workspace Report Error Discuss

0 2693
Q:

In 8085 which is called as High order / Low order Rigister?

Answer

Flag is called as Low order rigister & Accumulator is called as High order Rigister.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2693
Q:

Controlling marketing activities :

What is annual plan control? Why is it needed in an organisation?

Answer

The annual plan control is one of the four types of marketing control system. Annual plan control is essential in order to determine whether all the marketing efforts undertaken by the organisation has been really worthwhile or not. It aims to achieve sales volume,profits and all those objectives which have been set up in the beginning of the year. In an organisation,the top management and middle level management are responsible for the annual plan control. They have to keep a check on the activities undertaken to implement the plans.


 


 

Report Error

View answer Workspace Report Error Discuss

0 2693
Q:

Answer the following Program

#define CHARSIZE 8

#define MASK(y) (1 << y % CHARSIZE)

#define BITSLOT (y) (y / CHARSIZE)

#define SET(x,y) ( x[BITSLOT(y)] = MASK(y) )

#define TEST(x,y) ( x[BITSLOT(y)] & MASK(y) )

#define NUMSLOTS(n) ((n + CHARSIZE - 1) / CHARSIZE)

 

Give the above macros how would you

1. declare an array arr of 50 bits

2. put the 20th bit on

3. test whether the 40th bit is on or off

Answer

1. char arr[NUMSLOTS(50)];


2. SET (arr, 20);


3. if (TEST (arr, 40))

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2692
Q:

Is vitamin B12 fat soluble?

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

Explanation:

Vitamin B12 is the only water-soluble vitamin that can be stored in the liver for many years. There are 9 water soluble vitamins.

Report Error

View Answer Workspace Report Error Discuss

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

1 2692
Q:

Phage typing is based on the fact that

A) viruses cause disease B) bacteria and viruses are related
C) bacteria are destroyed by viruses D) bacterial viruses attack specific cells
 
Answer & Explanation Answer: D) bacterial viruses attack specific cells

Explanation:

Phage typing is based on the fact that bacterial viruses attack specific cells. Phage typing is a method used for detecting single strains of bacteria. It is used to trace the source of outbreaks of infections. 

Report Error

View Answer Report Error Discuss

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

1 2691
Q:

An ecosystem consists of

A) all the plants and animals of an area B) producers, consumers, and decomposers in a particular locality
C) a living community and its environment D) carnivores and herbivores of an area
 
Answer & Explanation Answer: C) a living community and its environment

Explanation:

A living community and its environment is what an ecosystem is.

An_ecosystem_consists_of1535781515.jpg image

Report Error

View Answer Report Error Discuss

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

2 2689
Q:

What is Autosys?

Answer

AutoSys is an automated job control system for scheduling, monitoring, and reporting. These jobs can reside on any AutoSys-configured machine that is attached to a network.


 


However, in real business, you need to fire jobs not just based on scheduled time, but also based on events (like an arrival of a file), and, based on the success or failure of other jobs. Autosys is a total job scheduling solution that allows you to define these events, dependencies, time schedules, alerts, etc, making it a complete data center automation tool.

Report Error

View answer Workspace Report Error Discuss

5 2689