answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the smallest number that can be represented in sign and magnitude integer format?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A NIC's physical address is a 48-bit address represented in what format?

It's represented in HEX format.


What is the format of 2 4 6 8 10 30?

Integer format.


What is the format specifier of short integer?

%hd


Which scanner file is the smallest?

A file compressed in the JPG file format is usually the smallest, but it depends on the contents of the picture as to which is the best format.


In which form data is represented?

That is called the format of the data.


What are Communications signals represented in a binary format?

Digital


What is the format of the integer when held in the PC?

There is no single format. Different architectures and platforms store data in different ways. An integer's representation depends on its length (in bytes), the byte-order (little-endian or big-endian) and whether they are signed or unsigned. If signed, they may be represented using either ones-complement or (more commonly) twos-complement. Most programming languages provide several integer types, however the actual representation of each of these types is machine-dependent and, therefore, implementation-dependent, even in the same language.


Communications signals represented in a binary format are said to be .?

digital


Which video file format takes smallest size to download movie?

the .mpg format or the cam-rip


What is the difference between 2 and 10?

2 is decimal format in computer language. 2 can be represented as 10 in binary format.


Explain the methods which are available to store negative numbers and how are they used. Which method is mainly used today and why?

signed magnitude, one bit indicates the sign of the number and the other bits indicate the positive magnitude of the number (this system has two representations for zero: +0 and -0)one's complement, positive numbers are represented as their positive magnitude and negative numbers are represented as the complement of their positive magnitude (this system has two representations for zero: +0 and -0)two's complement, positive numbers are represented as their positive magnitude and negative numbers are represented as the complement of their positive magnitude plus one (this system is asymmetric about zero, with one more negative value than positive)offset binary, numbers are represented as the positive sum of their actual value and an offset (this system is asymmetric about zero, typically with one more negative value than positive)Most modern systems use two's complement for fixed point numbers (because the arithmetic circuitry is simpler than the others) and a combination of signed magnitude and offset binary for floating point numbers (because this format allows the same instructions for comparing fixed point numbers to also be used to compare floating point numbers, reducing the number of different instructions and the circuitry to implement them),


What are the list of modifier in turbo c language?

%c The character format specifier.%d The integer format specifier.%i The integer format specifier (same as %d).%f The floating-point format specifier.%e The scientific notation format specifier.%E The scientific notation format specifier.%g Uses %f or %e, whichever result is shorter.%G Uses %f or %E, whichever result is shorter.%o The unsigned octal format specifier.%s The string format specifier.%u The unsigned integer format specifier.%x The unsigned hexadecimal format specifier.%X The unsigned hexadecimal format specifier.%p Displays the corresponding argument that is a pointer.%n Records the number of characters written so far.%% Outputs a percent sign.Provided that 'modifier' means 'format specifier'.