Frisco High Computer Science Challenge - Written Pitch With Code
Frisco High Computer Science Challenge - Written Pitch With Code
Objective:
Students will write a one-paragraph pitch that highlights one unique feature of Frisco High
School’s Computer Science program and incorporate a simple section of beginner-level code to
support their point.
Assignment Instructions:
import java.util.Scanner;
while (true) {
System.out.println("Reminders:");
for (int i = 0; i < count; i++) {
System.out.println((i + 1) + ". " + reminders[i]);
}
if (newReminder.equalsIgnoreCase("exit")) {
break;
}
reminders[count] = newReminder;
count++;
}
}
}
Rubric (Aligned with TEKS)
Criteria 1 - Poor 2 - Fair 3- 4 - Good 5- TEKS
Average Excellent Standard
Example:
Paragraph:
Frisco High’s Computer Science program teaches essential programming skills that form the
foundation of real-world applications. For instance, we learn how to use loops to efficiently
repeat actions, which is crucial when handling large data sets. This skill not only saves time but
also allows us to write clean, efficient code that solves complex problems. With the guidance of
our teachers, we develop problem-solving strategies that are essential for success in the tech
industry.
java
Copy code
for (int i = 0; i < 5; i++) {
System.out.println("Frisco High is the best!");
}