Subject-Predicate(Class Activity)
Please mark it “Completed in class” once you have completed the exercise in class.
Story Building Using Vocab Bank – Class Activity
Objective: Please write a short story (400-500 words ) using at least 10 words from the word bank. Class Activity 1: Story Creation Challenge Instructions: Create groups of two groups students. Each group must write a short story (10-12 sentences) about friendship, teamwork, or overcoming challenges. Requirement: They must use at least 8 vocabulary words […]
Story Building Using Word Bank(Home Assignment)
Objective: Please write a short story (600-700 words ) using at least 10 words from the word bank. The story should be about friendship.
Story Building Using Vocab Bank
Objective: Please write a short story (400-500 words ) using at least 10 words from the word bank.
Assessment 2: Coding
Write a function is_even(n) that takes an integer n as input and returns True if the number is even, otherwise False. (Hint: function return type ) Write a Python program to reverse a string. Input: “Python” Output: “nohtyP” 3. Given a list of numbers, write a program to count how many are greater than […]
Assessment 1 – Debugging Questions(20 points)
What will be the output of this code? Is it correct? If not, fix it: def add_numbers(a, b): return a + b print(add_numbers(2, 3)) 2. What will be the output of this code? Is it correct? If not, fix it: fruits = [“apple”, “banana”, 23] for i in range(fruits): print(fruits[i])
List Practice Set 5.2
Program 1: Problem: Write a program to calculate the sum of all elements in a list.Input: numbers = [1, 2, 3, 4, 5] Output: Sum = 15 Program 2: Problem: Write a program to find the largest and smallest elements in a list.Input: numbers = [10, 25, 5, 30, 15] Output: Largest = 30 Smallest […]
String Practice Set 5.1
Program 1: Problem: Write a program to find the length of a given string. Input:string = “Python” Output:Length = 6 Program 2: Problem: Write a program to convert a string to uppercase. Input:string = “hello world” Output:HELLO WORLD Program 3: Problem: Write a program to convert a string to lowercase. Input:string = “PYTHON IS FUN” […]
Puzzle
Practice 4.1
Problem Statement 1: Write a function are_equal(a, b) that prints “Equal” if two numbers are equal and “Not Equal” otherwise. # Example are_equal(3, 3) # Output: Equal are_equal(4, 5) # Output: Not Equal Problem Statement 2: Write a function celsius_to_fahrenheit(celsius) that takes a temperature in Celsius and prints the equivalent temperature in Fahrenheit. Use the […]