Podcast
Questions and Answers
Which of the following could be described as an input for a computer? (Select all that apply)
Which of the following could be described as an input for a computer? (Select all that apply)
Which of the following could be described as processing and the output of processing?
Which of the following could be described as processing and the output of processing?
What types of information could a computer store?
What types of information could a computer store?
Which problems cannot be solved with computing? (Select all that apply)
Which problems cannot be solved with computing? (Select all that apply)
Signup and view all the answers
Measure today's air quality.
Measure today's air quality.
Signup and view all the answers
Retain the air quality data for each day.
Retain the air quality data for each day.
Signup and view all the answers
Compare today's air quality with the air quality from recent days.
Compare today's air quality with the air quality from recent days.
Signup and view all the answers
Which word is best defined as "a language used to describe how HTML elements should be styled"?
Which word is best defined as "a language used to describe how HTML elements should be styled"?
Signup and view all the answers
Which of these tasks are most appropriate for CSS? (Select all that apply)
Which of these tasks are most appropriate for CSS? (Select all that apply)
Signup and view all the answers
Which are you more likely to find in a CSS file? (Select all that apply)
Which are you more likely to find in a CSS file? (Select all that apply)
Signup and view all the answers
Debug the following image tag <img src=rainbow.jpg" alt="a rainbow">
Debug the following image tag <img src=rainbow.jpg" alt="a rainbow">
Signup and view all the answers
Color is a CSS property which
Color is a CSS property which
Signup and view all the answers
If you can't afford to copyright your work and want to protect it from being copied then you can
If you can't afford to copyright your work and want to protect it from being copied then you can
Signup and view all the answers
Given the following website, what would you add to the CSS file so the images of clouds and rainbows have a height of 50 px?
Given the following website, what would you add to the CSS file so the images of clouds and rainbows have a height of 50 px?
Signup and view all the answers
Given this webpage, predict the HTML.
Given this webpage, predict the HTML.
Signup and view all the answers
Predict the CSS given the webpage and HTML below.
Predict the CSS given the webpage and HTML below.
Signup and view all the answers
Which of the following is an example of your digital footprint?
Which of the following is an example of your digital footprint?
Signup and view all the answers
Which of the following elements most likely increase a website's trustworthiness?
Which of the following elements most likely increase a website's trustworthiness?
Signup and view all the answers
Defines a paragraph.
Defines a paragraph.
Signup and view all the answers
Defines the largest bold header.
Defines the largest bold header.
Signup and view all the answers
Contains an ordered list of numbered list items.
Contains an ordered list of numbered list items.
Signup and view all the answers
Contains an unordered list of bulleted list items.
Contains an unordered list of bulleted list items.
Signup and view all the answers
Defines a list item within the ol/ul container.
Defines a list item within the ol/ul container.
Signup and view all the answers
Used to leave comments or notes (aka "comment out").
Used to leave comments or notes (aka "comment out").
Signup and view all the answers
Insert a line break between paragraphs.
Insert a line break between paragraphs.
Signup and view all the answers
Insert a horizontal rule (line) between paragraphs.
Insert a horizontal rule (line) between paragraphs.
Signup and view all the answers
Insert an ampersand.
Insert an ampersand.
Signup and view all the answers
Insert an image into HTML code.
Insert an image into HTML code.
Signup and view all the answers
Connects stylesheet to the HTML code.
Connects stylesheet to the HTML code.
Signup and view all the answers
Format for setting styles on the stylesheet.
Format for setting styles on the stylesheet.
Signup and view all the answers
Specifies the color of text.
Specifies the color of text.
Signup and view all the answers
Specifies the style of font.
Specifies the style of font.
Signup and view all the answers
Aligns text left, right, or center.
Aligns text left, right, or center.
Signup and view all the answers
Specifies the appearance of decorative lines on text (most common are line, color, style).
Specifies the appearance of decorative lines on text (most common are line, color, style).
Signup and view all the answers
Specifies the background color of an element.
Specifies the background color of an element.
Signup and view all the answers
Specifies the color for all four sides of an element's border.
Specifies the color for all four sides of an element's border.
Signup and view all the answers
Allows you to add rounded corners to elements.
Allows you to add rounded corners to elements.
Signup and view all the answers
Specifies the line style for all four sides of an element's border.
Specifies the line style for all four sides of an element's border.
Signup and view all the answers
Places elements on the left or right side of the screen and allows text and other elements to wrap around it.
Places elements on the left or right side of the screen and allows text and other elements to wrap around it.
Signup and view all the answers
Specifies the height of the content area of an element.
Specifies the height of the content area of an element.
Signup and view all the answers
Specifies the size of the margin area around an element.
Specifies the size of the margin area around an element.
Signup and view all the answers
Creates a link to other external sites or other pages for the same site.
Creates a link to other external sites or other pages for the same site.
Signup and view all the answers
What is a computer?
What is a computer?
Signup and view all the answers
Choose an app. Use this example to explain input, processing, storage, and input.
Choose an app. Use this example to explain input, processing, storage, and input.
Signup and view all the answers
What is the difference between HTML and CSS?
What is the difference between HTML and CSS?
Signup and view all the answers
Why should students who did NOT choose to be in this elective class still give their best effort to master the lessons from the Code.org curriculum?
Why should students who did NOT choose to be in this elective class still give their best effort to master the lessons from the Code.org curriculum?
Signup and view all the answers
Study Notes
Computer Science Midterm Exam - Study Notes
-
UNIT ONE - Input, Processing, Output, Storage
- Input Devices: Touchscreen, microphone
- Processing: Counting clicks updating screen, guessing correctly playing music, updating high scores
- Output: Screen updates, messages, music, high score updates
- Storage: Apps, photos, music, location
- Problems that computing can't solve include counting and measuring rising sea levels, finding cities with the most air pollution, comparing greenhouse gas emissions, and taking actions to reverse climate change
- Input, Output, Processing, and Storage Examples: Measuring air quality is input, storing data for each day is storage, comparing today's quality to recent days is processing
-
UNIT TWO - Web Development
- CSS (Cascading Style Sheets): A language to style HTML elements
- CSS tasks: Changing background color, adding images, links, changing font size
-
CSS File Content: Includes styles like
1. clouds{ 2 height: 50px; 3}
for specifying formatting -
HTML elements: Image tags
<img src="rainbow.jpg" alt="a rainbow">
, headings (<h1>
,<h2>
, etc.), paragraphs (<p>
), and links (<a href="...">
) - Debugging Image Tags: Ensure correct alt attributes and quotation marks around image file names, starting and closing the image tag
- Color CSS Property: Used to specify text colors, and location on the screen, not size
- Protecting Work: Options include copyright, trademark, or patent
-
HTML and CSS in Webpage:
- HTML provides the content (structure, headings, text), while CSS styles the content visually (colors, sizes, positioning).
-
General Knowledge
- Digital Footprint Examples: Birthday, address, phone number, name (all these represent personal data online and in the real world).
- Website Trustworthiness Elements: High-quality images, cited sources, not being posted anonymously
-
HTML and CSS Concepts
- Paragraphs (
<p>
) - Largest header (
<h1>
) - Smallest header (
<h6>
) - Ordered list (
<ol>
) - Unordered list (
<ul>
) - List item (
<li>
) - Comments (
<!-- -->
) - Line breaks (
<br>
) - Horizontal rules (
<hr>
) - Ampersand symbol (
&
) - Image insertion (
<img src="image.jpg" alt="description">
) - Linking to other pages or external sites (
<a href="...">
) - Connecting CSS stylesheet to HTML
- Paragraphs (
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
Prepare for your Computer Science midterm exam with these comprehensive study notes covering input, processing, output, storage, and web development concepts like CSS. Enhance your understanding of key computational problems and how they relate to environmental challenges. This resource will help reinforce your knowledge and boost your confidence before the exam.