WorksheetsIntro to Software Tech Exam Prep
Total questions: 18
Worksheet time: 14mins
Which of the following is an example of an Input Device?
Mouse
Keyboard
Touch Screen
All of the Above
IOSP is an acronym for the 4 aspects that make up a computer. What does IOSP stand for in Computer Science?
Information, Organization, Specialization, Protocols
Iterate, Observe, Standardize, Process
Input, Output, Store, Process
Internet, Outernet, Shopping, Programming
What does the word ITERATE mean?
to repeat a process over and over again
to show your work
to run a computer program
to work with a team to complete a programming task
Which of the following is the role of HTML in Web Development?
To provide the structure of a web page
To style a web page
To address and send information over the internet
HTML is not related to Web Development
Which of the following lines of code would link a CSS file to an HTML file?
<a href="goldenGateBridge.html">Golden Gate Bridge</a>
<img src="goldenGateBridge.jpg" alt="Golden Gate Bridge">
<link rel="stylesheet" href="style.css">
<h1>Golden Gate Bridge</h1>
Which of the following would be controlled by CSS in Web Development?
Organizing text into lists
Separating headings from paragraphs
Making the text a different color
Creating hyperlinks that connect one web page to another
A web developer wants to make the title of the web page larger than the other text. Which of the following solutions would work?
Use <h6> for the title and <h3> for the other text
Use <h1> for the title and <p> for the other text
Put the code style=”larger” inside the h3 tag
All of the above
Which element is used to create a hyperlink that connects web pages to other pages on the internet?
<src>
<head>
<link>
<a>
A group of artists is making a website. When should they use classes?
They want to make their h3 tags bigger than their h1 tags.
They want headings to be one color, but paragraphs to be a different color.
They want some images to float left, and other images to float right.
They want all the pages on their site to have the same style.
A student is using a stylesheet to make all the paragraphs on the website green, but it's not working on index.html, even though it works on the other web pages. What could be causing the problem?
The student forgot to link the stylesheet to the index.html page.
The student did not upload the images used in the index.html page.
The student accidentally misspelled "green" in the stylesheet.
Why is it useful to use functions when programming?
They are a good way to store user input to use later in the program
They make the program run faster
They let you use the same code in different places without having to rewrite it
They are necessary for any program to run
What is the purpose of a variable?
to store information
to change the appearance of text on a web page
to compare the values of different numbers
All of the above
Which of the following is an example of a counter pattern?
sprite.x = sprite.x - 1
sprite.rotation = sprite.rotation + 10
sprite.scale = sprite.scale + 1
All of the above are examples of counter patterns
Which of the following is an example of a Boolean expression?
i == true
sprite.x < 150
13 + 5 == 30 - 11
All of the Above
What type of expression is created by using an IF/THEN statement?
Variable
Conditional
Function
Sprite
What are the two required steps for using a function?
Observe and Describe
Guess and Check
Define and Call
Click and Drag
To help keep your code organized, where should you place your function definitions when coding?
At the end
At the beginning
In the middle
Why are functions useful in coding?
The help to eliminate repetitive code
They reduce the amount of written code
They help to keep code organized
All of the above
