Answer:
word = str("Enter a word: ")
if "mold" in word:
print("Mold is in the variable word.")
else:
print("Mold is not in the variable word.")
Answer:disk caching
Explanation:
Disk caching speeds up hard drive performance
The answer to this question is a firewall. A Firewall is a network
security system that blocks and prevent unauthorized use or access of company’s
network. Firewall is also a program that screens and restricts viruses and other
users like hackers to reach the network through the internet.
Complete Question:
Write a do-while loop that continues to prompt a user to enter a number less than 100, until the entered number is actually less than 100. End each prompt with a newline. Ex: For the user input 123, 395, 25, the expected output is:
Enter a number (<100):
Enter a number (<100):
Enter a number (<100):
Your number < 100 is: 25
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n;
do{
System.out.println("Enter a number (<100):");
n= in.nextInt();
}while(n>100);
System.out.println("Your number < 100 is: "+n);
}
}
Explanation:
Using Java programming language
Import the scanner class to receive user input
create an int variable (n) to hold the entered value
create a do while loop that continuously prompts the user to enter a number less than 100
the condition is while(n>100) It should continue the loop (prompting the user) until a number less than 100 is entered.
Answer:
The correct answer to the following question will be "Remove".
Explanation:
A report consists of information taken from tables or queries and information stored in the design of the report such as names, heading, and graphics. Also known as the source of the report are tables or queries that provide the underlying data.
The majority of reporting tools provide only a standard report layout where the report developer may not construct a custom layout with elements positioned in certain areas.
And, If we want to remove any field while working in Design view on a report then we have to click on the remove button for such tasks,
Therefore, the Remove button is the correct answer.