what is the hexidecimal number of 4100?

Answer Posted / oleg

We know that 4096=0x1000, and we just need to add
4100-4096=4 to 0x1000.
So 0x1000 + 4 = 0x1004.

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How macro execution is faster than function ?

668


What is the difference between typedef struct and struct?

602


Tell me what is null pointer in c?

615


Explain the properties of union.

611


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7410






Why c is called object oriented language?

592


largest Of three Number using without if condition?

1009


What is dynamic dispatch in c++?

559


What is the difference between call by value and call by reference in c?

621


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

3692


Why doesnt this code work?

618


What do you mean by dynamic memory allocation in c? What functions are used?

657


What is difference between union All statement and Union?

628


What are the types of pointers in c?

531


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1519