Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The teacher wishes to see if her pupils can make sense of words from which certain letters have been removed. She requires a when[space]key_pressed script

The teacher wishes to see if her pupils can make sense of words from which certain letters have been removed.

She requires a when[space]key_pressed script that will take a word from the user and display a new word that is the same as the original except that all letters in the second half of the alphabet (n to z inclusive) have been removed.

The user should input the word as a single string and the new word that is displayed should be a single string.

For example, if the user enters

'rhinocerous'

then

'hice'

is displayed.

One way to think about creating the new word for display is to start with the new word as an empty string and then work through the letters in the original word from first to last, creating the new word incrementally. This might be visualized as in Figure 2.

Create and write down an algorithm to solve this problem. You might like to use the ideas above or alternatives of your own.

Create a when[space]key_pressed script to implement your algorithm. Depending on your algorithm and the way in which you choose to implement it, you may also decide to have a when_green_flag_clicked script.

add to it two tests you would perform to check whether the completed program fulfils the specification. you are only required to add two.)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Temple Of Django Database Performance

Authors: Andrew Brookins

1st Edition

1734303700, 978-1734303704

More Books

Students also viewed these Databases questions

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago