wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

SC FOC Final Exam - Dorman Freshman Campus

Total questions: 50

Worksheet time: 25mins

Name
Class
Date
1.

Process of sending data between two computers on the internet

a)

Website

b)

Browser

c)

Routing

d)

Internet

2.

Units of data that are sent over the network

a)

Browser

b)

Websites

c)

Packets

d)

Web Page

3.

A program on your computer that sends requests for webpages and displays them

a)

Routing

b)

Browser

c)

Web Page

d)

Website

4.

HTML stands for what?

a)

Hyperscript Language

b)

Hypertext Language

c)

Markup Language

d)

Hypertext Markup Language

5.

Designing web pages to make it appealing and easy to use for viewers.

a)

Web Development

b)

Web Page

c)

Website

d)

Web Design

6.

Translates names to IP addresses.

a)

Domain Name System (DNS)

b)

Web Page

c)

Web Development

d)

Packets

7.

What does URL stand for and what does it do?

a)

United Reform Location - locating a resource that exists in your computer.

b)

Uniform Resource Location- locating a resource that exist on the www.

c)

Uniform Reform Location- locating a resource that exist somewhere online

d)

Uniform Resource Locator - locating a resource that exists somewhere online

8.

Writing the HTML, CSS, and other code to actually generate a web page.

a)

Website

b)

Web Development

c)

Web Design

d)

Web Page

9.

A philosophy of making information and knowledge open and accessible to ALL. Network built on open and agreed protocols.

a)

Internet

b)

Browser

c)

Website

d)

Routing

10.

A collection of related webpages, usually registered under the same domain name.

a)

Web Pages

b)

Website

c)

Web Design

d)

Browser

11.

A document that can be viewed by a web browser, usually written in html.

a)

Browser

b)

Website

c)

Web Page

d)

Web Design

12.

Cascading Style Sheets control the appearance and placement of HTML elements on a page.

a)

Inline CSS Style

b)

CSS

c)

Class Selector

d)

ID Selector

13.

The part of the CSS rule which specifies HOW the property/attribute will be modified.

a)

ID Selector

b)

Selector

c)

Value

d)

Property/Attribute

14.

A complete CSS style statement: selector, property, and value.

a)

Selector

b)

Value

c)

Rule

d)

Internal CSS Style

15.

A selector that identifies one ONE element within an HTML document. Always preceded by a # sign.

a)

Inline CSS Style

b)

Tag Selector

c)

Class Selector

d)

ID Selector

16.

The part of the CSS rule which specifies WHICH TYPE of modification to apply to HTML elements.

a)

declaration

b)

property/attribute

c)

value

d)

selector

17.

__________ is an example of a user application.

a)

Computer Science, Medicine, Video Gaming, and Automotive Industry

b)

Hardware

c)

Artificial

d)

Browser, Text Editor, Games, File Explorer

18.

__________ are the three main components of a computer's hardware.

a)

Store information, show information, sent information

b)

mouse, keyboard, and speaker

c)

camera, CD drive, USB port

d)

CPU, Memory, Motherboard

19.

Computers are able to perform tasks by using logic.

a)

True

b)

False

20.

What was one of the earliest computers ever recorded in history?

a)

Mark I

b)

Apple

c)

Abacus

d)

Calculator

21.

Which answer below is considered fields that use computers?

a)

Medicine

b)

Video Gaming

c)

Automotive

d)

All of the Above

22.

Computers have only been around since the 1940's

a)

True

b)

False

23.

What does a Web Browser allow a user to do?

a)

To allow the computer to store information or programs

b)

To allow the computer to store only information

c)

To allow a user to access the internet

d)

To allow a user to find stored information on their computer

24.

Moore's Law states that the processing speed of a computer should double every two years.

a)

True

b)

False

25.

The physical components of a computer are referred to as software

a)

False

b)

True

26.

What is the purpose of a network device?

a)

To allow the computer to store information or programs

b)

To allow the computer to display or communicate the result of a computation

c)

To allow the computers to connect and communicate with other computers

d)

To allow the user to give data or information to the computer

27.

What is the purpose of an input device?

a)

Allow computers to connect and communicate with other computers

b)

Allow the user to give data or information to the computer

c)

Allow the computer to store information or programs

d)

Allow the computer to display or communicate the result of a computation

28.

What is the purpose of an output device?

a)

Allow computers to connect and communicate with other computers

b)

Allow the user to give data or information to the computer

c)

Allow the computer to store information or programs

d)

Allow the computer to display or communicate the result of a computation

29.

_________ is something that performs calculations by following and executing specific instructions to solve a problem.

a)

Calculator

b)

Software

c)

Hardware

d)

Computer

30.

Motherboard __________

a)

allows the user to give data or information to the computer

b)

Connects all the physical components of a computer together

c)

One of the earliest computer ever recorded in history

d)

To allow the computer to store information or programs

31.

A symbol or container that holds a value

a)

Constant

b)

Variable

c)

readLine

d)

println

32.

A variable in a program that has a value that does not change

a)

readLine

b)

Constant

c)

println

d)

readInt

33.

JavaScript function that prints out a line to the user

a)

println

b)

getHeight()

c)

readInt

d)

getWidth()

34.

Allows for reading of user input when a float number is used

a)

readInt

b)

readLine

c)

Constant

d)

readFloat

35.

JavaScript function that returns the height of the graphics canvas

a)

getHeight()

b)

readFloat

c)

getWidth()

d)

println

36.

Refers to a system of logical thought that is used to create true/false statements

a)

Constant

b)

String

c)

Integers

d)

Boolean

37.

Math symbol used in JavaScript for division

a)

-

b)

/

c)

?

d)

$

38.

Why do we use while loops in JavaScript

a)

To do something only if a condition is true

b)

To repeat some code while a condition is true

c)

To repeat something a fixed number of times

d)

To either do something if a condition is true or do something else

39.

What loop do we use if we want Karel to move 10 times?

a)

for

b)

while

c)

variable for i

d)

move(10);

40.

The command for move in Karel

a)

move():

b)

move();

c)

Move;

d)

move;()

41.

Why do we use if statements in JavaScript

a)

To do something only if a condition is true

b)

Control the flow of the program; how the commands execute

c)

To either do something if a condition is true or do something else

d)

To repeat something a fixed number of times

42.

Creating functions is a big part of utilizing Top Down Design

a)

True

b)

False

43.

If there is a ball present, Karel should take it. If there is no ball present, Karel should turn around.

a)

If statement

b)

if/if statement

c)

if/else statement

d)

for loop

44.

For loops have an indefinite number of repeats and a while loop has a fixed number of repeats.

a)

False

b)

True

45.

Why do we use functions in Karel programs?

a)

Break down our program in smaller parts

b)

Avoid repeating code

c)

Make our program more readable

d)

All of the above

46.

Bulleted lists are also called __________ lists

a)

Ordered

b)

Unordered

c)

Numbered

d)

Enumerated

47.

The __________ attribute is used to define the URL of an image to load with the tag.

a)

a href

b)

link

c)

src

d)

https

48.

All of the colors you see on a computer screen are a result of a mixture of the same three colors. What are those colors

a)

cyan, magenta, yellow

b)

red, green, blue

c)

red, green, yellow

d)

cyan, magenta, black

49.

Which of the following classifies as metadata about a webpage?

a)

The tags that make up the body of the webpage

b)

A table on a webpage

c)

A list on a webpage

d)

The title of the webpage

50.

Which of the following is the proper HTML code to display this image on your webpage?

a)

<a href = image address>Image</a>

b)

<img>image address</img>

c)

<img src = "image address">

d)

<img src ="image address"></img>