Answer the following clearly. [TRUE OR FALSE]: NO ABBREVIATIONS .a) %p identifie
ID: 3806686 • Letter: A
Question
Answer the following clearly. [TRUE OR FALSE]: NO ABBREVIATIONS .a) %p identifier for a pointer provides decimal value for better accuracy; .b) & operator refers to the value of the stored operand; .c) Non constant pointer to non-constant data emulates ROM; .d) Upper case characters occupy less memory space than lower case; .e) Function 'isalpha' returns logic 0 for character x input; .f) Cross coupled N and gates provide basic flip flop needed for registers .g) Stack has the property of First In - Last OutExplanation / Answer
A) %p identifier for a pointer provides decimal value for better accurcy
False
-%p identifier for a pointer provides hexadecimal values and you can cast this values for decimal.
B) & operator refers to the vcalue of the stored operand.
False
-because & operator refers to the address of the stored operans.
C) Non constant pointer to non constant data emulates ROM.
False
-Because constant data are user ROM when Non constant data are emulates RAM.
D) Is uppercase characters occupy less memory space than lower case
False
-Because Upper case letters denote nonbit structure member,the member occupy one letter per Byte.
and Lower case letters denote bit structure,the member occupy one letter per bit.
E) Function 'isalpha' returns logic 0 for character x input
False
-because if input is in character then it returns character value instead of integer.,It depends of function return type.
F) Cross coupled NAND gate provide basic flip flop needed for registers
True
-example, 2 nand gates are used to build SR flip flops.
G) Stack has the propertie of the First in - Last Out.
True
because stack is linear data structure which has first in last out properties,
and Queue has first in first out properties.