what is the hexidecimal number of 4100?

Answer Posted / tpt

4001 = 1*2^11 + 1*2^10 + 1*2^9 + 1*2^8 + 1*2^7 + 0*2^6 +
1*2^5 + 0*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 1*2^0

binary:
1111 1010 0001

hex/binary
0 0
1 1
2 10
3 11
4 100
5 101
6 110
7 111
8 1000
9 1001
A 1010
B 1011
C 1100
D 1101
E 1110
F 1111

so the hexadecimal format would be:
FA1

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70

2134


What is the function of volatile in c language?

668


Explain what is a program flowchart and explain how does it help in writing a program?

650


all c language question

1876


Which is better malloc or calloc?

654






What does 1f stand for?

614


how to print the character with maximum occurence and print that number of occurence too in a string given ?

2036


If you know then define #pragma?

676


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

1802


what are non standard function in c

1438


ATM machine and railway reservation class/object diagram

4806


Is main a keyword in c?

632


What is sizeof c?

609


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1329


What are the __date__ and __time__ preprocessor commands?

574