Questions

Q:

What will be output of following c code?

void main()
{
struct india
{
char c;
float d;
};
struct world
{
int a[3];
char b;
struct india orissa;
};
struct world st ={{1,2,3},'P','q',1.4};
clrscr();
printf("%dt%ct%ct%f",st.a[1],st.b,st.orissa.c,st.orissa.d);
getch();
}

Answer

Output: 2 p q 1.400000

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2874
Q:

Nucleoli are present during

A) prophase B) anaphase
C) interphase D) prometaphase
 
Answer & Explanation Answer: C) interphase

Explanation:

Nucleoli are present during Interphase.

Chromosomes become visible during Prophase.

Centromeres divide and sister chromatids become full-fledged chromosomes during Anaphase.

Spindle fibers attach to kinetochores during Prometaphase.

 

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

6 2874
Q:

Lime is sometimes applied to soil in order to

A) increase the acidity of the soil B) make the soil more porous
C) restore nitrates to the soil D) increase the alkalinity of the soil
 
Answer & Explanation Answer: D) increase the alkalinity of the soil

Explanation:

Lime is sometimes applied to soil in order to increase the acidity of the soil.

Report Error

View Answer Report Error Discuss

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

0 2874
Q:

Which is the least populous state in India as per Census2011? 

A) Goa B) Mizoram
C) Bihar D) Sikkim
 
Answer & Explanation Answer: D) Sikkim

Explanation:

As per Census2011, Sikkim state is the least populous state in India with 610543 population.

Report Error

View Answer Report Error Discuss

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

11 2873
Q:

The right ventricle transports oxygenated blood to the lungs.

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

Explanation:

The right ventricle transports deoxygenated blood to the lungs, where the oxygenation takes place.


Hence, the given statement is FALSE.

Report Error

View Answer Workspace Report Error Discuss

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

2 2873
Q:

C.K. Naidu Cup is associated with which of the following sporting events?

A) Tennis B) Cricket
C) Hockey D) Golf
 
Answer & Explanation Answer: B) Cricket

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

0 2873
Q:

The current infection control guidelines from the CDC are called

Answer

The current infection control guidelines from the CDC (The Centers for Disease Control and Prevention) are called Standard or Universal Precautions.

Report Error

View answer Workspace Report Error Discuss

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

2 2872
Q:

Which datatype in c language has least storage?

A) char B) double
C) int D) float
 
Answer & Explanation Answer: A) char

Explanation:

Data types are used for declaration of variables in computer programming languages. These determine the type and size of data associated with variables.

Data types examples - int, char, float, etc...

 

char datatype is the least storage data type with 1 byte.

int with 2 or 4 bytes.

float with 4 bytes

double with 8 bytes.

datatype_in_c_language_has_least_storage1562156854.png image

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Database Administration , IT Trainer

2 2871