NEW
Font size
WorksheetsSC FOC Final Exam - Dorman Freshman Campus
Total questions: 50
Worksheet time: 25mins
Process of sending data between two computers on the internet
Website
Browser
Routing
Internet
Units of data that are sent over the network
Browser
Websites
Packets
Web Page
A program on your computer that sends requests for webpages and displays them
Routing
Browser
Web Page
Website
HTML stands for what?
Hyperscript Language
Hypertext Language
Markup Language
Hypertext Markup Language
Designing web pages to make it appealing and easy to use for viewers.
Web Development
Web Page
Website
Web Design
Translates names to IP addresses.
Domain Name System (DNS)
Web Page
Web Development
Packets
What does URL stand for and what does it do?
United Reform Location - locating a resource that exists in your computer.
Uniform Resource Location- locating a resource that exist on the www.
Uniform Reform Location- locating a resource that exist somewhere online
Uniform Resource Locator - locating a resource that exists somewhere online
Writing the HTML, CSS, and other code to actually generate a web page.
Website
Web Development
Web Design
Web Page
A philosophy of making information and knowledge open and accessible to ALL. Network built on open and agreed protocols.
Internet
Browser
Website
Routing
A collection of related webpages, usually registered under the same domain name.
Web Pages
Website
Web Design
Browser
A document that can be viewed by a web browser, usually written in html.
Browser
Website
Web Page
Web Design
Cascading Style Sheets control the appearance and placement of HTML elements on a page.
Inline CSS Style
CSS
Class Selector
ID Selector
The part of the CSS rule which specifies HOW the property/attribute will be modified.
ID Selector
Selector
Value
Property/Attribute
A complete CSS style statement: selector, property, and value.
Selector
Value
Rule
Internal CSS Style
A selector that identifies one ONE element within an HTML document. Always preceded by a # sign.
Inline CSS Style
Tag Selector
Class Selector
ID Selector
The part of the CSS rule which specifies WHICH TYPE of modification to apply to HTML elements.
declaration
property/attribute
value
selector
__________ is an example of a user application.
Computer Science, Medicine, Video Gaming, and Automotive Industry
Hardware
Artificial
Browser, Text Editor, Games, File Explorer
__________ are the three main components of a computer's hardware.
Store information, show information, sent information
mouse, keyboard, and speaker
camera, CD drive, USB port
CPU, Memory, Motherboard
Computers are able to perform tasks by using logic.
True
False
What was one of the earliest computers ever recorded in history?
Mark I
Apple
Abacus
Calculator
Which answer below is considered fields that use computers?
Medicine
Video Gaming
Automotive
All of the Above
Computers have only been around since the 1940's
True
False
What does a Web Browser allow a user to do?
To allow the computer to store information or programs
To allow the computer to store only information
To allow a user to access the internet
To allow a user to find stored information on their computer
Moore's Law states that the processing speed of a computer should double every two years.
True
False
The physical components of a computer are referred to as software
False
True
What is the purpose of a network device?
To allow the computer to store information or programs
To allow the computer to display or communicate the result of a computation
To allow the computers to connect and communicate with other computers
To allow the user to give data or information to the computer
What is the purpose of an input device?
Allow computers to connect and communicate with other computers
Allow the user to give data or information to the computer
Allow the computer to store information or programs
Allow the computer to display or communicate the result of a computation
What is the purpose of an output device?
Allow computers to connect and communicate with other computers
Allow the user to give data or information to the computer
Allow the computer to store information or programs
Allow the computer to display or communicate the result of a computation
_________ is something that performs calculations by following and executing specific instructions to solve a problem.
Calculator
Software
Hardware
Computer
Motherboard __________
allows the user to give data or information to the computer
Connects all the physical components of a computer together
One of the earliest computer ever recorded in history
To allow the computer to store information or programs
A symbol or container that holds a value
Constant
Variable
readLine
println
A variable in a program that has a value that does not change
readLine
Constant
println
readInt
JavaScript function that prints out a line to the user
println
getHeight()
readInt
getWidth()
Allows for reading of user input when a float number is used
readInt
readLine
Constant
readFloat
JavaScript function that returns the height of the graphics canvas
getHeight()
readFloat
getWidth()
println
Refers to a system of logical thought that is used to create true/false statements
Constant
String
Integers
Boolean
Math symbol used in JavaScript for division
-
/
?
$
Why do we use while loops in JavaScript
To do something only if a condition is true
To repeat some code while a condition is true
To repeat something a fixed number of times
To either do something if a condition is true or do something else
What loop do we use if we want Karel to move 10 times?
for
while
variable for i
move(10);
The command for move in Karel
move():
move();
Move;
move;()
Why do we use if statements in JavaScript
To do something only if a condition is true
Control the flow of the program; how the commands execute
To either do something if a condition is true or do something else
To repeat something a fixed number of times
Creating functions is a big part of utilizing Top Down Design
True
False
If there is a ball present, Karel should take it. If there is no ball present, Karel should turn around.
If statement
if/if statement
if/else statement
for loop
For loops have an indefinite number of repeats and a while loop has a fixed number of repeats.
False
True
Why do we use functions in Karel programs?
Break down our program in smaller parts
Avoid repeating code
Make our program more readable
All of the above
Bulleted lists are also called __________ lists
Ordered
Unordered
Numbered
Enumerated
The __________ attribute is used to define the URL of an image to load with the tag.
a href
link
src
https
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
cyan, magenta, yellow
red, green, blue
red, green, yellow
cyan, magenta, black
Which of the following classifies as metadata about a webpage?
The tags that make up the body of the webpage
A table on a webpage
A list on a webpage
The title of the webpage
Which of the following is the proper HTML code to display this image on your webpage?
<a href = image address>Image</a>
<img>image address</img>
<img src = "image address">
<img src ="image address"></img>
