Questions

Q:

What will be output of following c code?

void main()
{
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;

}bit;
char *p;
struct bitfield *ptr,bit1={1,3,3};
p=&bit1;
p++;
clrscr();
printf("%d",*p);
getch();
}

Answer

Output: 12

Explanation:
Binary value of a=1 is 00001 (in 5 bit)
Binary value of b=3 is 00011 (in 5 bit)
Binary value of c=3 is 000011 (in 6 bit)

In memory it is represented as:
Let address of bit1 is 500 which initialize to char pointer p. Since can is one byte data type so p++ will be 501. *p means content of memory location 501 which is (00001100) and its binary equivalent is 12. Hence output is 12.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3479
Q:

The term 'Progeria' refers to which of the following ?

A) A natural satellite of planet jupiter B) A widely used Tuberculosis(TB) drug
C) A genetic disorder with symptoms of pre-mature aging D) None
 
Answer & Explanation Answer: C) A genetic disorder with symptoms of pre-mature aging

Explanation:

Progeria is a rare genetic disordr which involves symptoms resembloing aspects of aging, manifested at a very early age.
The term is often used in reference to Hutchinson - gilford progeria syndrome(HGPS).

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

1 3478
Q:

Government regulation is intended to

A) discourage producers from taking harmful actions. B) encourage producers to follow the Constitution.
C) discourage producers from making a profit. D) encourage producers to take negative actions.
 
Answer & Explanation Answer: A) discourage producers from taking harmful actions.

Explanation:

Government regulation protects constitutional rights, safety, and fairness.

 

Hence, Government regulation is intended to discourage producers from taking harmful actions.

Report Error

View Answer Report Error Discuss

3 3478
Q:

Iodex, a pain relief balm, has the smell of __________ .

A) Methyl salicylate B) Ethyl salicylate
C) Propyl salicylate D) Butyl salicylate
 
Answer & Explanation Answer: A) Methyl salicylate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

3 3477
Q:

The Number of officially recognised languages in india is

A) 12 B) 15
C) 18 D) 21
 
Answer & Explanation Answer: C) 18

Explanation:

India has 18 officially recognised languages - Konkani, Manipur and Nepali were added to the official list of 15 in 1992. The other 15 languages are Assamese, Bengali, Gujarati, Hindi, Kannada, Kashmiri, Malayalam, Marathi, Oriya, Punjabi, Sanskrit , Tamil, Telugu , Urdu and sindhi.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

4 3477
Q:

The project life cycle can be broken into five phases that tend to overlap with each other frm one phase to another;however ,the control phase does not overlap with a specific phase. why?

A) Change control management is seperate from the other phases B) Change control management has a plan that can be usede throughout the initiation, planning, execution, and closeout of the project
C) Because the project sponsor is responsible for change control management , the project manager is not involved with that phase of the project D) Change control extends throughout the entire project from initiation to closeout
 
Answer & Explanation Answer: D) Change control extends throughout the entire project from initiation to closeout

Explanation:

Change control management is utilized from the begining to the end of the project in order to keep it focused with an emphasis on the time and budget. Answer A is incorrect because change control management is not seperate from the other phases. Answer B is incorrect because the control plan must be throughout the other phases of a project. Its usage is not optional, and consistent utilization is imperative to managing scope creep and other scope expansions. Answer C is incorrect because the project sponsors is generally not responsible for the change control documentation, although it should be involved in the buy-in and approval process.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 3477
Q:

Who is the First Indian to win a medal in badminton at the Olympics ?

Answer

Saina Nehwal

Report Error

View answer Workspace Report Error Discuss

16 3476
Q:

Name the India's highest award which is given to a civilian

A) Bharat Ratna B) Param Vir Chakra
C) National Film Award D) Jananpeth Award
 
Answer & Explanation Answer: A) Bharat Ratna

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

2 3475