The answer Direct and inderect
Answer:
Testing
Explanation:
From the question, we understand that Carlos just finished the coding of the app.
In software development life cycle, the coding phase is where Carlos is expected to make use of his choice of programming language to design the app;
This stage is an integral part of the implementation process and according to the question, the coding has been completed;
The next phase or stage after the implementation phase is testing.
Hence, Carlos is getting ready to test the app.
Answer:
Explanation:
The following code is written in Python. It asks the user for an input. Then cleans the input using regex to remove all commas, whitespace, and apostrophes as well as making it all lowercase. Then it reverses the phrase and saves it to a variable called reverse. Finally, it compares the two versions of the phrase, if they are equal it prints out that it is a palindrome, otherwise it prints that it is not a palindrome. The test case output can be seen in the attached picture below.
import re
phrase = input("Enter word or phrase: ")
phrase = re.sub("[,'\s]", '', phrase).lower()
reverse = phrase[::-1]
if phrase == reverse:
print("This word/phrase is a palindrome")
else:
print("This word/phrase is NOT a palindrome")
You didn't include the original function, but the new function will contain something like:
function kelvin_to_celsius(k)
{
return k - 273.15;
}
Depending of course on your programming language.
The outcome for negative Kelvin is undefined, you could test for that.
The statement that is true about this step is that:
- You have drawn pictures of what your screens will look like and identified the input-process-output that occurs on each screen.
- In this step, you defined your target audience and main goal.
<h3>How wireframe is made to create mobile apps?</h3>
The Steps for wireframing are:
- Begin by mapping out a specific user flow.
- Do a Sketch of the core part and then begin wireframing by setting a Mobile Frame.
- Se the layout using boxes and use design patterns.
- Make sure to link the pages together to create a flow.
Note that The statement that is true about this step is that:
- You have drawn pictures of what your screens will look like and identified the input-process-output that occurs on each screen.
- In this step, you defined your target audience and main goal.
Learn more about wireframe from
brainly.com/question/12734458
#SPJ1