subject

24 POINTS

4.1: In this project, the "Inventory" list should be updated every time Scratch Cat picks up a new item. But Scratch Cat can only pick up the laptop. How do we fix the program?

A. Use insert item to inventory instead of add item to inventory

B. Change the touching code for the cheese puffs and lamp to touching Sprite1

C. Remove delete all of inventory code

D. Add the touching code to the Sprite1 instead of the other sprites

4.2: In this project, Scratch Cat gets 10 points for collecting Yellow Gobos and loses 10 points for colliding with Pink Gobos. But something isn't working! How do we fix the program?

A. Add change score by -10 to the cat sprite

B. Add change score by -10 code to all of the Pink Gobos

C. Create a new variable to track the Pink Gobos score

D. Change the wait until touching code from cat to Sprite1

4.3: In this project, Scratch Cat is thinking of a number between 1 and 10. But something is wrong with the guess checking -- it doesn't work consistently. How do we fix the program?

A. Change set secret number to guess

B. Add if secret number is equal to guess code

C. Change the second "If" from less than to greater than

D. Change number of guesses by guess instead of 1

4.4: In this project, the "# of hits" display should increase by 1 every time the Scratch Cat is hit by a tennis ball. But the "# of hits" increases by more than 1 when Scratch Cat is hit. How do we fix the program?

A. Add a wait command after change # of hits by 1

B. Change # of hits by 1 to .5

C. Variable should be score instead of # of hits

D. Add a wait command to the cat code

4.5: In this project, the Scratch Cat is moving through a maze to get to the end where the yellow block is. However, nothing happens when the Scratch Cat touches the green bars. How can we fix this?

A. Add a when touching green block code

B. Add a stop all code to the green bars

C. Change the wait until touching color yellow to green

D. Change the code for the down arrow and left arrow to -10

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 02:30
If you turn on the lock alpha button , what happens
Answers: 1
question
Computers and Technology, 22.06.2019 10:00
Jackson is teaching the decimal number system. he wants his students to know how to expand numbers by powers of 10. which is the correct order in which digits are assigned values in the decimal number system?
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Write a function called checkfactor that takes two arrays of positive numbers, firstnumberrow and secondnumberrow. checkfactor checks if the first entry in firstnumberrow is divisible by the first entry in secondnumberrow, and performs the same operation on the next array elements until all entries have been checked. all the numbers are positive and the number of entries in the arrays are the same. the function should return the identified divisible numbers in two row arrays named firstdivisible and seconddivisible.restrictions: branches or loops should not be used. the code must use the internal mod and logical functions.hint: the mod function should be used to determine if two numbers are divisible. ex: for num1 and num2 if mod(num1,num2) is 0, then the two numbers are divisible.this is matlab
Answers: 2
question
Computers and Technology, 24.06.2019 02:00
Write an expression that will cause the following code to print "equal" if the value of sensorreading is "close enough" to targetvalue. otherwise, print "not equal". ex: if targetvalue is 0.3333 and sensorreading is (1.0/3.0), output is:
Answers: 1
You know the right answer?
24 POINTS

4.1: In this project, the "Inventory" list should be updated every time Scratch...
Questions
Questions on the website: 13722363