The representation of octal number (532.2)8 in decimal is ________
(346.25)10
Which keyword can be used for coming out of recursion?
return
What is the major difference between half-adders and full-adders?
Full adders have a carry input capability
The addressing mode which makes use of in-direction pointers is ______
Indirect addressing mode
An important drawback of binary system is ________
It requires very large string of 1’s and 0’s to represent a decimal number
The keyword ‘break’ cannot be simply used within _________
if-else
The binary subtraction of 0 – 0 =?
Difference = 0, borrow = 0
In the following indexed addressing mode instruction, MOV 5(R1), LOC the effective address is ______
EA = 5+[R1]
The largest two digit hexadecimal number is ________
(FF)16
Which keyword is used to come out of a loop only for that iteration?
continue
How many basic binary subtraction operations are possible?
4
The addressing mode, where you directly specify the operand value is _______
Immediate
The quantity of double word is ________
32 bits
What will be the output of the following C code?
#include <stdio.h>
void main()
{
int i = 0;
int j = 0;
for (i = 0;i < 5; i++)
{
for (j = 0;j < 4; j++)
{
if (i > 1)
continue;
printf("Hi \n");
}
}
}
Hi is printed 8 times
When performing subtraction by addition in the 2’s-complement system ____________
The minuend is left in its original form and the subtrahend is changed to its 2’s-complement
_____ addressing mode is most suitable to change the normal sequence of execution of instructions.
Relative