wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Modules 3-5

Total questions: 78

Worksheet time: 39mins

Name
Class
Date
1.

A one-page document that you submit as part of your job application (alongside your resume). Its purpose is to introduce you and briefly summarize your professional background.

a)

Cover Letter

b)

Resume

c)

Career Vision Board

d)

Computational Artifact

2.

A document created and used by a person to outline their background, skills, and accomplishments.

a)

Career Vision Board

b)

Resume

c)

Cover Letter

d)

Computational Artifact

3.

A digital or non-digital collage of text, images, graphics, and/or links representing a person's wishes or future goals, intended to serve as inspiration or motivation.

a)

Resume

b)

Computational Artifact

c)

Cover Letter

d)

Career Vision Board

4.

Any human-created output from a computer. This can include programs, images, sounds, videos, presentations, and web pages.

a)

Cover Letter

b)

Resume

c)

Computational Artifact

d)

Career Vision Board

5.

Selecting the orientation, color, margins, and paper size for the document.

a)

Orientation

b)

Page Setup

c)

Computational Artifact

d)

Cover Letter

6.

Either a horizontal (landscape) or vertical (portrait) view of a document.

a)

Orientation

b)

Formatting

c)

Page Margins

d)

Page Setup

7.

Determining the amount of blank space between the page content and edges of the page; the default in one inch on all sides.

a)

Formatting

b)

Orientation

c)

Page Setup

d)

Page Margins

8.

The process of editing or changing your text, images, or background in word processing program.

a)

Orientation

b)

Formatting

c)

Page Setup

d)

Page Margins

9.

This stretches across the top of your Google Doc and give you quick access to shortcut icons to view, format, edit, or print the document.

a)

Page Margins

b)

Formatting

c)

Toolbar

d)

Menu Bar

10.

A horizontal bar at the top of a computer program window that provides access to commonly used functions.

a)

Menu Bar

b)

Toolbar

c)

Table

d)

Formatting

11.

Made up of rows and columns, often used to organize and present information.

a)

Column

b)

Table

c)

Row

d)

Cell

12.

Vertical lines in a table labeled by letters.

a)

Column

b)

Row

c)

Cell

d)

Table

13.

Horizontal lines in a table labeled by numbers.

a)

Table

b)

Column

c)

Row

d)

Cell

14.

The intersection of a row and column shaped like a rectangle.

a)

Cell

b)

Row

c)

Column

d)

Table

15.

The process of combining two or more cells into a single cell.

a)

Tab-stop

b)

Table

c)

Merge Cells

d)

Cell

16.

Set these on the ruled and use the tab key to align text left, center, or right.

a)

Formatting

b)

Merge Cells

c)

Tab-stop

d)

Indent

17.

Used to move text or objects from one place in the document to another place.

a)

Indent

b)

Paste

c)

Copy

d)

Cut

18.

Move your text 1/2 inch to the left (decrease) or right (increase)

a)

Tab-stop

b)

Page Margins

c)

Indent

d)

Merge Cells

19.

Creating a duplicate of text or objects; it leaves the original intact.

a)

Tab-stop

b)

Copy

c)

Cut

d)

Paste

20.

Used to copy text or objects from the clipboard to a file or document.

a)

Indent

b)

Cut

c)

Copy

d)

Paste

21.

A high-level description of an algorithm or program that uses the structural conventions of programming languages but is designed for human reading rather than machine execution. It omits detailed syntax and focuses on the logic and steps of the algorithm, allowing programmers to outline their ideas clearly and communicate them effectively to others.

a)

Language Agnostic

b)

Readability

c)

Pseudocode

d)

Flowchart

22.

Pseudocode should be easily understandable by anyone familiar with programming concepts.

a)

Pseudocode

b)

Structured

c)

Language Agnostic

d)

Readability

23.

It does not adhere to the syntax rules of any specific programming language.

a)

Formatting

b)

Language Agnostic

c)

Pseudocode

d)

Structured

24.

It uses common programming constructs such as loops, conditionals, and variables.

a)

Pseudocode

b)

Readability

c)

Language Agnostic

d)

Structured

25.

Names used to store data values.

a)

Conditionals

b)

Input/Output

c)

Variables

d)

Loops

26.

Statements to receive input from the user or display output.

a)

Structured

b)

Loops

c)

Variables

d)

Input/Output

27.

Constructs like "FOR", "WHILE", and "REPEAT...UNTIL" to repeat actions.

a)

Readability

b)

Input/Output

c)

Loops

d)

Conditionals

28.

Statements like "IF", "ELSE", and "ELSE IF" to make decisions.

a)

Variables

b)

Input/Output

c)

Loops

d)

Conditionals

29.

Blocks of code designed to perform specific tasks, often denoted with "FUNCTION" or "PROCEDURE".

a)

Functions/Procedures

b)

Conditionals

c)

Loops

d)

Input/Output

30.

Simplifies the understanding of complex algorithms.

a)

Communication

b)

Clarity

c)

Readability

d)

Flexibility

31.

Can be easily modified and adapted to different programming languages.

a)

Communication

b)

Clarity

c)

Structured

d)

Flexibility

32.

Serves as a tool for discussing algorithms and designs among developers.

a)

Readability

b)

Flexibility

c)

Communication

d)

Clarity

33.

A finite set of well-defined instructions or rules designed to solve a problem or perform a task. It consists of a sequence of steps where each step represents a specific action or decision that contributes to achieving the desired outcome. They are fundamental to computer science and mathematics, but they are also used in various fields to automate processes, make calculations, process data, and solve complex problems.

a)

Programming Code

b)

Algorithm

c)

Pseudocode

d)

Flowchart

34.

An algorithm must have a clear starting and ending point. It should terminate after a finite number of steps.

a)

Finite

b)

Definite

c)

Input

d)

Effective

35.

Each step of the algorithm must be precisely defined, leaving no ambiguity.

a)

Definite

b)

Input

c)

Output

d)

Effective

36.

An algorithm can have zero or more inputs, which are the data given to it before the execution begins.

a)

Input

b)

Output

c)

Definite

d)

Finite

37.

An algorithm should produce one or more output, which are the results of the algorithm's computations.

a)

Definite

b)

Input

c)

Output

d)

Effective

38.

The steps of an algorithm should be basic enough to be carried out, in principle, by a person using pencil and paper.

a)

Definite

b)

Input

c)

Output

d)

Effective

39.

Methods for ordering a list of items, such as Bubble Sort, Merge Sort, and Quick Sort.

a)

Graph Algorithms

b)

Mathematical Algorithms

c)

Sorting Algorithms

d)

Search Algorithms

40.

Techniques for finding an item in a data structure, such as Binary Search and Linear Search.

a)

Search Algorithms

b)

Machine Learning Algorithms

c)

Sorting Algorithms

d)

Mathematical Algorithms

41.

Procedures for performing mathematical computations, like the Euclidean algorithm for finding the greatest common divisor (GCD).

a)

Sorting Algorithms

b)

Search Algorithms

c)

Mathematical Algorithms

d)

Machine Learning Algorithms

42.

Algorithms for solving problems related to graph theory, like Dijkstra's algorithm for finding the shortest path in a graph.

a)

Graph Algorithm

b)

Search Algorithm

c)

Sorting Algorithm

d)

Mathematical Algorithm

43.

Algorithms that enable machines to learn from data, such as Decision Trees, Neural Networks, and Support Vector Machines.

a)

Machine Learning Algorithms

b)

Graph Algorithms

c)

Search Algorithms

d)

Sorting Algorithms

44.

Diagrammatic representations of the steps of an algorithm using standard symbols to denote different types of actions or decisions.

a)

Computational Artifact

b)

Pseudocode

c)

Flowcharts

d)

Programming Code

45.

Detailed implementation of the algorithm in a specific programming language.

a)

Pseudocode

b)

Flowcharts

c)

Programming Code

d)

Computational Artifact

46.

A cloud-based word processing application from Microsoft Corporation that allows the user to save a document to the cloud or their device (desktop).

a)

Microsoft 365 Word

b)

Word Processing

c)

Microsoft Visio

d)

Pseudocode

47.

A software application that uses a computer and software to create, edit, and print text based documentation such as letters, reports, and memos.

a)

Microsoft 365 Word

b)

Microsoft Visio

c)

Word Processing

d)

Algorithm

48.

App that helps users create diagrams, flowcharts, and other visuals to organize complex info.

a)

Word Processing

b)

Microsoft Visio

c)

Microsoft 365 Word

d)

Computational Artifact

49.

A finite set of well-defined instructions, or rules, a sequence of steps, designed to solve a problem or perform a task to achieve a desired outcome.

a)

Algorithm

b)

Word Processing

c)

Flowchart

d)

Pseudocode

50.

The default tab or "central hub" in Microsoft applications that contains the most commonly used functions for basic document formatting.

a)

Home tab

b)

Icons

c)

Ribbon

d)

Font Style

51.

Small pictures to remind you of each button's function.

a)

Home tab

b)

Icons

c)

Ribbon

d)

Font Style

52.

A bar with icons of popular tools across the top of the document, either classic or single line layout.

a)

Home Tab

b)

Icons

c)

Ribbon

d)

Font Style

53.

Allows for the customization of the document's appearance by formatting text, such as bold, italic, small cap, and more.

a)

Icons

b)

Spelling & Grammar

c)

Font Style

d)

Ribbon

54.

The document automatically saves to the cloud every few seconds to help prevent data loss.

a)

Ribbon

b)

Spelling & Grammar

c)

Font Style

d)

Autosave

55.

This tool helps identify and correct spelling and grammar errors as you type to ensure your documents are error-free.

a)

Ribbon

b)

Spelling & Grammar

c)

Autosave

d)

Handles

56.

A pre-designed and formatted document that can be edited to create a more customized, professional looking document.

a)

Template

b)

Ribbon

c)

Icons

d)

Handles

57.

Allow users to create drawings, add graphics, and color shapes.

a)

Handles

b)

Format Painter

c)

Ribbon

d)

Drawing Tools

58.

Small squares or circles on the edge of an image that allows users to resize an image.

a)

Handles

b)

Drawing Tools

c)

Format Painter

d)

Find & Replace

59.

This looks like a paintbrush on the toolbar and it's used to copy formatting in a document.

a)

Find & Replace

b)

Drawing Tools

c)

Format Painter

d)

Ribbon

60.

Toolbar icons allow users to format lists using bullets, numbers, multi-level, and checkboxes.

a)

Toolbar

b)

Lists

c)

File Format

d)

Line Spacing

61.

The amount of space between lines of text.

a)

Line Spacing

b)

Editor

c)

File Format

d)

Handles

62.

An editing command that lets you find specific words in a document and replace them.

a)

Formatting

b)

Line Spacing

c)

Editor

d)

Find & Replace

63.

Enable your device's microphone so you can allow speech to text.

a)

Editor

b)

Dictate

c)

Find & Replace

d)

Line Spacing

64.

Analyzes your document and offers suggestions for spelling, grammar, & writing suggestions.

a)

Editor

b)

Dictate

c)

File Format

d)

Lists

65.

A standard way of storing and organizing data in a file identified by the file extension. Common word processing file extensions are .pdf, .doc, .docx. It defines how information is encoded, stored and interpreted by software applications.

a)

Toolbar

b)

Formatting

c)

File Format

d)

Editor

66.

A free online, cloud-based application from Google that allows users to create surveys, quizzes, and forms.

a)

Template Gallery

b)

Google Forms

c)

Form Name

d)

Preview

67.

Provides easily editable and accessible Google Forms templates for users.

a)

Template Gallery

b)

Google Forms

c)

Form Name

d)

Preview

68.

Click in the top left hand corner to name the untitled form.

a)

Settings

b)

Google Forms

c)

Preview

d)

Form Name

69.

The icon looks like an eye, and the button allows Google Form creators to view the Form as a responder.

a)

Form Name

b)

Template Gallery

c)

Preview

d)

Customize Theme

70.

The icon looks liken an artist's palette and the button allows Google Form creators to customize their Form.

a)

Customize Theme

b)

Preview

c)

Form Name

d)

Template Gallery

71.

Click on this tab to manage how responses are collected and shared, and how the form is presented.

a)

Form Name

b)

Preview

c)

Customize Theme

d)

Settings

72.

These allow users to break down a form into smaller, more manageable groups of questions to improve the readability and make it easier for respondents to navigate and complete a long survey.

a)

Section Header

b)

Toolbar

c)

Settings

d)

Preview

73.

Includes these tools: add question, import question, add title and description, add image, add video, and add section.

a)

Settings

b)

Section Header

c)

Toolbar

d)

Preview

74.

Survey types include short answer, paragraph, multiple choice, checkboxes, dropdown, file upload, linear scale, rating, multiple choice grid, checkbox grid, and time.

a)

Settings

b)

Question

c)

More Options

d)

Toolbar

75.

Represented by three dots, allows users to view additional tools.

a)

Google Account

b)

More Options

c)

Settings

d)

Section Header

76.

A Google-wide username and password that can be used to access various products, including Gmail, YouTube, and Google Drive.

a)

Settings

b)

Question

c)

ASCII

d)

Google Account

77.

Stands for American Standard Code for Information Interchange. This code has a 7-bit or 8-bit numerical representation for each keyboard character that the computer can understand.

a)

ASKII

b)

ASCII

c)

AISCII

d)

ASCFII

78.

A number system made up of a series of 0s and 1s.

a)

Settings

b)

Code

c)

Binary

d)

ASCII