Vocab. Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Input

A

A device or component that allows information to be given to a computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Output

A

Any device or component that receives information from a a computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Algorithm

A

A list of steps to finish a task

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Website

A

A collection of interlinked web pages on the World Wide Web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Website Content

A

The raw text, images, and other elements included in a web page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HTML

A

Hypertext Markup Language, a language used to create web pages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

HTML Element

A

A piece of a website, marked by a start tag and often closed with an end tag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

HTML Tag

A

The special set of characters that indicates the start and end of an HTML element and that element’s type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Website Structure

A

The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Heading

A

A title or summary for a document or section of a document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Digital Footprint

A

The collected information about an individual across multiple websites on the internet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Citation

A

A quotation from or reference to a book, paper, or author, especially in a scholarly work

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Copyright

A

The exclusive legal right to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Creative Commons

A

A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share , use, and build upon work that thy have created

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Intellectual Property

A

A work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights and for which one may apply for a patent, copyright, trademark, etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Bug

A

Part of a program that does not work correctly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Comment

A

A note in the source code of a computer program that helps explain the code to people who read it

18
Q

Debugging

A

Finding and fixing problems in an algorithm or program

19
Q

Indentation

A

The placement of text farther to the right or left of the surrounding text, making it easier to understand the program’s structure

20
Q

Whitespace

A

Any character that shows up as a blank space on the screen, such as a space, a tab, or a new line; helps separate different parts of the document to make it easier to read

21
Q

Hyperlink

A

A link from a HTML file to another location or file, typically activated by clicking on a highlighted word or image on the screen

22
Q

CSS

A

Cascading Style Sheets; a language used to describe how HTML elements should be styled

23
Q

CSS Selector

A

The part of a CSS rule-set that defines which HTML elements the style should be applied to

24
Q

Relevant

A

Closely connected or appropriate to the matter at hand

25
Q

Search Engine

A

A program that searches for and identifies items in a database that correspond to keywords or characters specified by the user, used especially for finding particular sites on the World Wide Web

26
Q

Trustworthy

A

Able to be relied on as honest or truthful

27
Q

CSS Class

A

An identifier that allows multiple elements in an HTML document to be styled in the same way

28
Q

Program

A

An algorithm that has been coded into something that can be run by machine

29
Q

Parameter

A

An extra piece of information passed to a function to customize it for a specific need

30
Q

Variable

A

A placeholder for a piece of information that can change

31
Q

Property

A

Attributes that describe an object’s characteristics

32
Q

Sprite

A

A graphic character on the screen with properties that describe its location, movement, and look

33
Q

Frame

A

A single image within an animation

34
Q

Frame Rate

A

The rate at which frames in an animation are shown, typically measured in frames per second

35
Q

Variable

A

A placeholder for a piece of information that can change

36
Q

Boolean

A

A single value of either TRUE or FALSE

37
Q

Conditionals

A

Statements that only run under certain conditions

38
Q

Expression

A

Any valid unit of code that resolves to a value

39
Q

Boolean Expression

A

In programming, an expression that evaluates to True or False

40
Q

If-Statement

A

The common programming structure that implements “conditional statements”

41
Q

Abstraction

A

A simplified representation of something more complex. Abstractions allow you to hide details to help manage complexity, focus on relevant concepts, and reason about problems at a higher level

42
Q

Function

A

A named group of programming instructions. Functions are reusable abstractions that reduce the complexity of writing and maintaining programs