Answer:
(1+3+9+11+2)/5=26/5=5.2
Which of the following is NOT a computer hardware?
Question 2 options:
Monitor
Internet
Keyboard
Mouse
Answer:
Internet
Explanation:
please make my answer as brainelist
Write code for the following screen shot. The text field should not accept any other name
except “CS101”. On wrong entry it should give you a message as soon as you leave the
text box.
write HTML, JavaScript code
Answer:
see picture; can't paste HTML here.
Explanation:
The three statements that take the problem-solving process to another level are
AND, OR, and THEN
IF, THEN, and ELSE
THIS, THAT, and OTHER
TRUE, FALSE, and POSSIBLE
The three statements that take the problem-solving process to another level are:
IF, THEN, ELSEIn computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.
For example, a sample algorithm is given below:
Ask for student scores
If score > 70
THEN
Print "You have an A"
ELSE
IF score greater than or equals to 60 and < 70
THEN
Print "You have a B"
What is a Conditional Statement?This refers to the types of statements that give alternate commands to the computer system if a condition is not satisfied.
Hence, we can see The three statements that take the problem-solving process to another level are:
IF, THEN, ELSEIn computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.
For example, a sample algorithm is given below:
Ask for student scores
If score > 70
THEN
Print "You have an A"
ELSE
IF score greater than or equals to 60 and < 70
THEN
Print "You have a B"
Read more about conditional statements here:
https://brainly.com/question/18736215
#SPJ1
What types of traffic can still fool stateful firewalls?
The types of traffic can still fool stateful firewalls incude the following:
Packets containing hazardous contents.Normal protocols that are running on non-standard ports.What is a firewall?A firewall can be defined as a network security protocol that monitors and controls inbound and outbound traffic based on set aside security rules.
In Computer technology, a firewall is typically used to control access to a computer or network, as it creates a barrier between a computer or a network and the internet in order to protect against unauthorized access.
Additionally, the other functionality which would influence a decision to deploy a stateless, rather than stateful firewall are:
Block TCP portsAllow network protocols.In this context, we can reasonably infer and logically deduce that the types of traffic can still fool stateful firewalls incude the following:
Packets containing hazardous contents.Normal protocols that are running on non-standard ports.Read more on stateful firewall here: brainly.com/question/16157439
#SPJ1
The project objective is the detailed description of the characteristics of the project. True or False?
The project objective is the detailed description of the characteristics of the project is a false statement.
What is the scope of a project?The term known as Project scope is known to be a term that connote the aspect of project planning that entails the act of knowing as well as documenting a list of different project goals, deliverables, tasks, costs and others.
Note that the putting down or recording of a project's scope is known to be called the scope statement
Therefore, The project objective is the detailed description of the characteristics of the project is a false statement because it is the project scope.
Learn more about project scope from
https://brainly.com/question/15071466
#SPJ1
Let T = {3, 5, 7, 9, 11, 22, 44}. Which of the following statements
are true?
Answer:
None of them, cause theres no statements and please let us know the language
HELP PLEASE
Which member of the game design team writes the step-by-step computer
instructions, or code, required to create games?
Game designer
Programmer
IT specialist
Sound engineer
Answer:
Programmer
Explanation:
# Activity 1
# This activity has the objective of practicing
# how to write if statements.
# For this example there are four kinds of flowers:
# 1. Blue and small ( less than 2 inches in size)
# 2. Blue and large ( >= inches in size)
# 3. Red and small
# 4. Red and large
# The user is prompted to enter the color and
# the size of the flower and you will
# print the corresponding kind of flower
The If-statement that is made up for the given activity is given below:
How to write an IF Statement# 1. Blue and small ( less than 2 inches in size)
If Blue is less than 2 inches in size
Print "This is blue and small"
# 2. Blue and large ( >= inches in size)
If Blue is greater than 6 inches in size
Print "This is blue and large"
# 3. Red and small
Loop
# 4. Red and large
End
Read more about if statements here:
https://brainly.com/question/11073037
#SPJ1
What are the common effects of excessive digital media
use on young children explained in the video?
Answer:
1) Lack of social interaction
2) Overdependence on digital devices
3) Cyber bullying
4) "P orn ography"
5) Reduction in Productivity
A Triforce number is a number that is divisible by at least one out of three other numbers. Write the Python statements using the For Loop to print the triforce numbers between two numbers A and B, inclusive. The numbers must be divisible by at least one of the three other numbers provided by the user.
#The program will receive five numbers as input, the first number (A), the last number (B), and the three numbers (let’s say num1, num2 and num3) to determine whether it is divisible or not. Do not print any number outside the range [A, B].
A program that will receive five numbers as input, the first number (A), the last number (B), and the three numbers (let’s say num1, num2 and num3) to determine whether it is divisible or not is given below:
The Programa = input()
first = int(a)
b = input()
second = int(b)
c = input()
third = int(c)
d = input()
fourth = int(d)
if a > b or a > c or a > d:
print ('the larges number' + a)
elif a < b or a < c or a < d:
print ('the smallest number' +a )
elif b > a or b > c or b > d:
print ('the larges number' + b)
elif b < a or b < c or b < d:
print ('the smallest number is' + b )
elif d > a or d > b or d > c:
print ('the biggest number is' + d )
elif d < a or d < b or d < c:
print ('the smallest numbet is'+ d)
else:
Using a While Looploopcount = 0
largest = -float('inf') # smallest possible value
smallest = float('inf') # largest possible value
while loopcount < 5:
loopcount = loopcount + 1
given = input()
given_as_integer = int(given)
# Compare to the current smallest and largest value
if given_as_integer < smallest:
smallest = given_as_integer
if given_as_integer > largest:
largest = given_as_integer
print('the largest number is', largest)
print('the smallest number is', smallest)
Read more about programming here:
https://brainly.com/question/23275071
#SPJ1
HELP ME OUT PLEASE!!!!!
Location, such as indoor versus outdoor, is an important consideration when taking photographs.
True False
Answer:
I'd say true
Explanation:
Because you can't do all the different techniques and styles if you're indoor instead of outdoor or vice versa. There is also lighting to consider
Answer:
true
Explanation:
Have good day
013 Ask the user to enter a number that is under 20. If they enter a number that is 20 or more, display the message "Too high", otherwise display "Thank you".
num = int(input("Please enter a number below 20: "))
if num >= 20:
print("Too high")
else:
print("Thank you")
The provided Python code is a simple input validation script. It prompts the user to enter a numerical value using the `input()` function and converts the input to an integer using `int()`.
var = int (input ("Enter a value less than 20: " ))
if var >= 20 :
print("To high")
else:
print("Thank you")
The code then checks if the entered value (`var`) is greater than or equal to 20 using an `if` statement.
If the user enters a number that is 20 or more, the script prints "Too high," indicating that the input is not within the desired range.
However, if the user enters a number less than 20, the `else` block is executed, and the script prints "Thank you," acknowledging the valid input. This code helps ensure the user provides an appropriate value within the specified limit.
Know more about Python code:
https://brainly.com/question/30427047
#SPJ5
When considering the purchase of a peripheral, you should ______. Select all that apply.
When considering the purchase of a peripheral, you should:
Study its specifications.Consider whether a service plan or an extended warranty is necessary.Know if your computer can connect to it.What is a peripheral apparatus?This is known to be an input/output component of a system that supplies data to and/or receives data from a digital device's central processing unit
It is seen as a type of an computer's auxiliary device used to input and output data is known as a peripheral or peripheral device.
Therefore, When considering the purchase of a peripheral, you should:
Study its specifications.Consider whether a service plan or an extended warranty is necessary.Know if your computer can connect to it.Hence, option A, B and C are correct.
Learn more about peripheral from
https://brainly.com/question/18994224
#SPJ1
When considering the purchase of a peripheral, you should Select all that apply. A. study its specifications B. disregard customer reviews C. consider whether a service plan or an extended warranty is necessary b. know if your computer can connect to it
How do you open a program such as a Microsoft Word when there are no icons on the
desktop?
Select one:
a. Click the start button and select program from the menu
b. Right click to reveal all icons
c. It is not possible to open program if no icons are on the desktop
d. Restart the computer
How do you turn off the computer?
As the network administrator for a growing ISP, you want to make efficient use of your network addresses. One of the network addresses IANA assigned to you is a Class C network of 197.14.88.0. You have decided to use the addresses in this Class C network to satisfy the IP address requirements of 16 corporate customers who need between 10 and 14 addresses each. Calculate a subnet mask that meets their needs. List the subnet mask and the first four subnet addresses the mask will create.
The List of the subnet mask and the first four subnet addresses the mask will create are:
IP 197.14.88.0Subnet 255.255.255.240First 4 host addresses 197.14.88.1, 197.14.88.2, 197.14.88.3, 197.14.88.4/20 (255.255.255.240) is 16 addresses with 14 usable IP addresses All of the corporate customer can have 20 starting with 197.14.88 and each of the IP addresses in that scope will be utilized.What are subnet addresses?It is known to be a kind of an autonomous system that is said to be made up of several networks can use subnet addressing to share an Internet address.
Therefore, The List of the subnet mask and the first four subnet addresses the mask will create are:
IP 197.14.88.0Subnet 255.255.255.240First 4 host addresses 197.14.88.1, 197.14.88.2, 197.14.88.3, 197.14.88.4/20 (255.255.255.240) is 16 addresses with 14 usable IP addresses All of the corporate customer can have 20 starting with 197.14.88 and each of the IP addresses in that scope will be utilized.Learn more about subnet addresses from
https://brainly.com/question/8907973
#SPJ1
what network component is not included in a home network?
Answer:
Bridge
Explanation:
Over the weekend, I was thinking about the process for analyzing the technology needs for this new department. The service department will need a system to support its unique needs of scheduling technicians, obtaining parts for repair, and setting up follow up appointments once parts are in-stock. I want to make sure that none of the analysis and design tasks fall through the cracks. I need you to identify all of the tasks that you will need to complete. I find it is helpful to create a Work Breakdown Structure to identify the tasks. Don't forget to include the system and industry analysis, system design, implementation plans, and security tasks in your WBS.
What would a WBS look like?
The way that WBS look like is given in the image attached.
What should a WBS look like?The WBS should is one that is known to be made up of about three levels of different detail.
Note that some areas or branches of the WBS will be said to be very subdivided than other areas, but when some of the branches have more or about three levels, the range of your project and the level of detail in your WBS are said to be right.
Therefore, A Work Breakdown Structure (WBS) is known to be a kind of an hierarchical outline of the work that is needed to complete a project.
Note also that the WBS is known to often “breaks down” the structure of a project into what we call the manageable deliverables. Hence, The way that WBS look like is given in the image attached.
Learn more about WBS from
https://brainly.com/question/13955678
#SPJ1
A Python Interpreter is (Check all that are true):
A program that executes a Python program one step at a time.
Just another name for any Python program in a .py file.
A program that can interpret what a Python snakes movements signify.
A program that computes the Pythagorean equation.
A Python Interpreter is: A. a program that executes a Python program one step at a time.
What is Python?Python can be defined as a high-level programming language that is designed and developed to build websites and software applications, especially through the use of dynamic commands (semantics) and data structures.
What is an interpreter?Interpreter can be defined as computer software programs that are designed and developed to translate (interpret) a programming language (code) into machine code, especially by interpreting only a single line of code at a time.
This ultimately implies that, an interpreter executes the instructions that are written in a programming language (code) one after the other (instruction by instruction), before it translate (interpret) the next line of code.
Read more on Python interpreter here: https://brainly.com/question/27996357
#SPJ1
List 3 specifications for the electromagnet
Answer:
Holding Force
Maximum Magnetic Field
Residual Induction, Br
1.) What is PEC?
2.) SWOT Analysis
Answer:
What is the meaning of the PEC?
pectoral muscle
a muscle connecting the ventral walls of the chest with the bones of the upper arm and shoulder
Explanation:
SWOT stands for Strengths, Weaknesses, Opportunities, and Threats. Strengths and weaknesses are internal to your company things that you have some control over and can change
what is a computer and explain it's features
Answer: A computer is a technological device usually used for storing or transferring data, usually in binary form. The features of a computer now are outstanding from say an old Macintosh, or anything before Windows 7 really, some of its features are for programming like PLC Robots, and what most people would use it for is internet access, a way to communicate with friends or my personal favorite gaming an entire world of games on applications like Steam or Epic Games, and even if you're not a gamer you can still appreciate the fast speeds and FPS I run at a standard 120FPS because it keeps most games running smooth and still has high-quality graphics.
Explain what is Ipconfig?
Answer:
Explanation:
Ipconfig (Internet Protocol Configuration) is a command-line utility that displays all current TCP/IP network configuration values and can release and renew certain leases for DHCP configurations.
Answer: (Internet Protocol CONFIGuration) A command line utility that is used to display and manage the IP address assigned to the machine.
Explanation: An important additional feature of ipconfig is to force refreshing of the DHCP IP address of the host computer to request a different IP address. This is done using two commands in sequence. First, ipconfig /release is executed to force the client to immediately give up its lease by sending the server a DHCP release notification which updates the server's status information and marks the old client's IP address as "available". Then, the command ipconfig /renew is executed to request a new IP address. Where a computer is connected to a cable or DSL modem, it may have to be plugged directly into the modem network port to bypass the router, before using ipconfig /release and turning off the power for a period of time, to ensure that the old IP address is taken by another computer.
What does new snap layout in windows 11 allow users
5. Prove that: If x = 5m + 6 and y = 5n + 6, then xy = 5k + 6 for some integer k where m and n are integers.
The definition of k as (5mn + 6m + 6n + 6), Hence we would have the proof that xy = 5k + 6
How to find the proofWe have x = 5m + 6
y = 5n + 6
Then xy = 5k + 6
For integer k where m and n are integers
Hence we would have to find the product of x and y
= ( 5n + 6)( 5m + 6)
xy = 25mn + 30m + 30n + 36
Given that
xy = 5k + 6
we would have
xy = 5(5mn + 6m + 6n + 6) + 6
This has given us the definition of k as (5mn + 6m + 6n + 6)
Hence we would have the proof that
xy = 5k + 6
Read more on integers here:
https://brainly.com/question/17695139
#SPJ1
Heat travels from a substance to a substance
Answer:
Heat is transferred from one object to another by the collision of the particles in the two substances.
Explanation:
Heat is transferred from one object to another by the collision of the particles in the two substances.
explain the features of the first operational stored - program computer
?
Answer:
The first stored-program computers. It featured the first rotating drum storage device. Manchester Baby, a developmental, fully electronic computer that successfully ran a stored program on June . It was subsequently developed into the Manchester Mark , which ran its first program in early April .
Simple Calculator
Write a program to take two integers as input and output their sum.
Sample Input:
2
8
Sample Output:
10
Remember, input() results in a string.
For the program for the given scenario, please visit the explanation part for better understanding.
What is programming?The method of constructing a set of commands that tells a desktop how to accomplish a task is known as programming. Computer programming languages such as JavaScript, Python, and C++ can be used to create programs.
The input() function can be used to request that a user enter data into the program and save it in a variable that the computer can process.
The print() function is used to output a message to the screen or another standard output device.
Given:
Sample Input:2,8
Sample Output: 10
Program can be written as:
a=int(input("Enter the first number:"))
b=int(input("Enter the second number:"))
sum=a+b
print("The sum of given numbers is",sum)
Thus, above mentioned is the program for the given scenario.
For more details regarding programming language, visit:
https://brainly.com/question/23959041
#SPJ1
How does technology effect ecological, social, practical, moral, ethical, political, andaesthetic values in the society?
The technology effect ecological, social, practical, moral, ethical, political, and aesthetic values in the society is it is one that has influenced the way individuals often communicate, as well as learn, and think.
How does technology affect moral values?The use of technology is one that helps a a lot of people to a lot of healthier, more educated, as well as making a lot of work decision.
The technology effect is one that affect the ways that humans do communicate, learn, and as well as think. It helps to shape the human society and also to know how people talk with each other on a consistent basis.
Since Technology plays a key role in society today. It is one that has both positive and negative effects on the world as well as human lives.
Hence, The technology effect ecological, social, practical, moral, ethical, political, and aesthetic values in the society is it is one that has influenced the way individuals often communicate, as well as learn, and think.
Learn more about technology from
https://brainly.com/question/25110079
#SPJ1
Given a variable fraction that contains a double value, write a statement that writes the value of fraction to standard output.
Given a variable fraction that contains a double value, a statement that writes the value of the fraction to standard output is print(float(fraction))
What is a Println?This is an output command that is used to print a line in a programming sequence that contains a variable.
Hence, we can see that Given a variable fraction that contains a double value, a statement that writes the value of the fraction to standard output is print(float(fraction))
This is because it is meant to contain decimal numbers when doing calculations so print(float(fraction)) is used.
Read more about println here:
https://brainly.com/question/14467221
#SPJ1
In this case:
var a = 6, b = "ten";
if ( a < b || b < a ) {
alert("this is true!");
}
the alert will not be run. It seems that a
Answer:
I'm sure that code is JS,
so the problem is you are using the < > operator with a number and a string. This is a comparison operator and wouldn't work with any other type than number