wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

CLASS 12 COMPUTER APPLICATIONS CH-1 TO CH-6 STATEBOARD I - MID

Total questions: 63

Worksheet time: 32mins

Name
Class
Date
1.

What is multimedia?

a)

a type of computer hardware

b)

a type of computer software

c)

a type of computer network

d)

the use of multiple forms of media to communicate information

2.

_______ has five major components like text, images, sound, video and animation.

a)

Multimedia

b)

Master Page

c)

Master item

d)

Multi-word

3.

What is a raster image?

a)

a type of image made up of pixels

b)

a type of image made up of geometric shapes

c)

a type of image made up of text

d)

a type of image made up of sound waves

4.

What is a vector image?

a)

a type of image made of pixels

b)

a type of image made up of geometric shapes

c)

a type of image made up of text

d)

a type of image made up of sound waves

5.

Which of the following is a raster image file format?

a)

JPEG

b)

EPS

c)

CDR

d)

SVG

6.

Which of the following is a vector image file format?

a)

PSD

b)

JPEG

c)

EPS

d)

BMP

7.

RTF (Rich Text Format) file format was introduced by __________

a)

TCS

b)

Microsoft

c)

Apple Inc.

d)

IBM

8.

The expansion of JPEG is _____________

a)

Joint Photographic Experts Group

b)

Joint Photo Experts Group

c)

Join Photon Experts Group

d)

Joint Photographic expressGroup

9.

AIFF file format was developed by _______

a)

TCS

b)

Microsoft

c)

Apple Inc.

d)

IBM

10.

Which of the following is an audio file format?

a)

MP3

b)

AVI

c)

MPEG

d)

PNG

11.

DTP stands for ______________

a)

Desktop Publishing

b)

Desktop Publication

c)

Doctor To Patient

d)

Desktop Printer

12.

____________ is a DTP software.

a)

Lotus 1-2-3

b)

PageMaker

c)

Maya

d)

Flash

13.

Which menu contains the New option?

a)

File menu

b)

Edit menu

c)

Layout menu

d)

Type menu

14.

In PageMaker Window, the area outside of the dark border is referred to as _________.

a)

page

b)

pasteboard

c)

blackboard

d)

dashboard

15.

Shortcut to close a document in PageMaker is ______________

a)

Ctrl + A

b)

Ctrl + B

c)

Ctrl + C

d)

Ctrl + W

16.

A __________ tool is used for magnifying the particular portion of the area.

a)

Text tool

b)

Line tool

c)

Zoom tool

d)

Hand tool

17.

_________ tool is used for drawing boxes.

a)

Line

b)

Ellipse

c)

Rectangle

d)

Text

18.

Place option is present in _____________ menu.

a)

File

b)

Edit

c)

Layout

d)

Window

19.

To select an entire document using the keyboard, press ___________

a)

Ctrl + A

b)

Ctrl + B

c)

Ctrl + C

d)

Ctrl + D

20.

Character formatting consists of which of the following text properties?

a)

Bold

b)

Italic

c)

Underline

d)

All of these

21.

Which tool lets you edit text?

a)

Text tool

b)

Type tool

c)

Crop tool

d)

Hand tool

22.

Shortcut to print a document in PageMaker is ___________

a)

Ctrl + A

b)

Ctrl + P

c)

Ctrl + C

d)

Ctrl + V

23.

The ---------- diagram gives a logical structure of the database graphically?

a)

Entity-Relationship

b)

Entity

c)

Architectural Representation

d)

Database

24.

An entity set that does not have enough attributes to form primary key is known as

a)

Strong entity set

b)

Weak entity set

c)

Identity set

d)

Owner set

25.

---------- Command is used to delete a database.

a)

Delete database database_name

b)

Delete database_name

c)

drop database database_name

d)

drop database_name

26.

MySQL belongs to which category of DBMS?

a)

Object Oriented

b)

Hierarchical

c)

Relational

d)

Network

27.

MySQL is freely available and is open source.

a)

True

b)

False

28.

---------- represents a “tuple” in a relational database?

a)

Table

b)

Row

c)

Column

d)

Object

29.

Communication is established with MySQL using

a)

SQL

b)

Network calls

c)

Java

d)

API’s

30.

Which is the MySQL instance responsible for data processing?

a)

MySQL Client

b)

MySQL Server

c)

SQL

d)

Server Daemon Program

31.

The structure representing the organizational view of entire database is known as -------- in MySQL database.

a)

Schema

b)

View

c)

Instance

d)

Table

32.

The expansion of PHP is _________

a)

PHP: Hypertext Preprocessor

b)

Personal Hypertext Preprocessor

c)

Pretext Home page

d)

Preprocessor Home Page

33.

What is the extension of PHP file?

a)

.html

b)

.xml

c)

.php

d)

.ph

34.

The PHP script should start with _________

a)

<?php

b)

<php

c)

<php?

d)

<:?

35.

________ is a data type which contains decimal numbers.

a)

Integer

b)

Float

c)

Boolean

d)

Null

36.

A_________is a block of code that performs a specific task.

a)

Parameter

b)

Function

c)

Class

d)

Label

37.

Pre-defined functions are also called _________.

a)

user-defined functions

b)

recursive functions

c)

built-in functions

d)

lambda functions

38.

Which one of the following is the right way of defining a function in PHP?

a)

function functionname() { // code to be executed }

b)

function() {}

c)

def myFunction()

d)

None of the above

39.

A user-defined function in PHP starts with the keyword _________.

a)

function

b)

def

c)

defined

d)

funct

40.

Which of the following is a correct way to call a function in PHP?

a)

functionName();

b)

call functionName;

c)

execute functionName;

d)

run functionName();

41.

What is an array in PHP?

a)

An array is a special data type.

b)

It can hold many values under a single variable name.

c)

An array element can be any type of data.

d)

All of the above

42.

How many types of arrays are there in PHP?

a)

2

b)

3

c)

4

d)

5

43.

What is the index of the first element in an indexed array in PHP?

a)

0

b)

1

c)

2

d)

3

44.

What is the index of the third element in an indexed array in PHP with 5 elements?

a)

2

b)

3

c)

4

d)

5

45.

How do you create an indexed array in PHP?

a)

By enclosing a comma-separated list of values in square brackets

b)

By using the array() function

c)

By enclosing a comma-separated list of values in curly braces

d)

Both A and B

46.

How do you access the elements of an indexed array in PHP?

a)

By using the array index in square brackets

b)

By using the array key in square brackets

c)

By using the array index in curly braces

d)

By using the array key in curly braces

47.

Which of the following is NOT a type of conditional statement in PHP?

a)

if

b)

if ... else

c)

if ... elseif ... else

d)

while

48.

What type of statement is the if...else statement?

a)

Conditional statement

b)

Looping

c)

Input statement

d)

Output statement

49.

What is the simplest conditional statement in PHP?

a)

if-else statement

b)

if statement

c)

switch statement

d)

if-elseif-else statement

50.

How does the if statement work in PHP?

a)

A block of code is executed if a certain condition is true.

b)

A block of code is executed if a certain condition is false.

c)

A block of code is executed if multiple conditions are true.

d)

A block of code is executed if multiple conditions are false.

51.

What happens if the condition in an “if” statement is false?

a)

The code inside the curly braces is executed.

b)

The code inside the curly braces is skipped.

c)

The program terminates.

d)

None of the above

52.

What is the syntax for an if-else statement in PHP?

a)

if(condition) { //True-block; }

b)

if(condition) { //True-block; } else { //False-block; }

c)

if-else(condition) { //True-block; } else { //False-block; }

d)

if-elseif(condition) { //True-block; } else { //False-block; }

53.

Which of the following is used to specify multiple conditions in an if ... elseif ... else statement?

a)

AND

b)

OR

c)

case

d)

elseif

54.

Which of the following is used to specify multiple conditions in a switch statement?

a)

AND

b)

OR

c)

case

d)

if

55.

What happens if none of the case values match the expression in a switch statement?

a)

The default case block is executed

b)

The program terminates

c)

The nearest case block is executed

d)

The first case block is executed

56.

Which of the following is used to terminate the switch statement?

a)

return

b)

continue

c)

goto

d)

break

57.

Which language is used to request information from a Database?

a)

Relational

b)

Structural

c)

Query

d)

Compiler

58.

How many data types does PHP support?

a)

18

b)

28

c)

8

d)

38

59.

Every variable name in PHP must begin with a _________ symbol.

a)

#

b)

//

c)

$

d)

<

60.

_________ in PHP are case – sensitive.

a)

Variable names

b)

keywords

c)

Variable names and keywords

d)

None of the above

61.

The assignment operator is ___________

a)

=

b)

==

c)

===

d)

!=

62.

_________ operators perform an action to compare two values.

a)

arithmetic

b)

comparison

c)

increment

d)

logical

63.

Which operator is called “identical”?

a) = b) == c) === correct d) <>

a)

=

b)

==

c)

===

d)

<>