Answer
True, BUT they can be trained.
Explanation:
Answer:
import java.util.*;
public class Main {
public static void main(String[] args)
{
Scanner scan = new Scanner();
double budget=0, num=0, total=0;
System.out.println("Your budget for the month? ");
budget=scan.nextDouble();
System.out.println("enter all expense, and after that type -9999 to quit: ");
while(num != -9999)
{
total+=num;
num=scan.nextDouble();
}
if(total<=budget)
{
System.out.println("under budget by ");
System.out.println(budget-total);
}
else
{
System.out.println("over budget by ");
System.out.println(total-budget);
}
}
}
Explanation:
- Take the budget as an input from user and store it to the budget variable.
- Loop until user has entered all his expenses and keep on adding them to the total variable.
- Check If the total is less than or equal to budget or otherwise, and then print the relevant message accordingly.
Answer:
When you use a WYSIWYG editor you typically specify the content and layout while the editor generates the HTML code
Explanation:
Required
Complete the blanks
In WYSIWYG, the user of the application provides contents to the WYSIWYG software and also designs the appearance; The appearance is referred to as the layout.
Throughout the design, the user will not use HTML codes; it is the duty of the WYSIWYG editor to generate HTML code based on the input designs by the user.
A physical CPU core without hyper-threading enabled can process two instructions at the same time is a false statement.
<h3>Can a CPU do multiple things at once?</h3>
Computers are those that do only one task (or process) at a single time. But a computer can alter tasks very fast and can do a lot of work.
The Central processing unit is known to be the brain of the computer system and without it, the computer cannot function or be turn on.
Hence, A physical CPU core without hyper-threading enabled can process two instructions at the same time is a false statement.
Learn more about CPU from
brainly.com/question/474553
#SPJ1