Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336
A short integer is at least 16 bits wide and a long integer is at least 32 bits wide. ?->(Show Answer!)
Question Set

1. A short integer is at least 16 bits wide and a long integer is at least 32 bits wide.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 01 Jun 2017 06.01 pm
    The basic C compiler is 16 bit compiler, below are the size of it's data types
    The size of short int is 2 bytes wide(16 bits).
    The size of long int is 4 bytes wide(32 bits).
Show Similar Question And Answers
QA->In computing there are 8 bits to a byte, what are 4 bits called?....
QA->A train 110ms long passes a telegraph pole in 3 seconds. How long will it take to cross railway platform 165 ms long....
QA->A garden is 90 m long and 75m broad.A path 5 m wide is to be built outside around it. Find the area of the path:....
QA->A short but pithy and weightily saying, a short witty phrase....
QA->Long and short....
MCQ->What will be the output of the program? public class WrapTest { public static void main(String [] args) { int result = 0; short s = 42; Long x = new Long("42"); Long y = new Long(42); Short z = new Short("42"); Short x2 = new Short(s); Integer y2 = new Integer("42"); Integer z2 = new Integer(42); if (x == y) / Line 13 / result = 1; if (x.equals(y) ) / Line 15 / result = result + 10; if (x.equals(z) ) / Line 17 / result = result + 100; if (x.equals(x2) ) / Line 19 / result = result + 1000; if (x.equals(z2) ) / Line 21 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->A short integer is at least 16 bits wide and a long integer is at least 32 bits wide.....
MCQ->If a char is 1 byte wide, an integer is 2 bytes wide and a long integer is 4 bytes wide then will the following structure always occupy 7 bytes? struct ex { char ch; int i; long int a; };....
MCQ->Which statement(s) about IPv4 and IPv6 addresses are true? An IPv6 address is 32 bits long, represented in hexidecimal. An IPv6 address is 128 bits long, represented in decimal. An IPv4 address is 32 bits long, represented in decimal. An IPv6 address is 128 bits long, represented in hexidecimal.....
MCQ->Consider the following rules about integer constant in C An integer constant must have at least one digit.An integer constant must not have a decimal point.An integer constant may be positive or negative.The default sign is positive.A maximum of one comma or blank is allowed. Which of the above are correct?....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution