I need help doing this practice exercise in Scratch. I am not sure where to start
Your task is to make a Scratch program that will tell you the letter grade based on the percentage. 1. Create a variable grade (have grade display as a scroll bar). 2. When the green flag is clicked, the program should look at the value of the grade and the Sprite should respond with a letter as follows: A: greater than 89 B: greater than 79 and less than 90 C: greater than 69 and less than 80 D: greater than 59 and less than 70 F: less than 60 At Scratch High School, students only qualify for tutoring if they have a B or D. After it says your grade, make your program say “You qualify for tutoring” or “You do not qualify for tutoring”. Save as grades.sb





if you have any doubt then please ask me without any hesitation in
the comment section below , if you like my answer then please
thumbs up for the answer , before giving thumbs down please discuss
the question it may possible that we may understand the question
different way and we can edit and change the answers if you argue,
thanks :)
I need help doing this practice exercise in Scratch. I am not sure where to start...
This is a praxctice assignment I have to do in Scratch but I don't know where to start. Timer 1. Create a variable called timer. 2. When the green flag is clicked, initialize the timer to 10. 3. Continually, wait 1 second and check if the timer=0 a. Output the current time b. If the timer=0 make either the background or a huge sprite say “time’s up!” 4. When the flag is clicked, everything should start over. 5. Be as...
Create a MIPS program that does the following:
4. Determine the letter grade a. Use the floating point calculated average to determine the letter grade. You will need to research the instructions to use to do comparisons with floating point numbers. (see Course Resources) b. Use the following chart: 90 - 100 80 - 89 70 - 79 ............. 60 - 69.............. <60 ..................... ............... 5. Display a message and the letter grade. 6. Your output should look similar to...
using C geany. Please Dr. exercise # 1 and 2
During the lab: PART I: PROGRAMMING EXERCISES a. Using Geany, write a C program that prompts and asks the user for two assignment marks (al and a2) and two test marks (ti and t2). All four variables are integer variables and are in % (out of 100). You program should display the four marks properly lalebed to check if the input has been successful. b. Next, calculate and display the...
Using Matlab, only need part b to be done thank you.
1. Below you will find a table with hours of life of a cupper plate used in an industrial process. They are 45 data samples (they are just an array, but in this document, they are presented in three columns to save space) 63 59 75 78 70 64 75 93 90 70 98 92 85 90 83 95 89 92 92 90 82 81 89 80 79 46...
A new school in the area has hired you to build a grade report software for them. The school wants the software interaction to be as follows: . The user (teacher) shall input the name of the student being processed. (10 pts) The user (teacher) shall input five (5) test scores for the student. (10 pts) • The software shall calculate and display the average of the test scores as the final grade. (20 pts) The software should also display...
Modify Assignment #18 so it drops each student’s lowest score when determining the students’ test score average and Letter grade. No scores less than 0 or greater than 100 should be accepted #include<iostream> #include<string> using namespace std; int main() { double average[5]; string name[5]; char grade[5]; for(int i=0; i<=5; i++) { cout<<"Enter student name: "; cin.ignore(); getline(cin,name[i]); int sum=0; for(int j=0; j<5; j++) { int grades; cout<<"Enter Grades:"<<j+1<<" : "; cin>>grades; sum+=grades; } average[i]=(float)sum/5; if(average[i]>=90 && average[i]<=100) grade[i]='A'; else if(average[i]>=80...
This program should be written in C Thoroughly following the Code Conventions, write an efficient program, which ask the user for their numeric grade, and determines and displays the equivalent letter grade, based on the following information: Use appropriate data types and initialize the variables correctly Use the following grading scale: A: 90 - 100 B: 80 - < 90 C: 70 - < 80 D: 60 - < 70 F: 0 - < 60 If the input is invalid,...
First, create two inputs that can be stored in variables consisting of a student's name. When the program begins ask "Who is the first student?" followed by "Who is the second student?" You only have to have two students for this program. Ask the user for the scores for the last three test grades for each of the students . After the user has entered both names, and three scores for each, the program should display the following as output:...
Jubail University College Computer Science & Engineering Department Assessmen Assignment Course Code CS120/C5101 t Type: 1 Semester: 403 Course Title Programming Submission 27-06-2020 Total Points 8 Date Submission Instructions: • This is an individual assignment. • Please submit your program (Java fle) in Blackboard. You can create one java project, named as Assignment1_id and add separate java file for each question. You can name your javá files as 01.02.... etc. • Make sure that you include your student ID name...
I really need help on this programming problem that am doing in Visual Studio 2019 in C++ Submit your .cpp file as well as the input file, the output file, and the screen shot of all the files tiled next to each other here! Instructions: Write a menu driven program that has three options: Option 1: Write a function that calculates the tax for an iphone. The price and the tax rate should be asked from the user. Input validation:...