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
Which ofthe following compression algorithmsis used to generate a .pngfile?
Dirty bit for a page in a pagetable
Which of the following is not an image type used in MPEG?
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?
What is the compression ratio in typical mp3 audiofile?
Consider the following program fragment
if (a > b)
if (b > c)
s1;
else s2;
S2 will be executed if
If n has the value 3, then the statement a[++n] = n++;
The following program
main()
{
inc() ; inc() ; inc() ;
}
inc( )
{
static int x ;
printf(“%d”, ++x);
}