Answer:
This is not a good solution
Explanation:
Your web browser uses port 80 outgoing to make web requests, so if you’re blocking incoming port 80, all you’re blocking is users of the organization from connecting to the internet. You have indeed close a vulnerable port to access from hackers, but this also can reduce the productivity of the organization.
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter month's budget");
double monthBudget = in.nextDouble();
double totalExpenses = 0.0;
double n;
do{
System.out.println("Enter expenses Enter zero to stop");
n = in.nextDouble();
totalExpenses += n;
}while(n>0);
System.out.println("Total expenses is "+totalExpenses);
System.out.println("The amount over your budget is "+ Math.abs(monthBudget-totalExpenses));
}
}
Explanation:
- Using Java programming language
- Prompt user for month's budget
- Use Scanner class to receive and store the amount entered in a variable
- Use a do while loop to continuously request user to enter amount of expenses
- Use a variable totalExpenses to add up all the expenses inside the do while loop
- Terminate the loop when user enters 0 as amount.
- Subtract totalExpenses from monthBudget and display the difference as the amount over the budget
Answer:
Following are the code in the C Programming Language.
//set integer datatype variable
int score;
//check condition is the score is in the range of 0 to 100
if(score > 0 && score < 100){
//print if condition is true
printf("Valid test scores");
}else{
//otherwise print the following string.
printf("test scores are Invalid");
}
Explanation:
<u>Following are the description of the code.</u>
In the following code that is written in the C Programming Language.
- Set an integer data type variable i.e., score.
- Then, set the if conditional statement to check the condition is the variable "score" is greater than 0 and less the 100.
- If the following statement is true then print "Valid test scores".
- Otherwise, it print "test scores are Invalid".
Answer:
Packaging.
Explanation:
The following system corporation should allow the sensation of psychedelic laptop case patterns planned for these upcoming year's publication. The machines may not disclose any further variations in features from what the following corporation provides. The above effort illustrates using Packaging that distinguishes a commodity as fresh.
So, the following answer is correct according to the given statement.
The view that perpetual processes can be thought of in terms of a software/hardware metaphor is known as the: information processing view.
<h3>What is the Information Processing View?</h3>
Information processing view is explained by the cognitive theory to explain how the brain encodes information and how information are filtered from what we pay attention to in a particular moment. This also determines what is stored in the short-term or in our long-term memory.
Therefore, the view that perpetual processes can be thought of in terms of a software/hardware metaphor is known as the: information processing view.
Learn more about the information processing view on:
brainly.com/question/24863946