difference between a software and a hardware​

Answers

Answer 1

Answer:

soft... intangible hard.... tangible


Related Questions

List three different camera modes and describe how each mode works when taking a photo

Answers

Answer:

Auto Mode--The camera chooses the settings for your photo, which is a good idea if you have no clue what settings to use. Auto mode works well when there is good lighting, but it may struggle when the lighting is uneven.

Portrait Mode--The camera will "think" that there is an object in the foreground to focus on, so it has a shallow depth to keep the focus on the object and blurs the background.

Sports mode--The camera takes the picture in only a fraction of the time it takes pictures in any other mode, because sports are fast activities. Flash is not usually necessary because of high shutter speed used to freeze movement.

Select the correct answer
in the context of website navigation, what is a node?
a point at which the user chooses a certain path
a part of a web page that gives it a unique identity
a navigational aid that tells users know where they are
a hyperlink that leads to the home page

Answers

Answer:

a point at which the user chooses a certain path.

Answer:

a point at which the user chooses a certain path.

Explanation:

You are interested in receiving more information about a special topic, including emails, announcements and advertising. What can you do? Group of answer choices Bookmark Websites about the topic on your favorite browser. Join a newsgroup about the topic. Subscribe to a listserve group about the topic. Set your browser's home page to a topical Website.

Answers

Answer:

The answer is "Subscribe to a listserve group about the topic".

Explanation:

A Listserv would be a software suite that is used to run a discussion list through community e-mail. Even so, LISTSERV is indeed a trademark of L-Soft Global who created some of the first and most famous mailing list programs.

It is a way to communicate by e-mail to a community of people. They send an e-mail to "reflecting" and the software gives an e-mail to all subscribers of both the Group.

Can Someone help plz?

Answers

Answer:

i dont understand sorry

Explanation:

round 9572to the nearest 1000

Answers

Answer:

10,000

Explanation:

Since the 5 is behind the thousand place, which is 9, we round according to 5. Although 5 is in the middle of 1 and ten, it rounds up to ten. Therefore, your answer is 10,000.

10,000 if the hundredth number is 5 and above then you can round the thousandth number to 10 which gives you 10,000

Alisa Miller reports that the number of Americans who closely follow overseas news:

A.) decreased by 30 percent in the past 20 years.

B.) jumped to more than 50 percent in the past 20 years.

C.) will double over the next 20 years.

D.) doubled over the past 20 years.

Answers

Jumped to more than 50 percent in the past 20 years

What game is this? help meee

Answers

Answer:

I am guessing animal crossing

That’s the emoji game

Bert is familiar with multiple operating systems. His primary work revolves around repairing and upgrading computers. What is his role at his company? ОА Network Administrator OB. Network Technician Network Engineer OD. Network Manager ​

Answers

Answer:

I think its B

Explanation:

Because only technicians do that kinda stuff. Sorry if incorrect

I'm not sure how to do these.

Answers

Answer:

JAVA

TASK 1

float float75 = 75; # widening casting are done automatically.

String string75 = String.valueOf(75);

float75 + string75 = Error: As the compiler doesn't know how to approach this, are you trying to add float to unicode charcters, if there is a value in this string, CAST it out, EXORCISE

TASK 2

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("Enter Float number");

float number = myObj.nextFloat();

System.out.println(number ** 2);

TASK 3

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("Enter number");

int number = myObj.nextInt();

int quotient = number / 7;

int reminder = number % 7;

System.out.printf("When you divide %d by 7, the quotient is %d and the reminder is %d ", number, quotient, reminder);

TASK 4

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("How many gigabytes is your flash drive");

int gigabytes = myObj.nextInt();

long numBits = gigabytes * 8000000000

System.out.printf("Number of bits in your %d flashdrive: %ld Bits", gigabytes, numBits);

one advantage of using online note-taking tools is that they help students to

a) get organized

b) read faster

c) avoid taking tests

c) avoid studying

Answers

Answer:

the correct answer is A

Explanation:

hope it helps

Answer:

a

Explanation:

_____the measuring instrument is not necessary​

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The zero error of the measuring instrument is not necessary. Because when you measure the difference between two items or objects, you don't need an absolute value.

For example, if you measure the temperature of today and compare it with the previous day, then zero error is not necessary. Because you can produce results either hot or cold. The difference is change.

Another example, when you measure your height and compare it with your friend, you can be either taller or smaller, so sometimes zero error of the measuring error is not necessary.  

Go to your Canvas course and locate the Assignment: Writing Prompt 1: Is the Internet making us Meaner?and complete the activity.


When you are finished, come back here and copy/paste the following as your answer below:


I have completed the Writing Prompt 1: Is the Internet making us Meaner? activity and submitted my assignment in CANVAS. By pasting this text below. I understand that the grade marked here is NOT the grade for the actual assignment and only a place holder for the grade I earn in Canvas.

Answers

Answer and Explanation:

The Internet is not changing anything other than making you extreme. The nice become nicer, the mean become meaner, the nice become mean, and the mean become nice. The internet just makes things easier to do. It really isn't a factor in if you are mean or not.

Answer:

Explanation:

POV: you didn’t find your answer

Where is the BIOS stored?

CPU
CMOS
RAM
Northbridge

Answers

Answer:

bios stored in CMOS ...

BIOS software is stored on a non-volatile RAM chip on the motherboard. In modern computer systems, the BIOS contents are stored on a flash memory chip so that contents can be rewritten without removing the chip from the motherboard.

Hope I helped ❤️
Plz mark me brainiest? :)

Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds (type long). Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.

Answers

Solution:

#include<iostream>

using namespace std;

class timeconvert//class

{

     public:

         int hms_to_secs(int h,int m,int s)//function of the class

               {

                   return (h*3600+m*60+s);

               }

};

int main()

{       timeconvert obj;//creating object of the class

       int h,m,s,total;

       cout<<"enter hour";

       cin>>h;

       cout<<"enter minute";

       cin>>m;

       cout<<"enter second";

       cin>>s;

       total=obj.hms_to_secs(h,m,s);//function call

       cout<<"total second of"<<h<<":"<<m<<":"<<s<<"="<<total;

}

/*

sample output:-

enter hour12

enter minute59

enter second59

total second of12:59:59=46799

*/

In this exercise we have to use the computer language knowledge in C++ to write the code as:

the code is in the attached image.

In a more easy way we have that the code will be:

#include<iostream>

using namespace std;

class timeconvert//class

{

    public:

        int hms_to_secs(int h,int m,int s)//function of the class

              {

                  return (h*3600+m*60+s);

              }

};

int main()

{       timeconvert obj;//creating object of the class

      int h,m,s,total;

      cout<<"enter hour";

      cin>>h;

      cout<<"enter minute";

      cin>>m;

      cout<<"enter second";

      cin>>s;

      total=obj.hms_to_secs(h,m,s);//function call

      cout<<"total second of"<<h<<":"<<m<<":"<<s<<"="<<total;

}

/*

sample output:-

enter hour12

enter minute59

enter second59

total second of12:59:59=46799

*/

See more about C++ code at brainly.com/question/25870717

1. Describe how research and development influence design. Cite specific examples of how research and development influence design problems that are not presented in a clearly defined form.​

Answers

Answer:

so i research and found this,

Development is when findings of a research are utilized for the production of specific products including materials, systems and methods. Design and development of prototypes and processes are also part of this area. Engineering is utilization of these plans and research to produce commercial products.

Research and development, also known as R&D, is the acts taking to find out more about an item, idea or phenomenon, in order to come up with new services and products with the aim of increasing revenue and profit

1. Research and development enables a company to remain viable by providing an edge in the market amongst competitors such that without research and innovation a company may not survive

Therefore;

Research and development influence design by being the basis of the design effort, thereby redirecting the kinds of products that are available for purchase

Examples Showing how Research and Development Influence Design Problems

Examples of how research and development influence design problems that are not presented in a clearly defined form are;

The research and development of the MOS integrated circuit that lead to the change in size and performance of electronics and brought about the personal usage of computersThe research and development of the personal computer that changes the design of work planning and communication strategy amongst organizations and individuals The research and development of the gasoline powered tractor that changes the design for mechanization on a farm

Learn more about research and development here:

https://brainly.com/question/2938243

https://brainly.com/question/13954765

When a user modifies the fonts in a message and immediately sees the effect of a font change without actually
selecting the font, which Outlook feature is the user witnessing?
Mini toolbar
AutoCorrect
O Live Preview
O Font View

Answers

Answer:

Font view

Explanation:

Answer:font view

Explanation:

Which ribbon tab is not a default in Outlook 2016's main interface?
O Home
Send/Receive
O Folder
O Review

Answers

Answer:

review

Explanation:

PLEASE HELP MEEE I WILL GIVE BRAINLIEST


What is a possible value for the horizontalInput variable? Remember Input.GetAxis returns a float value between -1 and 1

Question 6 options:


-10


0.52


“Right”


Vector3.Up

Answers

Answer:

0.52

Explanation:

What is the speed of Android operating system?

Answers

Answer:

There isn't an exact android speed due to a variety of androids. But there are very fast like the HTC 10 or a Samsung Galaxy.

Explanation:

What is the default zoom percentage in Word?

Answers

Answer:

50%

100%

150%

200%

Explanation:

bit is an abbreviation of_____​

Answers

Answer:

Explanation:

bit is an abbreviation of "binary digit".

What changes should be made in OSI model(Open System Interconnection).

Answers

Answer:

Explanation:

When most non-technical people hear the term “seven layers”, they either think of the popular Super Bowl bean dip or they mistakenly think about the seven layers of Hell, courtesy of Dante’s Inferno (there are nine). For IT professionals, the seven layers refer to the Open Systems Interconnection (OSI) model, a conceptual framework that describes the functions of a networking or telecommunication system.

The model uses layers to help give a visual description of what is going on with a particular networking system. This can help network managers narrow down problems (Is it a physical issue or something with the application?), as well as computer programmers (when developing an application, which other layers does it need to work with?). Tech vendors selling new products will often refer to the OSI model to help customers understand which layer their products work with or whether it works “across the stack”.

Layer 7 - Application

To further our bean dip analogy, the Application Layer is the one at the top--it’s what most users see. In the OSI model, this is the layer that is the “closest to the end user”. It receives information directly from users and displays incoming data it to the user. Oddly enough, applications themselves do not reside at the application layer. Instead the layer facilitates communication through lower layers in order to establish connections with applications at the other end. Web browsers (Google Chrome, Firefox, Safari, etc.) TelNet, and FTP, are examples of communications  that rely  on Layer 7.

Layer 6 - Presentation

The Presentation Layer represents the area that is independent of data representation at the application layer. In general, it represents the preparation or translation of application format to network format, or from network formatting to application format. In other words, the layer “presents” data for the application or the network. A good example of this is encryption and decryption of data for secure transmission - this happens at Layer 6.

Answer:

go darlin

Explanation:

Hinata needs to upload a copy of her drivers license to a website as proof of age which two devices can she use to help her create a computer file of her card

Answers

Answer:

Scanner Smartphone

Explanation:

For Hinata to upload a copy of her driver's license she needs to scan the license. This would convert it to a soft copy/ computer copy that can then be uploaded on the site.

One device she can use is the very common Scanner. There are multiple variants but they usually consist of a scanning plane/ glass that the license can be placed on and scanned. A digital copy will then be created.

A second device is simply her smartphone. There are many apps that can be used to scan documents via the phone's cameras so she just has to use one of them and she can easily scan the license thereby converting it to a computer file.

Answer:

Scanner and web cam

Explanation:

Haan creates this table to track his income.
A
1 Month
2 Jan
3 Feb
4 Mar
5 Apr
6 May
7 Jun
8 Jul
9 Aug
10 Sep
11 Oct
12 Nov
13 Dec
14 Year Total
B
Income
$3,800
$3,300
$4,200
$4,900
$2,800
$4,100
$3,000
$4,200
$4,700
$3,600
$5,100
$4,200
Which would give him the total income for the year?
=SUM(B2 B13)
EADD(B1:B14)
SUMB1B14
(B2B13)

Answers

Answer:

Your answer is 42,800.

Explanation:

Add together all the numbers and you get a total income of 42,800.

Answer:

=SUM(B2:B13)

Explanation:

EDGE2021

An important part of the development of transport is safety. how can you, when you get around in different ways, contribute to making it safer on the roads

Answers

Answer:

I need help I don't get a this questions please asap?

Explanation:    Head-on collisions. Some simple solutions can help to reduce the risk of head-on crashes. ...

   Run-off road crashes. This is when a vehicle collides with a stationary object, such as a sign or lamppost, after leaving the road. ...

   Intersection crashes. ...

   Vulnerable road users. ...

   Much work to be done.

Aug 31, 2018

what do u do to me pepa

Answers

Peppa: Hello Susie!

Susie: *mehhh* Hello Peppa!
What are you doing?
Peppa: I'm learning to whistle,

but I can't do it yet.
Susie: Hmm.. that sounds hard.
Peppa: It's impossible!
Uh.. can you whistle Susie?
Susie: No

Peppa: *honk* Oh good! I mean-
that's sad if you can't whistle

but good because I can't whistle

Susie: What's whistling anyway?
Peppa: You put your lips together
and blow!
Susie: Like this? *whistles*

Answer:

903-780= 123

we know this because 123 = 123 and that is the answer

Which one bc im struggling

Answers

Answer:

cant really see it

Explanation:

What makes this information systems environment unique? (3 points)

Answers

Information technologies are unique not just because of their growing use in decision-making and knowledge management systems, important as that is. Their use has also yielded significant improvements in the efficiency of energy and materials use.

Question #8
Fill in the Blank
What is the output of the following program?
>>> phrase = "help me"
>>> len(phrase)

Answers

Answer:

The other person is correct the answer is 7

Explanation:

I got it right on edge

Answer:

7

Explanation:

I know I wasn't first to answer but give me brainliest plz.

A computer connected to the internet that asks for data is a(n) ________

Answers

Answer:

Client

Explanation:

Answer:

Client

Explanation:

The client makes a request for a service, and a server performs that service.

Other Questions
I'm not sure how to do these. By the way, it has to be python. What is the solution set for StartAbsoluteValue y minus 9 EndAbsoluteValue less-than-or-equal-to 12:A?y greater-than-or-equal-to 3 or y less-than-or-equal-to 21Negative 3 less-than-or-equal-to y less-than-or-equal-to 21y greater-than-or-equal-to negative 3 or y less-than-or-equal-to 213 less-than-or-equal-to y less-than-or-equal-to 21 Chocolate chip cookies call for 3 1/4 cups of sugar for 2 1/2 batches. To make 1 1/4 batches of peanut butter cookies you need 1 3/4cups of sugar. Which type of cookie requires more sugar per batch X > -9 written in words 1. The line passes through (-7,5) and (-8,13)answer must be written in slope imtercept form.2. the line passes through (15,1) and (0,-4) 5 divided by 7/10 = ? is it possible to recover reactants like sugar from a drink mix using heat? Explain your answer. The European Union includes ALL countries that are apart or the European continent TrueFalse determine the part of speech the underlined word is in can u pls help me with this question Which is the greatest contribution of Gregor Mendel to society? an ability to beautify the environment the variety in breeds of dogs and cats the increased speed by running horses an understanding of genetic principles MEIOSIS Fill the blanks1.DNA is __________ with a backbone of ____________ and _________2.The genetic message is carried by the ___________ ____________3. The repeating subunit that builds DNA is the _____________ It is composed of a _______, a _______________, and one of four _________ ___________________ 7.) What is the mean, median, mode and outlier of the following data: 2, 6, 2, 5, 8, 8, 27, 7, 6, 9, 2, 2 Solve the following:4x-3=2x+7 16 factory workers made 40 pieces in a certain amount time help i wiil biran list you A state lottery game requires that you pick 6 different numbers from 1 to 44. What is the probability of picking exactly 3 of the 6 numbers correctly? which statement about 4x-5 is true??????A. there are two variables in 4x - 5 B. 5 is the coefficient of x C. 4x is a term in 4x - 5 D. 4x - 5 is a product +50Pts. >WILL MARK BRAINLIEST Wei Inc. is considering a capital budgeting project that has an expected return of 25% and a standard deviation of 30%. What is the project's coefficient of variation?