When using the standard selection tool, the Hand tool can be activated by holding down the
key photoshop

Answers

Answer 1

Answer:

space bar

Explanation:


Related Questions

How these technologies influence the user experience and knowledge?

Answers

Answer:

I don't know

Explanation:

Technology can help us study and stuff yet we can still look up the answers. It also allows to know what's happening in the world around us like if a girl gets kidnapped, we get Amber Alerts on our phones about the missing girl. Most of us people today have learned about George Floyd's death on the internet through technology. Technology doesn't really influence us as much as help us out but for some people it can cause us to change under the influence of seeing other people and how they dress and act and stuff.

Which option ensures that a page break is automatically inserted ahead of a specific paragraph or heading?

the Page Breaks Before option in the Paragraph dialog box
the Keep With Next option in the Paragraph dialog box
the Keep Lines Together option in the Paragraph dialog box
All of the above options are correct.

Answers

Answer:

All the above options are correct

Answer: d

Explanation:

4.2 Code Practice: Question 1

Write a program that inputs numbers and keeps a running sum. When the sum is greater than 100, output the sum as well as the count of how many numbers were entered.

Sample Run

Enter a number: 1
Enter a number: 41
Enter a number: 36
Enter a number: 25

Sum: 103
Numbers Entered: 4

Hint: If you get an EOF error while running the code you've written, this error likely means you're asking for too many inputs from the user.

Answers

In python:

total = 0

i = 0

while total <= 100:

   number = int(input("Enter a number: "))

   i += 1

   total += number

print("Sum: {}".format(total))

print("Numbers Entered: {}".format(i))

I hope this helps!

For your biology class, you will be giving a presentation of the findings of a plant growth experiment. Which application is best suited for this presentation?


Writer or Word


Impress or PowerPoint


Notepad or Paint


Calc or Excel

Answers

Answer: Powerpoint

Explanation: Easy to give graphs and add pictures. You can also add shapes to create a bar graph if needed.

Answer:

Calc or Excel

Explanation:

What is the assignment operator?

Select the one choice that best answers the prompt above:
Answer 1
==

Answer 2
=

Answer 3
<=

Answer 4
===

Answers

I think hahahahaha Answer 1

Answer:

answer 3 is greater then or equal to, answer one is both equal, answer 2 is equal, answer 4 is all equal no mistakes,

Explanation for brainly please

answer 3

The ____, which amplified weak electrical signals, enabled electrical sound recording.

Answers

Answer:

Radio

Explanation:

Bill has several workbooks open, and he would like to see them all side by side on the screen. Which option on the
Arrange All menu should he use?
Tiled
Cascade
Horizontal
Vertical

Answers

Answer:

tiled

Explanation:

What are the four types of technical drawing?​

Answers

Answer:

3D drawings (isometric perspective)

exploded-view 3D drawings

complete working drawings

detail drawings (2D orthogonal projections)

diagrams

Use the drop-down menus to complete the statements about creating a table of contents in Word 2016.

To use the table of contents feature in Word, a user must have already created
in the document.

The Mark Table of Contents Entry option is used for
marking nonheading text for the table of contents.

On the Table of Contents dialog box, the
button can be used to change font styles.

Answers

Answer:

1.headings and subheadings

2.manually

3.options

Answer: 1.Headings and Subheadings

2.Manually

3.Options

Explanation: Just did it on e2020.

William would ike to sort a list of items after the data is already entered Which method is NOT an available sort option? text O number O date Osymbol​

Answers

Answer:

symbol

Explanation:

edge2020

Answer:

symbol

Explanation:

took the test

4.1 Code Practice: Edhesive

Answers

In python 3:

while True:

   name = input("Please enter a name: (Nope to end) ")

   if name == "Nope":

       break

   print("Nice to meet you {}".format(name))

I hope this helps!

   

The program is an illustration of while loops.

While loops are used to perform iterative operations, until the condition is met

The program in Python, where comments are used to explain each line is as follows:

#This prompts the user for name

name = input("Please enter a name (Nope to end) ")

#This checks if input is "Nope"

while name.lower()!="nope":

   #If no, this prints the greetings

   print("Nice to meet you",name)

   #This prompts the user for another input

   name = input("Please enter a name (Nope to end) ")

Note that the loop is repeated until the user enters "Nope" or "nope"

Read more about while loops at:

https://brainly.com/question/18430675


What is a goal?
What is a strategy?
What are tactics?
hy is it important for a goal to be specific?

Answers

A goal is an aim you want to achieve
Strategy is a plan to your achievement
Tactics are is an action carefully planned
A goal is important to be specific cuz it helps u focus on your specific task

Which of the following might cause a mobility impairment that limits computer use? Select 3 options.
a color blindness
Odyslexia
O neurological issue
injury
O genetic issue

Answers

Explanation:

A color blindness , injury .

Answer:

neurological issueinjurygenetic issue

Explanation:

The question is about mobility impairment. Color blindness and dyslexia have to do with vision, so rarely cause mobility issues related to computer use. Rather they would cause issues related to reading the screen.

The remaining three choices are the ones you want.

100 POINTS PLEASE HELP Ken Thompson and Dennis Ritchie co-created which operating system?

Answers

Answer:

UNIX operating system

Explanation:

Unix is a family of multitasking, multiuser computer operating systems that derive from the original AT&T Unix, development starting in the 1970s at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and others.

Answer:

the UNIX

During the 1960s to 1970s, Bell Labs colleagues Ken Thompson and Dennis Ritchie developed UNIX, a multi-tasking, multi-user operating system alternative to the batch processing systems then dominating the computer industry.

Explanation:

Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
O Building Blocks.dotx
O Building Blocks.html
O Building Blocks. thmx
O Building Blocks.qpbb

Answers

Answer:

The actual answer is A.

Explanation:

Answer:

a

Explanation:

A variety of fonts may be used in letter writing as long as the font size is 12 points.
True
False

Answers

False MLA format is Times New Roman font, size 12, double spaced.

Answer:

False

Explanation:

which are the two alternatives for pasting copied data in a target cell groups

Answers

Answer:

Excel has decided to paste contents into a single cell, rather than keeping data in columns. When copying from a query in SQL that has data in a table, pasting it into Excel would normally split the data into the columns - keeping the table. But Excel has automatically changed and takes out the table, pasting each row into one cell.

Explanation:

20
Select the correct answer.
Part of social health means that you make positive contributions to your community,
ОА.
True
OB
False
Reset
Next

Answers

Answer:

true

Explanation:

because my 8 ball said so

Answer:

True

Explanation:

What does this loop that uses a range function do?

for i in range(7, 15)
print("goodbye")

O It prints "goodbye" 8 times, numbered from 7 through 14.
It prints "goodbye" 9 times, numbered from 7 through 15.
O It prints "goodbye" 9 times.
O It prints “goodbye" 8 times.

Answers

This code will print "goodbye" 8 times

Answer:

B. It prints "goodbye" 9 times, numbered from 7 through 15

Explanation:

Which sentences describe the value of a conditional statement? Check all that apply.

It allows a programmer to designate a portion of the code that will be run only when a condition is met.

It creates new program code when a condition is met.

It allows a programmer to set a condition that must be met.

It incorporates decision-making into a program.

Answers

Answer:

134

Explanation:

Edgenuity

Answer:

1. It allows a programmer to designate a portion of the code that will be run only when a condition is met.

3. It allows a programmer to set a condition that must be met.

4. It incorporates decision-making into a  program.

Explanation:

Why is it important to proofread your documents ?

Answers

Proofreading can make sure that your document is completely free from errors to a high standard.

Answer:

It's important to proofread your documents to make sure that you don't have any avoidable mistakes.

Explanation:

Avoidable mistakes include grammar, sentence structure, and word choice.

Other Questions
What does this diagram represent? Which property of minerals is the least reliable for identifying minerals?hardnesslusterstreakcolor PLEASE HELP!!! answer the question below. Use the rubric in the materials for help if needed.Describe how the Soviet Union became an oligarchy. Use details to support your answer im literally crying because im so stressed and i don't understand if you know the answer please help i will do anything :( Are these triangles congruent? If so, name the triangle congruence method. When a light ray enters water, its velocity is _________. 100 points if you do this correctly. Just simply tell me where the words need to be in struggling ;ccc (i can't give brainliest so reward is a bumblebee). Shelia has 6 rings in a bag. There are 2 gold rings, 3 silver rings, and 1 plastic ring. Without looking, she picks one ring out of the bag and places it on her table. She then picks a second ring from the bag. What is the probability that the first ring is gold and the second ring is gold? In the sentence below, the highlighted coordinating conjunction ("FANBOYS") is WILL GIVE YOU BRAINLISTRafe's kiddie pool is shaped like a square with an area of 220ft^2 . What is the approximate side length of the pool? (Between which two whole numbers does it fall?) When did the indians Miggrate The bee's wool beetle is an inappropriately named insect. It has no direct, lasting connection with bees. It eats larvae and dead insectsdoes attack other insects but not bees. The bee's wool has been observed resting on flowers, but it does not sip nectar. It most likely uses thisposition to hunt for other insects who might be drawn to the plant.What is the main idea of this paragraph?01. Nature can be very harsh.2. Insects often eat other insects.3. The bee's wool has a misleading name.4. Insects are often attracted to flowers. How is the White Mans Burden a cause for imperialism? What role did it play in later involvement in foreign affairs? Find the smallest whole number multiple of 2 that leaves a remainder of 1 when divided by either 3 or 7. How old is Gi generation today If air temperature decreases, thenwave height will decreaseocean temperature will also decrease the same amountocean temperature will also decrease, but not as muchocean temperature will also decrease, but a greater amountwave height will increase 2sen^2 x+3 senx+1=0 2cotxsecx+ 2secx+cotx+1=0 senxcos^2 x=senx 2cos^2 x+2senx-12=0 2csc^2 x+cot^2 x-3=0 The word insidious has a negativeA)DenotationB)AnnotationC)ConnotationD)Renotation Una tableta contiene 500 mg de paracetamol, cuntas tabletas se obtendrn con 5kg del mismo medicamento? xfavor ayudenme con explicacin y todo lo necesito para el sabado Which equation demonstrates appropriate use of the distributive property?A. 9 (x + 2y) = 9x + 2yB. 9 (x + 2y) = 9x + 18yC.9 (xy) (9x) (9y)D. 9 (x + 0) - 9x + 9