Explain how would you label each part of the computer?​

Answers

Answer 1

Answer:

Explanation:

you can simply label computer each part by showing the marking on them using numbers and writing below like 1. for CPU


Related Questions

What do packets and networks mean?

Answers

Answer:

A network packet is a small amount of data sent over Transmission Control Protocol/Internet Protocol (TCP/IP) networks. A packet is the unit of data routed between an origin and a destination on the internet or other packet-switched network — or networks that ship data around in small packets.

Explanation:

Please consider me for brainliest, because I'm trying to move up in rank!

Answer:

network is inernet

Explanation:

What is presentation system? Explain the usage of presentation system in government office.

Answers

Answer:

A presentation system is a group of equipment used to give a presentation. It can include a projector, screen, computer, audio system, and more. Presentation systems are often used in government offices for training, briefings, and other events.

Explanation:

Hope this helps!

Explain insert a ternary operator.?​

Answers

Explain insert ternary operator.?

______________________________________

QUESTION;

Explain insert ternary operator.?

ANSWER;

The ternary operator is an operator that exists in some programming languages,which takes three operands rather than typical one or two that most operators use. lt provides a way to shorten a simple of else block. for example,consider the below JavaScript code. var num =4, msg = "";if (num === 4 )

____________________________________

The
tests the ability of a networking technician to install,
maintain, troubleshoot, and support a network, and understand various aspects of
networking technologies, including TCP/IP and the OSI models.
COMPTIA NETWORK+
COMPTIA A+
COMPTIA ACCESS
COMPTIA A+

Answers

The COMPTIA NETWORK+ tests the ability of a networking technician to install, maintain, troubleshoot, and support a network, and understand various aspects of networking technologies, including TCP/IP and the OSI models.

Who is a Network Technician?

This refers to a person that oversees a network to check and control the vulnerabilities in it.

Hence, we can see that The COMPTIA NETWORK+ tests the ability of a networking technician to install, maintain, troubleshoot, and support a network, and understand various aspects of networking technologies.

Read more about network certifications here:

https://brainly.com/question/14472075

#SPJ1

Answer:compita network+

Explanation:I just did it and got it right big w

2.10.2: Math functions Compute: z = y/|x|

Answers

Answer:

What variable do I solve for?

Explanation:

Activity
Perform an online search and identify the tools for system management. Describe the features/functions of any three system management tools

Answers

The three system management tools

Hardware inventories.Software inventory and installation.Anti-virus and anti-malware

What are the function of hardware features?

The feature and functions of inventory management is that they are  said to be tools that are used to tell or know the right amount and type of input products, as well as the products in process and those that are finished products.

Note that it helps in the facilitating of any production and sales operations.

Therefore, The three system management tools

Hardware inventories.Software inventory and installation.Anti-virus and anti-malware

Learn more about  management tools from

https://brainly.com/question/24662469
#SPJ1

Do you believe that software manufacturers should be tolerant of the practice of software piracy in third-world countries to allow these countries an opportunity to move more quickly into the information age? Why or why not? What would the benefits and disadvantages of this be?​

Answers

Answer:

I do not believe that software manufacturers should be tolerant of the practice of software piracy in third-world countries. I believe that this would be a disservice to the software manufacturers, as well as to the countries themselves.

The benefits of software piracy are that it allows countries to have access to software that they would otherwise be unable to afford. However, the disadvantages are that it encourages people to pirate software instead of buying it, which hurts the software industry. It also means that people in these countries are using software that is not licensed, which could lead to security and stability issues.

Explanation:

Hope this helps!

Is Computer Science a science? explain​

Answers

Answer:

Computer Science is a science because it is a systematic and logical approach to discovering how computers work and to solving problems through the use of computers.

Explanation:

Hope this helps!

Answer:

Computer science is considered a science because it involves the study of algorithms and computational systems, which are based on scientific principles such as logic and mathematical principles. It involves the use of scientific methods, such as experimentation and data analysis, to design and develop new technologies and systems. Additionally, computer science research often involves collaboration with other scientific fields, such as biology, physics, and engineering, to solve complex problems and advance scientific knowledge. Overall, computer science is a field that applies scientific principles and methods to the study of computational systems and technologies.

Explanation:

Write a program that inputs the length of two pieces of wood in yards and feet (as whole numbers) and prints the total.

Sample Run:

Enter the Yards: 3
Enter the Feet: 2
Enter the Yards: 4
Enter the Feet: 1

Sample Output:
Yards: 8 Feet: 0

Answers

The program accepts separate fabric lengths in feet and inches and displays the total fabric length in feet and inches.

What is programming?

Creating a set of instructions that tells a computer how to perform a task is known as programming. Computer programming languages such as JavaScript, Python, and C++ can be used to create programs.

The Python 3 program is as follows:

feet_1 = int(input('length in feets : '))

Prompts user to enter feet length of fabric 1

inch_1 = int(input('length in inch : '))

Inch length of fabric 1

feet_2 = int(input('length in feets : '))

Feet length of fabric 2

inch_2 = int(input('length in inch : '))

Inch length of fabric 2

inch_sum = inch_1 + inch_2

Sum of the inches

inch_left = inch_sum%12

Remainder in inches after converting to feets

inch_to_feet = inch_sum // 12

Whole number of the converted inch sum

feet_sum = feet_1 + feet_2 + inch_left

Total sum of the feet length

print('Feet : %d Inches : %d' %(feet_sum, inch_left))

Display the sum

Thus, this can be the format for given scenario.

For more details regarding programming, visit:

https://brainly.com/question/14368396

#SPJ1

What is e-learning
with full explanation

Answers

Answer:

E-learning is a type of learning conducted digitally via electronic media, typically involving the internet. It can be accessed via most electronic devices including a computer, laptop, tablet or smartphone, making it a versatile and easy way for students to learn wherever they are.

Explanation:

HOPE IT HELPS :D

As the complexity of a network increases, the possibility of security breaches decreases. is this true or false

Answers

As the complexity of a network increases, the possibility of security breaches decreases is a false statement.

What is the complexity of a network?

Network complexity is known to be a term that connote the series of nodes and alternative paths that is said to often exist inside of a computer network.

A network is seen to be complex due to the nature of its functions as it is known to be often multipurpose in nature.

It is one that is seen as the different kinds  of communication media, communications equipment, as well as the protocols, hardware and software applications that can be located in the network.

Therefore, As the complexity of a network increases, the possibility of security breaches decreases is a false statement.

Learn more about security breaches from

https://brainly.com/question/24956493
#SPJ1

input("Enter a number: ")
print(num * 9)

Answers

Note that in the above case, if a person save the input as num,

this will print the input 9 times.

How do you go about this code?

Therefore, since there is 9 times:

So

num = input("Enter a number: ")

print(num * 9)

If a person actually want to do a real math calculations, then one need to input needs to be inside the number.

num = float(input("Enter a number: "))

print(num * 9)

This  is one that do not  bring about any errors where the user do not input a number.

Learn more about coding from

https://brainly.com/question/23275071

#SPJ1

GIVE THE FOLLOWING:

1. Research three iconic or famous personalities in the field of business who have been featured in print, broadcast, and new media.

2. Compare and contrast how they are presented in each media type.

3. Point out various ways on how the different types of media helped them empower themselves in the field they have chosen.​

Answers

Answer:

i know i know hehe

Explanation:

yes it is

yes

1. Three iconic personalities in the field of business who have been featured across print, broadcast, and new media are:

a. Elon Musk - Co-founder and CEO of Tesla and SpaceX.

b. Oprah Winfrey - Media mogul and talk show host.

c. Warren Buffett - Billionaire investor and CEO of Berkshire Hathaway.

2. In print media, these personalities are often presented through in-depth interviews, profiles, and feature articles that delve into their personal and professional lives.

In broadcast media, they appear on TV shows, interviews, and documentaries, allowing the audience to see and hear them directly.

New media, including social media platforms, showcases their insights, achievements, and behind-the-scenes moments, engaging with a global audience in real-time.

3. Different types of media have empowered these individuals by providing them with platforms to reach and influence a vast audience.

Print media offers credibility through well-researched pieces, broadcast media allows for mass exposure and connection with viewers, while new media enables direct communication, promoting their ideas, projects, and businesses worldwide.

This exposure has helped enhance their reputations, attract investors, and create a loyal following, thus strengthening their influence and success in the business world.

Know more about iconic personalities:

https://brainly.com/question/33415078

#SPJ7

In order to paint a wall that has a number of windows, we want to know its area. Each window has a size of 2 ft by 3 ft. Write a program that reads the width and height of the wall and the number of windows, using the following prompts.

Wall width:
Wall height:
Number of windows:

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that write a program that reads the width and height of the wall and the number of windows, using the following prompts

Writting the code:

import java.util.Scanner;

public class WallArea {

   public static void main(String[] args) {

       Scanner sc = new Scanner(System.in);

       final int areaOfWindows = 6;

       System.out.print("Wall width: ");

       double width = sc.nextDouble();

       System.out.print("Wall height: ");

       double height = sc.nextDouble();

       System.out.print("Number of windows: ");

       double numberOfWindows = sc.nextDouble();

       double area = (width * height) - (numberOfWindows * areaOfWindows);

       System.out.println("Area: " + area);

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Using pseudocode, provide an algorithm that would test to see if any two people in a group of about 30 people have the same birthday.

Answers

Zodiac signs because they are pseudoscience and will tell you who has the same birthday

GIVE THE FOLLOWING:

1. Research three iconic or famous personalities in the field of business who have been featured in print, broadcast, and new media.

2. Compare and contrast how they are presented in each media type.

3. Point out various ways on how the different types of media helped them empower themselves in the field they have chosen.​

Answers

Answer:

ohhh i know it

Explanation:

yes i know

yeah

Which virus is also known as hybrid virus ?​

Answers

Answer:

A multipartite virus

Explanation:

Which of the following are types of containers that can be used in Windows Server 2016?

Answers

Answer:

Windows Server Container and Hyper-V Container. They differ mainly in the degree of isolation they provide. Windows Server Container uses process and namespace isolation technology to isolate applications.

Explanation:

window server 2016 support two types of container nearly

what is a mesh topology? Why is it not used commonly?​

Answers

what is a mesh topology?

Why is it not used commonly?

_____________________________________________

QUESTION:

WHAT IS A MESH TOPOLOGY?

A mesh topology is a network set-up where each computer and network device is interconnected with one another.This topology set-up allows for most transmissions to be distributed even of one of the connections goes down.lt is a topology commonly used for wireless networks.

WHY IS IT NOT USED COMKONLY?

Because of the sidnificant cost and work involved in having network components directly connected to every other component.

__________________________________________

[tex] \qquad \qquad \qquad \qquad \qquad \large \color{pink}{ \mathrm{09 / \: 07/\: 22}}[/tex]

Mesh topology is a type of topology in which nodes are interconnected to each other where signalscan transfer to any node at any time within a network.

Due to its cost expensive and difficult to troubleshoot,it is not used commonly.

Information overload can put tension on your brain and cause you to feel
A. tired and forgetful.
B. busy and rushed.
C. depressed.
D. addicted.

Answers

A brain under stress from too much information might make you feel rushed and busy. Hence, option B is correct.

What is brain?

Every physical function, including intellect, memory, emotion, touch, motor skills, vision, breathing, temperature, and hunger, is controlled by the sophisticated organ known as the brain. The spinal cord that protrudes from the brain is part of the central nervous system, or CNS.

In a typical adult, the brain weighs roughly 3 pounds and contains about 60% fat. The remaining 40% are made up of various water, protein, carbohydrate, and salt combinations. The brain does not function like a muscle on its own. It is composed of glial cells, neurons, blood vessels, and nerves.

To get more information about brain :

https://brainly.com/question/11950231

#SPJ1

While troubleshooting a problem, you realize the problem is caused by a complex series of issues that will affect a large number of users even to test your theory as to the cause, and that process won’t even solve the problem. What should you do next in the troubleshooting process?

Answers

The things that you should  do next in the troubleshooting process are:

Set up a plan of action to handle or resolve the problem and then you need to implement the solution.Lastly you have to verify full system functionality and, if applicable, do implement any kind of preventive measures.

What is the troubleshooting theory?

In regards to the issue above, one need to set up a theory of probable cause and then they need to Test the theory to know the cause and when one has find the main cause of the problem, one need to follow the sets above.

The term troubleshooting in a computer is known to be a term that connote a systematic method of  problem-solving that is said to be used a lot to be able to ascertain and correct issues with complex machines, electronics, computers as well as software systems.

Therefore, The things that you should  do next in the troubleshooting process are:

Set up a plan of action to handle or resolve the problem and then you need to implement the solution.Lastly you have to verify full system functionality and, if applicable, do implement any kind of preventive measures.

Learn more about troubleshooting  from

https://brainly.com/question/14394407
#SPJ1

list at least 5 disadvantages caused by computer viruses?​

Answers

The 5 disadvantages caused by computer viruses:

A lot of pop-ups.Slow performance.Consistent crashes.Storage space shortage.The issues of Missing files.
what are Computer virus?

A computer virus is known to be a kind a type of computer program that is, if it is executed, tends to double itself by changing other computer programs as well as inserting its own  kind of code.

Note that if the  replication process is said to succeeds, the affected areas are then known to be called "infected" with a computer virus.

Other disadvantages of computer virus are:

Unknown login items.Increased network traffic.Browser homepage is altered.

Therefore, The 5 disadvantages caused by computer viruses:

A lot of pop-ups.Slow performance.Consistent crashes.Storage space shortage.The issues of Missing files.

Learn more about computer viruses from

https://brainly.com/question/8401461

#SPJ1

what is window vista

Answers

Answer:

Windows Vista is a major release of the Windows NT operating system developed by Microsoft. It was the direct successor to Windows XP, which was released five years before, at the time being the longest time span between successive releases of Microsoft Windows desktop operating systems. Development was completed on November 8, 2006, and over the following three months, it was released in stages to computer hardware and software manufacturers, business customers and retail channels. On January 30, 2007, it was released internationally and was made available for purchase and download from the Windows Marketplace; it is the first release of Windows to be made available through a digital distribution platform.

Explanations

you can write half because it is long

what is the function of a head frame

Answers

Answer:

it is to enable the hoisting of machinery,personnel or materials.

Explanation:

which means it is use to raise materials during construction work

You can use the Cut and Paste commands to move files from one location to another.
er:
a O True
b O False

Answers

Answer:

true

Explanation:

Ashley has many interests. She likes to read, listen to music, and play soccer with her
friends. But her favorite thing to do is to go camping with her family. She likes camping
because she gets to spend time with her mom and dad and little brother. She also loves
being outside and sleeping in a tent. She likes cooking over a campfire and roasting
marshmallows. Camping is a great way to get fresh air and exercise.
2. Which of the following is a supporting detail about Ashley from the
paragraph that gives the best support for the main idea?
OShe likes all kinds of music.
OShe likes weekends.
OShe likes cooking over a campfire.
OShe likes her little brother.
(1 point)

Answers

Answer:

c. she likes cooking over a campfire

Explanation:

it says it right in the story

I computer use binary, octal, and decimal number system true or false

Answers

Answer: No/False

Explanation: Computers are designed to work in binary, which converts hexadecimel numbers into binary, which is 0's and 1's, to then run the functions of a computer. Octal is a programming language used by early IBM. And the decimal number system doesnt really apply seeing as binary already does those equations easily.

If you have a really good picture of your friend, it is okay to post without asking because they allowed you to take it in the first place. O True O False​

Answers

false-you shouldn’t post anything with other peoples consent.
The correct answer is false.

OBJP4 Self-Check 1.2: binary1
Language/Type:
Author:
Java basics binary numbers
Marty Stepp (on 2016/09/08)
Convert each of the following decimal numbers into its equivalent binary number:
6
44
72
131

Answers

Answer:

6 = 0110

44 = 101100

72 = 1001000

131 = 10000011

Explanation:

You can use the windows calculator in programmer mode to make this conversion easily.

If you want to do it by hand, here's one way to do it.

1. Write from right to left.

2. If your number is even, write down a 0.

3. If your number is odd, write down a 1 and subtract 1 from it.

4. Divide your number by 2.

5. If number not 0, go to step 2.

Write a program that takes the radius of a sphere (a floating-point number) as input and then outputs the sphere’s: Diameter (2 × radius) Circumference (diameter × π) Surface area (4 × π × radius2) Volume (4/3 × π × radius3) For convenience, the program can import the math module. Below is an example of the program input and output: Radius = 5 Diameter : 10.0 Circumference: 31.41592653589793 Surface area : 314.1592653589793 Volume : 523.5987755982989

Answers

A program that takes the radius of a sphere (a floating-point number) as input and then outputs the parameter of the spheres is given below:

The Code

from math import pi

r = radius

radius = int(input("Radius = "))

print (float("Diameter : " + int(input(float(2 * radius))))

radius = int(input("Radius = "))

diameter = <...calculate diameter...>

print('Diameter =', diameter)

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Other Questions
Exercise 1 Draw one line under the simple subject. Draw two lines under the simple predicate. Draw a vertical line (|) between the complete subject and the complete predicate. Jan performed the chemistry experiment successfully. Suppose a member of your family has become increasingly depressed in recent months, and its apparent that the person needs treatment. Youre chosen to look into the options and to make decisions about the treatment. How does this result compare to the value that you obtained using chebyshev's theorem in part (a)? What is the correct sequence of sleep stages during the first 70 minutes of sleep? I am working on turning a song into a story for English 11. Could anyone help me get a couple ideas from these lyrics? Thank you. I just need a few story ideas based off the lyrics belowBeliever by American AuthorsNevermind it isn't letting me put the lyrics in so if you could maybe just listen to the song a few times. Green gardens, a landscaping company, combines with tree huggers, a tree trimming company, to form a company called land lovers. this scenario illustrates a(n):_________ The shaded region displayed in the graph does not include the dashed line. Which of the following best represents all the shaded points? The nurse is training a health care provider on precautionary measures to avoid equipment-related accidents. which information would be included in the training? What is the name of this fighter jet Division of labor makes ___ possible as each worker becomes more efficient at a single task. Hypertension develops in a school-aged child with acute glomerulonephritis. what medication does the nurse anticipate that the healthcare provider will prescribe? Which graph is the result of reflecting f(x) = (8)* across the y-axis and then across the x-axis?--8-7-6-5-4-387-6-th78co t761054-3NW2-4-12 2. Which statement best expresses themain idea of the chart?E There are six Indo-European languages.F There are similarities among wordsin Indo-European languages.G Indo-European languages arespoken in India and Europe.H Persian is unlike most other Indo-European languages. A home care record generated for a medicare patient contains a home care certification and plan of care also known as? Why did the colonists protest the tea act, even though it actually lowered the price of tea?. If rutherford had fired neutral particles at the gold foil rather than positively charged alpha particles, how would his results have been different? Mary jane was reluctant at first to make the necessary changes at work. what was she afraid of? "For Quartering large bodies of armed troops among us...."-from The Declaration of IndependenceThis line of was included in The Declaration of Independence because Parliament had previously punished the colonists forABCDattacking British troops at Lexington and Concord.throwing over 300 chests of tea into Boston Harbor.legislatures that had blocked the implementation of Royal decrees.the violence associated with the Boston Massacre. 24. In a noun-noun kenning, the second noun ends in...a)-ing b)-yc)-ed d)-er Two hundred liters of a punch that contains 35% fruit juice is mixed with300 liters of another punch. the resulting fruit punch is 20% fruit juice. find the percent of fruit juice in the 300liters of punch