Changes in computer technology have an effect on _____.

Answers

Answer 1

Answer: Changes in computer technology have an effect on everyone.


Related Questions

what is a massive online storage that allows for access by any Internet connected device running a web browser and is used for less private files ?

Answers

I recommend Google Drive, it allows up to 15gb of free storage. You can access it anywhere since it is from Google. Another one you can try is Dropbox which only allows up to 2gb.

Which line of code will only allow a symbol to be stored in a variable?


a. phone = float(input("What is your phone number?"))

b.phone = int(input("What is your phone number?"))

c.phone = input("What is your phone number?")

d.phone = input(What is your phone number?)


(Its not B)

Answers

Answer:

D. phone = input(What is your phone number?)

NEED ASWERS FAST
Which of the following statements best compares and contrasts the education necessary to pursue careers in either dance or music production management?


Both dance and music production management degrees include classes in music history; however, someone pursuing a career as a music producer would focus on music and sound engineering.

Both dance and music production management degrees include earning an associate’s degree from a community college or university; however, someone pursuing a career as a dance producer would need to earn a BFA.

Both dance and music production management degrees include completing a course of study at a four-year college or university; however, someone pursuing a career as a dance producer would also need to complete an internship.

Both dance and music production management degrees include classes in music composition; however, someone pursuing a career as a music producer would also focus on musical instruments.

Answers

its not Both dance and music production management degrees include completing a course of study at a four-year college or university; however, someone pursuing a career as a dance producer would also need to complete an internship.

Its not Both dance and music production management degrees include completing a course of study at a four-year college or university; however, someone pursuing a career as a dance producer would also need to complete an internship.

What is Production management?

Planning and controlling industrial processes to make sure they proceed smoothly and to the desired level is known as production management, sometimes known as operations management.

Both the service and manufacturing industries use production management strategies. In terms of importance and extent, it is comparable to other disciplines like marketing, human resources, and financial management.

Production management in manufacturing activities comprises responsibilities for product and process design, capacity and quality planning and control challenges, and personnel organization and supervision.

Therefore, Its not Both dance and music production management degrees include completing a course of study at a four-year college or university; however, someone pursuing a career as a dance producer would also need to complete an internship.

To learn more about production management, refer to the link:

https://brainly.com/question/1379995

#SPJ2

which og the figures ilustration kinetic potential energy? where only the water of your energy​

Answers

i need to see like a picture

convert the binary numbers into decimal 100000​

Answers

Answer:

32₁₀

Explanation:

Start off by multypling each digit by 2 to the power of it's place value, and then add them together.

The base is 2 in the binary number because it uses two possible numbers: 1 and 0.

The base is 10 in the result because normal digits have 10 different numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

(100000)₂ = (1 × 2⁵) + (0 × 2⁴) + (0 × 2³) + (0 × 2²) + (0 × 2¹) + (0 × 2⁰) = (32)₁₀

In the excerpt, "A wrong is unredressed when retribution overtakes its redresser,” which of the following is a synonym for redress? lecture grievance rectify announce

Answers

Answer:

The answer is Rectify

This technology had the biggest impact on the capabilities of diagnostic testing.

A.computers
B.the Internet
C.transportation
D.the microscope

Answers

Answer:

Computers

Explanation:

They run the tests in a multitude of ways and can provide clear data in organized and profficient ways and it's fast.

Answer:

A = Computers

Explanation

I know it is Computers

Samuel wanted to paste the value and the formula attached from cell B6 to cell F16. Which methods will work? Check all that apply.

Answers

Answer:

Select cell B6, copy, and paste special into F16.

Select cell B6, Ctrl+C, and Ctrl+V into F16.

Select cell B6, copy, and paste into F16.

Explanation:

got it right on edge.

The methods that will work for Samuel are:

Select cell B6, copy, and paste special into F16.Select cell B6, Ctrl+C, and Ctrl+V into F16.Select cell B6, copy, and paste into F16.

How to determine the appropriate method?

There are several ways to copy formulas in Microsoft Office Excel.

Some of these ways are:

Direct pastingPaste special

The direct pasting is divided into two ways

Ctrl+c and Ctrl+vUsing the Copy and paste function

The above ways mean the same thing, and they can be achieved using the following instructions

Select cell B6, Ctrl+C, and Ctrl+V into F16.Select cell B6, copy, and paste into F16.

To paste the formula by paste special, Samuel must use the following instruction:

Select cell B6, copy, and paste special into F16.

Read more about Excel formulas at:

https://brainly.com/question/14299634

#SPJ2

which of the following are the lines defining the borders of shape

borders

curves

faces

edges



which of the following is the point at which the lines of the edges of a shape intersect


dots

corners

faces

edges

Answers

Answer:

1. Boarders

2. Edges

--------------------

Three of the following values could be stored as strings. When would you NOT use a
string command?
O To store a word.
O To store a list of colors.
O To store values NOT used for calculations.
O To store decimal values.

Answers

Answer:

To store decimal values

Explanation:

If values are not to be used for calculation, that is, they are not numerical data, therefore, some of them could be stored as strings. A string may contain any sequence of characters. The characters in a string may be repeated.

From the foregoing, decimals can not be stored as strings because in computer programming, a string is normally a sequence of characters, hence the answer above.

Using variable concepts, it is found that you would not use a string command to store decimal values.

---------------------------

Strings are used in programming to work with variables that are composed by text, which can include words, colors, and any variable that is not used for calculator.For decimal values, float and double variables are used, not strings, and thus, this is the option for which a string command would not be used.

A similar problem is given at https://brainly.com/question/15583814

What do donnas actions and thoughts reveal about her character

Answers

That she is scared for herself at first but once Cujo jumps up on the window it is a selfless and different fear. She then is worried about Tads safety.

Hope this helps.

Edhesive 4.3 code practice question 1 PLZ SOMEONE
topic: Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you with 15 hugs! This year, she, unfortunately, cannot see you on your birthday, so instead, she wants to send you virtual hugs!

Create a program that prompts the user for how old they are turning and then using a loop, output a virtual hug for every year old they are.

The following prints a single “virtual hug.”

Answers

Answer:

x = int(input("How old are you turning? "))

c = 0

while (c != x):

c = c + 1

print("**HUG**")

Following are the python program to calculate the virtual hugs:

Python Program:

age = int(input("How old are you? "))#defining the age variable that inputs age value in number

for x in range(0,age):#defining the loop that counts and prints the number of HUG value

   print("**HUG**")#print message

Output:

please find the attached file.

Program Explanation:

Defining the 'age' variable that inputs age value by using the input and int method that takes only numeric value.After the input value, a for loop is defined this loop that counts the age value and prints the number of 'HUG' values, by using the print method.

Learn more on python programs here:

brainly.com/question/17796174

What is computing device

Answers

Please do mark me as Brainiest. I would be so happy!!!

Answer:

Any electronic equipment controlled by a CPU, including desktop and laptop computers, smartphones and tablets. It usually refers to a general-purpose device that can accept software for many purposes in contrast with a dedicated unit of equipment such as a network switch or router.

Have a great day.

Answer:

google

Explanation:

google

What is the code in Edhesive 3.3 question 1?

Answers

Answer:

# your code goes here

r = int(input ("Enter the red: "))

g = int(input ("Enter the green: "))

b = int(input ("Enter the blue: "))

if( r <= 0 or r >= 255):

 print("Red number is not correct.")

if( g <= 0 or g >= 255):

 print("Green number is not correct.")

if( b <= 0 or b >= 255):

 print("Blue number is not correct.")

ASAP What is the answer to this question ?
Best answer will recieve BRAINLIEST!!

Answers

Answer:

256

Explanation:

is this math it wont load the picture

Which of these is a way to portray motion in a painting?
use of primary colors
use of realism
use of space
use of angles
hurry !!!

Answers

The answer is use of angles

which of the following is NOT an example of a compound
A, Gun Powder B, SALT C. Smoke from cars D. Oxygen​

Answers

Answer:

D.

Explanation:

feels most right bro . pretty sure, not fully confident :)

Which of the following is an open-source web browser?
A. Firefox
B. Internet Explorer
C. Opera
D. Telnet

Answers

Answer:

Firefox

Explanation:

Answer The answer would be  A). firefox.

Explanation:

I took the quiz.

Captions are used to identify or give information about
O books
O magazines
O authors
O images

Answers

Answer:

images

Explanation: i know this because i read magazines all the time specially rollingstone

If you were to go back in time, what games might you find kids playing at the local arcade? List and describe at least two games.

Answers

Answer:

Pac-Man Battle Royale, Space Invaders Frenzy

Explanation: Pac-man Battle Royal, came out in 2011 not that long ago. Space Invaders Frenzy came out in 1978. That came out A WAY long time ago.

is this statement True or False?
A computer processes data using only 1s and 0s
A. True
B. False

Answers

Answer:

A. True. Computers only process using 1s and 0s

Trueeeeeeeeee is the answer

PLS HURRY!! The newest Windows OS that provides a faster startup and redesigned Task Manager is called ____.

A. Windows Vista
B. Windows 7
C. Windows ME
D. Windows 8

Answers

Answer:

Windows 8

Explanation:

Hopefully I have answered your question!

Windows 8 was released on: October 26, 2012 a slower startup screen (Takes up to 5 Minutes, While Windows 7 takes about 30 seconds to about 1 Minute.) With a whole new redesign on the task manager.

the answer is windows 8

What do the following white characters symbol represent?
a) ¶
b) .

Answers

???????????????????

this is not what I asked for​

Answers

?? What does that mean? What is the question

List the instructions of how you would make a PBJ sandwich as a series of five (5) steps (tasks) in the first column Complete the other fields by: Identifying the tools and equipment needed for each step Identifying what problems/issues may occur during each step

Answers

Answer:

Explanation:

In order to make a PBJ sandwich you would first need to obtain all of the ingredients which are the following

Peanut ButterJam (of choice)whole wheat breadspreading knifecutting knife

Once you have all of the ingredients follow these instructions to make the sandwich

place 2 slices of bread seperately on the plateUsing the spreading knife place the amount of peanut butter that you want on one of the breads and spread evenly (the bread may break on this step so be careful)Using the spreading knife place the amount of Jam that you want on the other slice of bread and spread evenly (the bread may break on this step so be careful)Place Bread together and cut the edges off using a cutting knife.Eat and Enjoy. (problem: you may become addicted)

Which of the following is an example of Arabic numbering in an outline?


ii

2

II

B

Answers

Answer:

d:b

Explanation:

Which type of security personnel may work for government as well as for private security agencies?

Answers

Answer: A security guard

Explanation:

it’s a security guard.

What is a special type of variable used in subroutines that refers to a piece of data?

a parameter

a constant

a function

a routine

Answers

Answer:parameter

Explanation:

I got it right

Answer:

answer is A :)

Explanation:

Edge 2021

Please help fast! Thank you if you can do this.

Answers

I’m sorry I would have helped but I don’t know I’m really sorry

all beauty salons must be well-lighted and ventilated and must be good____condition.​

Answers

I'm assuming working condition

Other Questions
Somebody help plz will give brainliest pls help its due at 12 A container of carbon dioxide has a volume of 240 mL at a temperature of 22C. If the pressure remains constant, what is the volume at 44C? answer quick pleasee! which event led to the treaty of paris in 1783? drapeau,sac-a-dos,rgle,feutre,porte,cahier is this indefinite article un or une? Which word best describes the tone expressed in this passage I need help click for the screenshot An airplane covers 94 miles in 1/6 of an hourThe airplane can cover blank miles in 6 hoursWhat is the answer your car insurance will not protect you if you break the law.true or false If there is a statement where Hobbes and Locke would disagree, explain their differences Where is the main store of phosphorus ? Healthcare workers use which abbreviation to describe patients ability to move their joints?NKAFBWROMGTT ASAPWhat characteristic of a map allows you to measure the distance between two different locations?O LegendO ScaleO Compass RoseO Key Please help!Fill in the blank Find the slope of the line containing the points (3,-2) and (-1, 6). Which inference about the speaker is best supported by the following passage (lines 23-27)?Yeah, it was awful what you guys did to us.It's real decent of you to apologize.No, I don't know where you can get peyote.No, I don't know where you can get Navajo rugs real cheap.No, I didn't make this. I bought it at Bloomingdales.A. The speaker repeatedly faces common stereotypes and perceptions about Native American culture,B. Native Americans like giving advice to people about things like Navajo rugsC. The speaker of the poem likes to shop at Bloomingdales.D. The speaker of the poem is looking for an apology from the person asking the questions, There are one celled creatures that get nutrients from their environments in order to live? I'LL GIVE BRAINLIEST IF YOU HELP ME Of the 16,000 applicants to the University of Texas at San Antonio, 1/4 were accepted, and 3/8 of those accepted decided to attend. How many of the original applicants decided to attend the University of San Antonio? When vinegar and baking soda are combined bubbles begin to form. Bubbles are evidence of a chemical reaction because they Answer the following questions:4. List the 4 membrane components you can find in a cell membrane: