Questions

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 2714
Q:

Indian state where Uniform Civil Code is applied?

A) Uttarakhand B) Uttar Pradesh
C) Goa D) Delhi
 
Answer & Explanation Answer: C) Goa

Explanation:

Uniform civil code is the ongoing point of debate within Indian mandate to replace personal laws based on the scriptures and customs of each major religious community in India with a common set of rules governing every citizen.

 

Goa is the only state in INdia where Uniform Civil Code is applied. Laws are equal to all religion. Polygamy and triple talaq are illegal. 

Report Error

View Answer Report Error Discuss

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

4 2713
Q:

The flow of thermal energy is called

A) Heat B) Current
C) Voltage D) Potential
 
Answer & Explanation Answer: A) Heat

Explanation:

The flow of thermal energy due to differences in their temperatures is called Heat.

The_flow_of_thermal_energy_is_called1558527324.png image

Report Error

View Answer Report Error Discuss

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

2 2712
Q:

What does the central nervous system consists of?

A) Brain B) Spinal cord
C) Nerves D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

The central nervous system CNS is responsible for integrating sensory information and responding accordingly.

It consists of two main components::

 1. The brain

 2. The spinal cord


The brain is the center of our thoughts, the interpreter of our external environment, and the origin of control over body movement. The brain can be divided into four main lobes: temporal, parietal, occipital and frontal.

 

The spinal cord serves as a conduit for signals between the brain and the rest of the body.

Report Error

View Answer Report Error Discuss

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

3 2711
Q:

What is the difference between a Local and a Global temporary table?

Answer

Local :


Only available to the current Db connection for current user and are cleared when connection is closed.


Multiple users can’t share a local temporary table.


 


Global:


Available to any connection once created. They are cleared when the last connection is closed.


Can be shared by multiple user sessions

Report Error

View answer Workspace Report Error Discuss

1 2710
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 2710
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 2710
Q:

What are the Various Register in 8085?

Answer

Accumulator register, Temporary register, Instruction register, Stack Pointer, Program Counter are the various registers in 8085

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2710