Lesson 6: User Input and Strings

Overview

In this lesson, students are introduced to the string data type as a way of representing arbitrary sequences of ASCII characters. They will use strings to accept input from a user as they work on mastering two new UI elements, the text input and the text area. Students combine these skills to develop a simple Mad Libs® app.

Mad Libs® is a trademark of the Penguin Group (USA) LLC., which does not sponsor, authorize or endorse this site.

Purpose

Strings are a feature of essentially every programming language, and they allow for variable-length pieces of text to be represented, stored, and manipulated. While a single string can be stored in a variable, it is worth noting that a string will typically use much more memory than a number. Numbers are typically stored in fixed-width 8-, 16-, 32-, or 64-bit chunks. ASCII characters require a single byte and so a string of 100 characters, short by most standards, would require 800 bits in order to be stored in memory. While “typed” programming languages require you to declare the size and type of a variable before you use them, in more dynamic programming languages, including JavaScript, this memory management is abstracted away.

Agenda

View on Code Studio

Objectives

Students will be able to:

  • Identify strings as a unique data type which contains a sequence of ASCII characters.
  • Describe characteristics of the string data type.
  • Accept string input in a program.
  • Manipulate user-generated string input to generate dynamic output.

Links

Heads Up! Please make a copy of any documents you plan to share with students.

For the Students

Vocabulary

  • Concatenate - to link together or join. Typically used when joining together text Strings in programming (e.g. "Hello, "+name)
  • String - Any sequence of characters between quotation marks (ex: "hello", "42", "this is a string!").

Introduced Code

Teaching Guide

Getting Started (15 minutes)

Explore a Mad Libs app and plan your own

Explore: Students should begin the lesson by moving to the first activity in Code Studio where they will use a Mad Libs app. Over the course of this lesson students will develop skills that will allow them to build their own Mad Libs app by accepting user input as strings. Note: After students move to Code Studio, they should complete the Activity Guide before continuing.

Teaching Tip

Put a time limit (e.g., 5-10 minutes) on this brainstorming session. It is intended to drive interest in and provide context for the coming activities. Students should feel free to change their ideas later in the lesson when they actually build their Mad Libs app.

Distribute: the Activity Guide - Mad Libs - Activity Guide. Students should use this opportunity to decide on what the theme of their Mad Libs app will be, what text they will accept into their app, and how it will be incorporated into its output. The primary guidelines of the project (also included in the Activity Guide) are:

  • The app should be a “how-to” Mad Libs (e.g., “How to take care of your pet ostrich”). Afterwards, you list steps with key components left open for user input. This is primarily to help students quickly conceive of ideas.
  • There should be at least 3 steps in their instructions.
  • Their app should accept at least 3 pieces of user input.

Before moving into the rest of Code Studio, students should have a rough outline of their project.

Once they have completed their outlines, students should return to Code Studio.

Activity (60 minutes)

App Lab: User Input and Strings

Code Studio levels

  • Mad Lib Demonstration
  • (click tabs to see student view)
  • String and Substring Free Response
  • (click tabs to see student view)

Wrap-up (5 Minutes)

Share: Once students have completed their applications they should share their work with their peers, trying one another’s Mad Libs.

Standards Alignment

View full course alignment

CSTA K-12 Computer Science Standards (2011)

CL - Collaboration
  • CL.L2:4 - Exhibit dispositions necessary for collaboration: providing useful feedback, integrating feedback, understanding and accepting multiple perspectives, socialization.
CPP - Computing Practice & Programming
  • CPP.L2:5 - Implement problem solutions using a programming language, including: looping behavior, conditional statements, logic, expressions, variables and functions.
  • CPP.L3A:3 - Use various debugging and testing methods to ensure program correctness (e.g., test cases, unit testing, white box, black box, integration testing)
  • CPP.L3A:4 - Apply analysis, design, and implementation techniques to solve problems (e.g., use one or more software lifecycle models).
  • CPP.L3A:5 - Use Application Program Interfaces (APIs) and libraries to facilitate programming solutions.
CT - Computational Thinking
  • CT.L2:12 - Use abstraction to decompose a problem into sub problems.
  • CT.L3A:1 - Use predefined functions and parameters, classes and methods to divide a complex problem into simpler parts.
  • CT.L3A:3 - Explain how sequence, selection, iteration, and recursion are building blocks of algorithms.

Computer Science Principles

5.1 - Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society).
5.1.1 - Develop a program for creative expression, to satisfy personal curiosity, or to create new knowledge. [P2]
  • 5.1.1B - Programs developed for creative expression, to satisfy personal curiosity, or to create new knowledge may have visual, audible, or tactile inputs and outputs.
5.3 - Programming is facilitated by appropriate abstractions.
5.3.1 - Use abstraction to manage complexity in programs. [P3]
  • 5.3.1L - Using lists and procedures as abstractions in programming can result in programs that are easier to develop and maintain.

CSTA K-12 Computer Science Standards (2017)

AP - Algorithms & Programming
  • 3B-AP-12 - Compare and contrast fundamental data structures and their uses.