For the following questions answer them individually
The contents of the flag register after execution of the following program by 8085 microprocessor will be
Program
SUB A
MVI B, (01)$$_H$$
DCR B
HLT
The minimum time delay between theinitiation of two independent memory operations is called
Consider an uncompressed stereo audio signal of CD quality which is sampled at 44.1 kHz and quantized using 16 bits. What is required storage space if a compression ratio of 0.5 is achieved for 10 seconds of this audio?
Consider the following program fragment
if (a > b)
if (b > c)
s1;
else s2;
S2 will be executed if
The following program
main()
{
inc() ; inc() ; inc() ;
}
inc( )
{
static int x ;
printf(“%d”, ++x);
}