Ask a Question

1.what is range of an integer stored in 2 bytes of memory ? 2. what r the basic data types used in C ? 3.what is automatic typed conversion ? 4.why conditional operator known as ternary operator ? 5.write a c program to find the sum of 2 matrices ? 6.which operator is highest polarity ? option r (a.++ b.% c.+ d./) 7. 32 bit microprocessor has a word length equal to (a.2 bytes b.1 bytes c. 4 bytes d.8 bytes) please send the answer it


subhadip

on 2011-03-07 10:30:00  

2. int, char, float,long,long int, double, byte,sort etc are the basic data types . 3. it is used in java . basically known as type casting . 4. because in conditional operator ? is used to tally between two no\'s.like (a>b)?a:b; 6.% has the highest priority. 7. 8 bytes

Arijit

on 2011-03-07 10:30:00  

7.A byte is 8 bits. 4 bytes * 8 bits = 32 bits Word on 32 bit == 4 bytes.

Arijit

on 2011-03-07 10:30:00  

6. a.++ has highest priority..

Arijit

on 2011-03-07 10:30:00  

An integer will occupy 2 bytes of memory (which means 16 bits).