A clickable text or image that takes you to a different site is called a Hyperlink or simply a Link.
Answer:
1. multiplying two numbers when you meant to add them - Logical Error
2. dividing by zero - Compile time error
3. semi colon at the end of a programming statement - Logical error
4. wrong in output - Run time error
5. when you should have typed a - Compile time error
6. producing inaccurate results - Logical error or Run time error
Explanation:
Compile time error is a lack in computer programming which causes to violate the rules which are defined by user in the program.
Run time error produces wrong outputs. It causes lags in the softwares which makes the output inefficient. It even causes programs crash when the output is just seconds away.
Logical error is the situation where programs completes the task assigned but with the wrong syntax. The output is produced with some abnormality.
Answer: measures how quickly a system performs a process or transaction
Explanation:
Computer performance refers to how well a given computer system performs, which is estimated by its accuracy, efficiency and speed when completing a process or transaction.
A computer performance evaluation will assess a system's resources and outputs to make sure that it´s performing in the best possible way.
Some parameters of performance are latency, speed, throughput, and bandwidth.
Answer:
The program in Python is as follows:
word = input("Word: ")
if len(word) < 5:
print("At least 5 characters")
else:
pal = word[0:5]
word = word[0:4]
word = word[::-1]
pal+=word
print(pal)
Explanation:
This gets the word from the user
word = input("Word: ")
This checks if the length of the word is less than 5.
if len(word) < 5:
If yes, this tells the user that at least 5 characters is needed
print("At least 5 characters")
If otherwise
else:
This extracts the first 5 characters of the word into variable named pal
pal = word[0:5]
This extracts the first 5 characters of the word into variable named word
word = word[0:4]
This reverses variable word
word = word[::-1]
This concatenates pal and word
pal+=word
This prints the generated palindrome
print(pal)
The two features could be added to a game using an "if () then " block are:
- Using nested If Then blocks.
- Checks the specific Bid quantity for the instrument.
<h3>What does the If Then block mean?</h3>
The If Then block is known to be the outputs one of a given two values, that is as a result of the value of a Boolean input.
Note that the input value is very important and as such, The two features could be added to a game using an "if () then " block are:
- Using nested If Then blocks.
- Checks the specific Bid quantity for the instrument.
Learn more about game from
brainly.com/question/1786465
#SPJ1