Answer:
Forms help to reduce the data entry errors by the following ways as follows:
- As, forms are designed in a more user friendly way. So that it is easy to understand to the users and it also increases the accuracy of the information.
- In forms, very particular sections of information are divided into different section so it reduces the complexity and result into less data entry error.
- Forms automatically validate the data or information efficiently that is filled by the users. So, that is why there is less number of changes of errors while data entry.
Some programs that we have used that have condition-controlled loops and count-controlled loops due to the following reasons.
Explanation:
Condition-controlled loops
A program could be made more intelligent by programming it to avoid hazards. For example, if the robot vehicle is 3 cm from the edge of the table and you tell it to move forwards 5 cm, it will drive off the edge of the table. To stop this from happening, you might write a condition-controlled loop like this:
move forward
repeat until (touching table edge)
Condition-controlled loops can be used to add a high degree of intelligence to a computer system.
Count Controlled Loops
A count controlled loop is a repetition structure that iterates a specific number of times
You can write a count controlled loop using a
while() loop.
For example:
counter = 0
while counter < 5:
print (“This will print 5
times”)
counter += 1
Answer:
public static boolean isPalindrome(String word) {
//TODO: Complete this method
String reverse = "";
for (int i = (word.length()-1); i>=0; i--) {
if(word.charAt(i)!=' '){
reverse+=word.charAt(i);
}
}
String without_space = word.replaceAll(" ", "");
return reverse.equals(without_space);
}
Answer:
The answer that goes in the blank is <u>manual</u>
Explanation:
Have a good day :)
Answer:
Pay attention in your class.
Explanation:
If you paid attention in your class, you would have at least a basic understanding of the material.