ExamCompetition Forum Question Papers Ask A Question Mock Test Learn & Earn Sign Up Login Menu

Computer science Practice Questions & Answers

0 vote

Which of the following defines a relative measurement for the height of a font in em spaces?

Asked on by Guest | Votes 0

Which of the following defines a relative measurement for the height of a font in em spaces?

A).  %

B).  cm

C).  em

D).  ex

0 vote

A media query consists of a media type and zero or more expressions that check for the conditions of particular media features. State true or false.

Asked on by Guest | Votes 0

A media query consists of a media type and zero or more expressions that check for the conditions of particular media features. State true or false.

A).  True

B).  False

0 vote

Which of the following Media Query determines if output is monochrome and how many bits are used for gray display?

Asked on by Guest | Votes 0

Which of the following Media Query determines if output is monochrome and how many bits are used for gray display?

A).  gray

B).  chrome

C).  monochrome

D).  none of the mentioned

0 vote

Which of the following Media Query describes the scanning method of a TV?

Asked on by Guest | Votes 0

Which of the following Media Query describes the scanning method of a TV?

A).  orientation

B).  scan

C).  resolution

D).  none of the mentioned

0 vote

What will be output if you will compile and execute the following c code?#include<stdio.h>#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);}

Asked on by Guest | Votes 0

What will be output if you will compile and execute the following c code?#include<stdio.h>#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);}

A).  5

B).  6

C).  7

D).  0

E).  Compiler Error