Examples of hardware that computes on a network can share are the operating system and the web browsers

Answers

Answer 1

Answer:

False.

Explanation:

The hardware component of a computer can be defined as the physical parts or peripherals that enables it to work properly. Some examples of hardware components are monitor, speaker, central processing unit, motherboard, hard-drive, joystick, mouse, keyboard, etc.

A software component of a computer comprises of software application or program that are used by the computer to manage or control software application, computer hardware and user processes. Some examples of software components are operating system, registry keys, antivirus, media player, word processor, etc.

In conclusion, the hardware components of a computer are the physical parts that can be seen and touched while the software components cannot be touched but rather are installed as a program.

Hence, examples of software but not hardware that computers on a network can share are the operating system and the web browsers


Related Questions

An array is mirrored if one half of the array is a reflection of the other. For example, these are mirrored arrays:

int[] a = {5, 4, 3, 4, 5};
int[] b = {9, 2, 2, 9};

The intent of the following methods is to determine whether an array is mirrored or not.

public boolean isMirrored(int[] array) {
// Add code here
}

private boolean isMirrored(int[] array, int leftIndex, int rightIndex) {
if (leftIndex > rightIndex) return true;
if (array[leftIndex] != array[rightIndex]) return false;
return isMirrored(array, leftIndex + 1, rightIndex - 1);
}

Which of the following statements, when inserted at the comment, “Add code here”, would complete the first isMirrored() method, call the second isMirrored() method, and produce the correct results?
A. return isMirrored(array)
B. return isMirrored(array, 0, 0)
C. return isMirrored(array, 0, array.length - 1);
D. return isMirrored(array, array[leftIndex], array[rightIndex]);


Which of the following is a method of the File class that can return an array of Files in a directory?
A. listFiles()
B. files()
C. getFiles()
D. directory()



Consider the following code.

public static int fileMethod(File dir) {
File[] files = dir.listFiles();
if (files == null) return 0;

int count = 0;
for (File f : files) {
if (f.isFile()) count++;
else count += fileMethod(f);
}
return count;
}

If dir represents a starting directory, which of the following statements best describes the operation of fileMethod()?
A. It counts and returns the number of files and directories inside dir and all subdirectories of dir.
B. It counts and returns the number of files, not counting directories, inside dir and all subdirectories of dir.
C. It counts and returns the number of files and directories only inside dir and inside only the first subdirectory found inside dir.
D. It counts and returns the number of files, not counting directories, but only those found inside dir and not its subdirectories.



Which of the following methods will correctly calculate the factorial of a positive number using iteration?
A.
public static long factorial(int n) {
if (n == 0) return 1;
else return n * factorial(n);
}
B.
public static long factorial(int n) {
if (n == 0) return 1;
else return n * factorial(n - 1);
}
C.
public static long factorial(int n) {
int product = n;
while (n > 0) {
n--;
product *= n;
}
return product;
}
D.
public static long factorial(int n) {
int product = n;
while (n > 1) {
n--;
product *= n;
}
return product;
}

Consider the following code.

public static String display(String s, int c) {
if (c == 0) return s;
else {
if (c > 3) return "-" + display(s, c - 1) + "-";
else return "=" + display(s, c - 1) + "=";
}
}

Which of the following methods most accurately reproduces the behavior of the display() method without using recursion?
A.
public static String d1(String s, int c) {
String retVal = "";
for (int i = 0; i < c; i++) {
if (i > 3) retVal += "-" + s + "-";
else retVal += "=" + s + "=";
}
return retVal;
}
B.
public static String d2(String s, int c) {
String retVal = "";
for (int i = 0; i < c - 3; i++) {
retVal += "-";
}
for (int i = 0; i < Math.min(3,c); i++) {
retVal += "=";
}
retVal += s;
for (int i = 0; i < Math.min(3,c); i++) {
retVal += "=";
}
for (int i = 0; i < c - 3; i++) {
retVal += "-";
}
return retVal;
}
C.
public static String d3(String s, int c) {
String retVal = "";
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
for (int j = 0; j < 3; j++) {
retVal += "=" + s + "=";
}
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
return retVal;
}
D.
public static String d4(String s, int c) {
String retVal = "";
for (int i = 0; i < c; i++) {
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
retVal += "===" + s + "===";
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
}
return retVal;
}

Answers

Answer:

Sierra Madre Oceandental rangeHURRY

Dr. Khan works for the marketing department of a company that manufactures mechanical toy dogs. Dr. Khan has been asked to assess the effectiveness of a new advertising campaign that is designed to be most persuasive to people with a certain personality profile. She brought four groups of participants to the lab to watch the video advertisements and to measure the likelihood that they would purchase the toy, both before and after watching the ad. The results of Dr. Khan’s study are presented below.

Part A

Explain how each of the following concepts applies to Dr. Khan’s research.

Survey

Dependent variable

Big Five theory of personality

Part B

Explain the limitations of Dr. Khan’s study based on the research method used.

Explain what Dr. Khan’s research hypothesis most likely was.

Part C

Use the graph to answer the following questions.

How did the trait of agreeableness affect how people responded to the new ad campaign?

How did the trait of conscientiousness affect how people responded to the new ad campaign?What's the output of a system modeled by the function ƒ(x) = x5 – x4 + 9 at x = 2?

Please Help

A)

24

1. why is manufacturing considered the biggest contributor to progress

Answers

Answer:

A vibrant manufacturing base leads to more research and development, innovation, productivity, exports, and middle-class jobs. Manufacturing helps raise living standards more than any other sector. Manufacturing generates more economic activity than other sectors.

Janet is working on a highly confidential company budget spreadsheet, and she needs to prevent anyone, including administrators in the IT department, from being able to open the file and view its contents.
What should she do?

A) Use the Home tab, select Protect Sheet, and enter a password to prevent access to the sheet.
B) Click the Info tab in the Backstage view, select Protect Workbook, select Encrypt with Password, and enter a password.
C) Click the Review tab, select Protect Workbook, and enter a password for protecting the sheet.
D) Click the View tab and customize the view to protect the sheet from unauthorized users.

Answers

It has to be I took it

If you ship bakudeku. I swear.
*RANTS*

Answers

cries in bakudeku shipper

Which audio media can be directly sent to the subscribers through an RSS feed?
A.
online streaming
B.
podcast
C.
cloud file
D.
live playback
E.
broadcast

Answers

I believe it’s c sorry if I’m incorrect though

Answer:

The correct answer should be B. podcast

Explanation:

there is a website called RSS feed that is podcasts

does anyone know what's wrong with this code

Answers

hmmm- I don’t see anything right now, I’m at the end of a semester in Computer technology.

(WEB DESIGN FINAL QUESTION) PLEASE HELP
what is a trademark?

Answers

Answer:

a trade mark is something where someone owns the rights to something in a specific country

adassadad saflalfaklfajfklajfalkfjalkfjalkfalkf

Answers

Answer:

this belongs on r/ihadastroke

Explanation:

Answer: ok

Explanation:

what are the outputs of these please help

Answers

Answer:

monkey know monkey not tell

Explanation:

Answer:

it will ask for a number.

if that number < or = to 0

then

it will add three to that number.

if that is not true

and that number > 0 and that number < 5

than

it will add one to that number.

if none of those are true

than

it will subtract 5 to that number.

Explanation:

A small computer on a smart card has 4 page frames. At the first clock tick, the R bits are 1000 (page 0 is 1 and the rest are 0). At subsequent ticks, the values are 0110, 0101, 1010, 1101, 0101, 0011, and 1100. If the aging algorithm is used with a 16-bit counter, give the values of the four counters after the last tick. If page fault occurs, which page should be swapped out

Answers

Answer and Explanation:

Aging algorithm Aging algorithms are the NFU algorithm with modification to know the time of span and increment the page referenced. The ageing method sort customer invoices by date in four columns. By using the ageing algorithm, counters are shifted by 1 bit, and the R bit is added to the leftmost bit. The values of counters are

Page 0:  01101110

Page 1:   01001001

Page 2:  00110111

Page 3:  10001011

The system clock is 2ns and interval is 2ms for that one bit per interval is the ability to analyze the references in a tick. Counters have a finite number and have two pages, where counter value 0 have two pages. The page fault appears, and pick just one of them randomly.



…..is the smallest size in audio files

Answers

Answer:

Wav files can be 16 bit,8 kHz (i.e 128 k bits per second) while mp3 could be compressed to 16 kbits per second. Typically wav is x10 larger than mpg. This is ratio is highly content specific. Wav is a raw format, while mp3 is a compressed format for audio.

Explanation:

Answer:

Wav files can be 16 bit,8 kHz (i.e 128 k bits per second) while mp3 could be compressed to 16 kbits per second. Typically wav is x10 larger than mpg. This is ratio is highly content specific. Wav is a raw format, while mp3 is a compressed format for audio.

Ryan is applying a sort to the data in a table that you have inserted in Word. Which option is important for most tables that have column headings?
• Sort in descending order.
• Sort in ascending order.
• Select the option "My List has Header Row."
• Choose the correct sort field.

Answers

Ryan is applying a sort to the data in a table that you have inserted in Word.By Choose the correct sort field option is important for most tables that have column headings.

What is statistics?

A statistics desk is a number cell wherein you may alternate values in a number of the cells and give you one-of-a-kind solutions to a problem. An appropriate instance of a statistics desk employs the PMT feature with one-of-a-kind mortgage quantities and hobby fees to calculate the low-priced quantity on a domestic loan you can set up in descending, or you may set up in ascending.

And D, has not have anything to do with this requirement. You do not have this feature to be had with you. Select the option, "My listing has header row" isn't always to be had to us. And clearly, you want to pick out the excellent type of discipline first. And then you may set up or type accordingly.

Read more about the column headings:

https://brainly.com/question/1788884

#SPJ2

What browser do you use?
Brave
Chrome
Firefox
Opera
Edge
Tor


Answers

Answer:

Explanation:

Match each item with a statement below. - A popular port scanners that has the ability to use a GUI front end - Allows you to ping multiple IP addresses simultaneously and is usually included in Kali Linux - Tool for performing ping sweeps and used to bypass filtering devices by injecting crafted or otherwise modified IP-packets - The original utility from which OpenVas was developed - A port state which does not allow entry or access to a service - An open-source fork of Nessus - A port state that may indicate a firewall is being used to allow specified traffic into or out of the network - A port state that allows access to applications and can be vulnerable - Allows you the ability to scan thousands or even tens of thousands of IP addresses quickly - Performed by port scanners to scan large networks to identify which IP addresses belong to active hosts

Answers

Answer:

1. Nmap.

2. Fping.

3. Hping.

4. Nessus.

5. Closed port.

6. OpenVAS.

7. Filtered port.

8. Open port.

9. Port scanning.

10. Ping sweep.

Explanation:

An IP address is an acronym for internet protocol address and it can be defined as a unique number assigned to a computer or other network devices, so as to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network devices connected to the internet or network.

In Computer networking, IP address are classified into two (2) main categories and these are;

1. Local (internal) IP address.

2. Global (external) IP address.

Also, the internet protocol (IP) address comprises of two (2) versions and these are;

I. Internet protocol version 4 (IPv4): this is the first and original version of the internet protocol which was introduced in 1983 using the Advanced Research Projects Agency Network (ARPANET). An example of an IPv4 address is 192.168.1.0.

II. Internet protocol version 6 (IPv6): it is the modified (latest) version of the IPv4 address system and as such can accommodate more addresses or nodes. An example of an IPv6 is 2001:db8:1234:1:0:567:8:1.

ICMP is an acronym for Internet Control Message Protocol and it is a standard protocol for communicating network errors in the form of messages such as Time exceeded and Destination unreachable.

In Computer Networking, an echo reply and echo request are implemented with a command utility referred to as ping. When a user sends an echo request message with the ping program, a successful attempt will return an echo reply message.

1. Nmap: a popular port scanners that has the ability to use a graphical user interface (GUI) front end.

2. Fping: allows you to ping multiple internet protocol (IP) addresses simultaneously and is usually included in Kali Linux.

3. Hping: tool for performing ping sweeps and used to bypass filtering devices by injecting crafted or otherwise modified IP-packets.

4. Nessus: the original utility from which OpenVas was developed.

5. Closed port: a port state which does not allow entry or access to a service.

6. OpenVAS: an open-source fork of Nessus.

7. Filtered port: a port state that may indicate a firewall is being used to allow specified traffic into or out of the network.

8. Open port: a port state that allows access to applications and can be vulnerable.

9. Port scanning: allows you the ability to scan thousands or even tens of thousands of internet protocol (IP) addresses quickly.

10. Ping sweep: performed by port scanners to scan large networks to identify which internet protocol (IP) addresses belong to active hosts.

Create a mobile app plan using PowerPoint slides to show mock-ups of screens, identifying input, process, and output for each
screen,

Answers

Answer:

PowerPoint slides to show mock ups

Many applications ask, "Why did you leave your previous position?" Choose the best answer out of the examples below.

Answers

We can't see the examples therefore we can't help you try asking the question again with a picture of the examples

the advantages and disadvantages of internet​

Answers

Advantages : a lot of useful information from all around the world
Disadvantage:, cyberbullying, stalking, hacking

This isn't academic, but what do I do if HI-REZ won't let me sign into an existing account. “Something went wrong” keeps popping up when I type in the correct info

Answers

Answer:

contact their support

Explanation:

.....is used to save project in Visual basic .net from file menu

Answers

Explanation:

I don't really understand what you're trying to get at, maybe try to abbreviate a little more?

I’ll mark brainliest if correct

Select the correct answer.
Andy, a developer, is designing a new program. Which tool should Andy use to help him complete his task?

A. SQL-Integrity Check

B.Unified Modeling Language

C.Selenium

D.Perforce

Answers

Answer:

I believe the answer is B

Explanation:

Which file organisation has the quickest access to data files? *

1 point

a)Direct

b)Serial

c)Sequential

d)Transaction​

Answers

A direct have the quickest access to data files

Complete the sentence.
A beta version of software is released during the _______ phase of software development.

Teseting

Release

Coding

Design

Answers

Hi Bro... , You Have A Wonderful Questions.

IF WE DIRECTLY JUMP RIGHT ON THE ANSWER , THEN THE SENTENCE WILL BE :

A Beta Version Of Software Is Released During The "Testing" Phase Of Software Development.

Explaination :

A Version Of A Piece Of Software That Is Made Available For Testing, Typically By A Limited Number Of Users Outside The Company That Is Developing It, Before Its General Release Is Called Beta Version.

As Mentioned Here , We Can See That Beta Version Is Made For Testing Purpose, To Test Whether It Working Properly Or Not.

Hope This Answer Satisfied You ^_^

And Thanks For The Points ;-)

A beta version of software is released during the Testing phase of software development.

What does having a beta version mean?

A pre-release of software that is given out to a large group of users to try under real conditions. Beta versions have gone through alpha testing in-house and are generally fairly close in look, feel and function to the final product; however, design changes often occur as a result.

What is alpha and beta version?

A beta test is carried out following acceptance testing at the supplier's site (alpha test) and immediately before the general release of the software as a product. In general an alpha version or release of a software package intends to do something particular, mostly does so, yet isn't guaranteed to do so fully.

To learn more about A beta version, refer

https://brainly.com/question/23441836

#SPJ2

A chain of coffee servers is sending a spreadsheet of projected costs and profits to some of its investors. When, Kyle, the administrator making the spreadsheet, adds an image of his company’s logo, he realizes it would fit and look best if turned to read sideways.

How can Kyle change the image to make it fit in such a way?

He can select the image and hold down on the green handle above it while sliding the mouse.
He can select the image and hold down Control while sliding the scroll bar to the right.
He can press the PivotTable button and select “Rotate 90 degrees” and then click OK.
He can click on the Pictures Tool tab and select press Artistic Effects to access the rotate option

Answers

Answer:

On a spreadsheet application including MS Excel;

He can select the image and hold down the rotation handle above it while sliding the mouse

Explanation:

Manual rotation of a picture or a text box can be performed by selecting the image or text box in MS Word or a spreadsheet application such as MS Excel. With the mouse select the rotation handle of the picture and drag in the direction desired, left or right.

So as to limit the rotation to 15 degrees hold down the shift button while dragging the rotation handle by clicking on it with a mouse and dragging in the desired direction

Construct :
4 input NOR Gate Truth Table.

Answers

9514 1404 393

Answer:

  see attached

Explanation:

The output is always 0, except for the case where all 4 inputs are 0.

Which file type is best for saving line art and animated images?

DOC
GIF
JPG
MP3

Answers

Answer: GIF


Hope this helps!!!

Answer:

GlF =Graphic interchange format is best for saving line art and animated images.

stay safe healthy and happy.

What is a bounding box

Answers

Answer:

bounding or enclosing box for a point set in N dimensions is the box with the smallest measure within which all the points lie.

When creating a storyboard, in which section do you mention how you move from one shot to the next?
A.
synopsis
B.
sketch
C.
transitions
D.
shot description
E.
shot sequence number

Answers

Answer: C

Explanation:

Answer:

E. shot sequence number

Explanation:

I NEED THIS NOW!! :((

Which feature of a database allows a user to locate a specific record using keywords?

Chart
Filter
Search
Sort

Answers

which feature of a database allows a user to locate a specific record using keywords?

search

Opportunity and Spirit, NASA's Mars Exploration Rovers, were the first scientific instruments able to collect samples directly from the surface of Mars. One of the mission's goals was to determine the likelihood that life ever existed on Mars. How were Spirit and Opportunity best able to supply evidence that in the distant past Mars may have had an environment favorable to life?

Answers

Answer:

The rovers sent images of cross beds, centimeter-scale areas in rock layers, that could indicate whether water once flowed on Mars.

Explanation:

Which of the following statements is true regarding the technical issues for developing applications for global audiences? Select 3 options.

Content delivery networks prevent traffic surges and can offset slow local internet service.

You should base your choice of which operating system to develop on usage rates in that specific market

Most users now have stable, fast connections worldwide.

A content delivery network can provide quick access to your content, no matter where your users live.

You should consider limiting the number of large images or audio files that you include, depending on the target market.

Answers

Answer:

Explanation:

From the available options presented, when developing for a global audience the following are true...

Content delivery networks prevent traffic surges and can offset slow local internet service.

A content delivery network can provide quick access to your content, no matter where your users live.

You should consider limiting the number of large images or audio files that you include, depending on the target market.

For global applications content delivery networks are a must since they allow the end-user to access the web page and its high quality content as if the web server were close by. By reducing the distance between the server and the end-user through these networks, you are effectively reducing latency, load times, performance, traffic surge effects, etc. Also when developing for a worldwide audience you should limit the number of larger images and audio files to only show the necessary ones for each target region, in order to make performance much more stable.

Other Questions
NWhich equation represents a proportional relationship?Y=x+1/3Y=3X+1/3Y=1/3X What is the value of the expression shown? 10 - 16:2[tex]10 - 16 \div 2[/tex] BRAINLIEST 14 pointsThe Great Firewall of China _____. Select 4 options.blocks websitesfilters all emailsfilters social mediafilters web searchesjams signals A 450.0N force is applied for 9.90s, what is the momentum? Plz Answer Fam & Con Chemistry (8TH GRADE) Read this excerpt from The Great Fire. At the same moment that Anderson's hose stopped, another steamer malfunctioned and its water also gave out. A well-aimed rap of a hammer got the engine working again, but then, at about 10:30, an old section of hose burst and the flow of water stopped again. Two valuable links in the chain of defense were gone, and there was nothing to stop the fire in these locations. Williams rushed to get the water going and to reposition his engines, but it was too late. The wind had pushed the fire past his circle, a wind that was blowing directly toward the heart of the city. How does the structure of this excerpt contribute to the central idea that the firefighters did not have the proper equipment to fight the fire Within the books; Fahrenheit 451 and Beowulf, what morals/themes can a person reading both books learn? There are 4 blood types, and not all are equally likely to be in blood banks. In a certain blood bank, 49% ofdonations are Type O blood, 27% of donations are Type A blood, 20% of donations are Type B blood, and 4% ofdonations are Type AB blood. What is the expected number of donations until the first Type AB donation isreceived?02.1274O24.49525 A quarter has a mass of 0.006 kilograms. What place value is the six in thisnumber? Explain how, in a carbonated liquid, the gas separates from a liquid. Use appropriate punctuation marks and capital letters where necessary. what a wretched life a poor woman leads in our country said sahana she cannot work independently without taking help of others she depends on the pity of the people of the society. Discuss Abstract Expressionism in Arshile Gorkys Garden in Sochi.2-3 Sentences Would a complex sentance be able to have a ; (semi-colon) in it? how should a consumer seek remedy once they have experienced unfair financial practicesA trust in the other party to accurately adjust any errors made on their behalfB Contact the other party one time only as opposed to multiple communicationsC Contact local media organization to reveal any wrongs committed by the other partyD Take steps to properly file a dispute and engage an advocate to handle their caseHow are consumers responsible for their own securityA They should create simple passwords using birthday and names instead of something more complicatedB They should always use open public networks because they are more secure than private networksC They must join an identity protection service to protect themselves from identity theftD They should use and regularly update an antivirus program to protect their personal informationWhich statement correctly describes an internet security issuesA Phishing is an illicit software program which unwittingly sends private account information from a user's computerB Spyware are individuals who attempt to get access to another person's computer to harm it somehowC A virus is a harmful program that gets loaded onto a user's computer after visiting an infected websiteD Hackers are attempts to deceive people into revealing personal information with fraudulent emails and social media requests Tomato juice comes in three different sized cans. The red can contains 6 cups, the blue can contains 2 pints, and the yellow can contains 32 fluid ounces. uhhhhhhhhhhhhhhhhhhhhh, help? Primero,Despus,Finalmente Find the value of x ???????????? V If a quadratic function is concave down, which of the following is true? a is positivea is negativea is zero Read the following poem. What is the rhyme scheme?How Not to Have to Dry the DishesIf you have to dry the dishes(such an awful boring chore)If you have to dry the dishes('Stead of going to the store)If you have to dry the dishesAnd you drop one on the floor--.Maybe they won't let youDry the dishes anymoreI would really appreciate help I suck at these pls and thank you!