30 POINTS!!

Select the correct answer.
Which tool creates vector paths for smooth-edged selections?

A. Pen
B. Clone
C. Brush
D. Sharpen
E. Blur

Answers

Answer 1
E blur is the correct answer
Answer 2

Answer:

A.) pen tool

Explanation:

i got it right


Related Questions

First Person Who Answers Fast As Possible Will Be Marked As Brainiest ​

Answers

Answer:

Save a database object Ctrl+S or Shift+F12

Open an existing database   Ctrl+O or Ctrl+F12

To quit MS Access ALT+F4

Explanation:

You’re mapping out the logical relations of a database, and you notice that one of your tables will have a pair of child records for every record created in the parent entity. What type of relationship do these tables have?

A. One-to-many
B. Pair of one-to-many relationships
C. Many-to-Manu
D. One-to-one

Answers

The answer to your question is answer A

The type of relationship that these tables have is (B), Pair of one-to-many relationships.

What is one-to-many relationships?

A one-to-many relationship is a type of relationship between two tables in a database where one record in the parent table can have multiple child records in the child table. In this case, one record in the parent table will have a pair of child records in the child table, so the relationship between the two tables is a pair of one-to-many relationships.

For example, a table of employees could have a one-to-many relationship with a table of dependents. Each employee could have multiple dependents, so each record in the employees table would have a pair of child records in the dependents table.

Find out more on database here: https://brainly.com/question/31089407

#SPJ2

Ava and Elizabeth are planning on using an IDE to create their program. Describe tools and facilities available in the IDE which can help them to identify and correct syntax errors.

Answers

Bracket matching. This is used for languages that use pairs of brackets to mark out blocks of code. It allows the code to be read and understood more quickly. If you forget to close a bracket while writing, coloured sections may help you to detect missing brackets.Syntax checks. This recognises incorrect use of syntax and highlights any errors.Auto-completion (or code completion). This is designed to save time while writing code. As you start to type the first part of a function, it suggests or completes the function and any arguments or variables.

Create a variable ‘temp’ and assign the value in Celsius. Display the message ‘It’s extremely hot day today!’ if the temperature is greater than 40 degree C otherwise, displays ‘It’s not too hot!

Answers

Answer:

temp = 47

if temp > 40:

   print("It’s extremely hot day today!")

else:

   print("It’s not too hot!")

Explanation:

*The code is in Python.

Create a variable called temp and set its value as 47

Check the temp using if-else structure. If the temp is greater than 40, print "It’s extremely hot day today!". Otherwise, print "It’s not too hot!".

30 POINTS!!

Type the correct answer in the box. Spell all words correctly.

Jason needs to learn a new web tool. He went through his books to understand more about it. Now he wants hands-on experience with using that tool. What would help him?
Jason can use ______ websites where workspace is provided to test the results of your code.

Answers

Answer:

online

the answer is online

which type of mirror can create a real image.

Answers

Answer:

concave mirror

Explanation:

hope this helps!!!

Answer:

A. concave

Hope this helps!

Explanation:

Write an algorithm and draw a flowchart to input two numbers from the user and display the largest of two numbers

Answers

Answer:

Explanation:

Required

- Algorithm to display largest of two numbers

- Flowchart to display largest of two numbers

Algorithm

1. Start  

2. Input num1, num2

3. Largest = num2

4. If num1 > num2 Then

4.1 Largest = num1  

4. Print Largest

5. Stop.

See attachment for flowchart

To do this, three variables (num1, num2 and Largest) are used.

The algorithm starts by inputting values for num1 and num2; Then variable Largest is initialized to num2

If num1 is greater than num2, the value of Largest is changed to num2; else, nothing changes

Then Largest is printed.

The algorithm and flowchart which evaluates the larger of two numbers is given below and the flowchart attached :

The algorithm :

Step 1 : Start

Step 2 : Reads in two values a and b

Step 3 : Using the comparison operator, check if a is greater or b is greater

If a is greater, display a is greater, otherwise, b is greater.

Step 4 : Stop

The algorithm above gives the stepwise approach to finding the larger value. The graphical order of instruction called the flowchart is attached.

Learn more : https://brainly.com/question/25415243

Kair needs to change the brightness and contrast on a image she has inserted into a word document

Answers

Answer:

Kair should click the image.Right click then select "Format Picture."

Then select "picture corrections"

Answer:

adjust

Explanation:

3. Megan and her brother Marco have a side business where they shop at flea markets, garage sales, and estate

sales to find desirable items, fix them up, and then resell them online for much higher prices. Megan's

apartment is broken into and items valued at $2500 are stolen. How much would her renters insurance cover?

a. $0, because she'd need small business insurance to cover those losses

b. $200

c.

$1000

d. $2500

Answers

Answer:

a

Explanation:

Megan doesn't have a registered business. She can't claim insurance

The amount that she would use for her renters insurance cover is $0, because she'd need small business insurance to cover those losses.

What is business insurance?

This is known to be a kind of cover that helps against business losses as a result of  events that could have happen.

Note that The amount that she would use for her renters insurance cover is $0, because she'd need small business insurance to cover those losses as that is what the insurance does.

Learn more about business from

https://brainly.com/question/24553900

#SPJ5

Suppose you are an ad-serving company and you maintain a log of cookie data for ads you serve to the Web pages for a particular vendor (say Amazon). a. How can you use this data to determine which are the best ads? b. How can you use this data to determine which are the best ad formats? c. How could you records of past ads and ad clicks to determine which ads to send to a given IP address? d. How could you use this data to determine how well the technique you used in your answer to part c was working? e. How could you use this data to determine that a given IP address is used by more than one person? f. How does having this data give you a competitive advantage vis-à-vis other ad-serving companies?

Answers

Answer:

A

Explanation:

thethe more you have attached the more people are going to know your product so that it's going to be a long process which people can introduce to their friends

write a program to output a big A like the one below

Answers

hope this helps, i'm a beginner so this might not be the most concise method

what is the usage of sustainable energy?​

Answers

its the practice of using energy in a way that "meets the needs of the present without compromising the ability of future generations to meet their own need

the ___ are documents which uses http ?

Answers

The HTML is the answer

30 POINTS!!

Select the correct answer.

Josef wants to pursue a career as a user experience developer. How should he acquire knowledge to pursue this career?

A. by obtaining a bachelor’s degree

B. by obtaining a master’s degree

C. by earning work experience

D. by getting a high school diploma

E. by using books and online courses

Answers

Answer:

This is by earning work experience.

Explanation:

This is any experience that a person gains while working in a specific field.

Answer:

I think it is E

Explanation:

Write a Python program to convert the characters to lowercase in a string

Answers

Answer:

Following is the program in the python language

st = 'sAN RaN'  #String

print(st.lower()) #display into the lowercase

Output:

san ran

Explanation:

Following are the description of program

Declared and initialized the string in the "st" variable .The lower function in python is used for converting the uppercase string into the lower case string .Finally in the print function we used lower function and display the  string into the lower case


30 POINTS !!!

Select the correct answer from each drop-down menu.

What are the different image clean-up tools?

The different image clean-up tools are the ____ tool and the ____ tool that help remove spots and other marks.

The different image clean-up tools are the _____

1. Blur
2. Healing Brush
3. Sharpen

and the ____ tool that help remove spots and other marks.

1. Blur
2. Clone
3. Patch tool

Answers

healing brush patch tool and blur i’m kinda unsure about healing brush because i do photography and all of those help sorry i couldn’t give you the exact answer :(

Answer:

1.) healing tool

1.) patch tool

PLEASE HELP!!!

If you try to ______
PowerPoint while there are unsaved changes, you will be
asked whether you want to save them.
fill in the blank.

Answers

leave (i'm pretty sure this is the answer)

If you try to close PowerPoint while there are unsaved changes, you will be asked whether you want to save them.

What is a PowerPoint presentation?

You may create projects, write text, and create presentations online using the software called PowerPoint Presentation. Slides may be created, transitions can be included, and ideas can be presented to friends or professors.

A businessman can present what he thinks or has to say by using a PowerPoint to keep his thoughts and ideas organized. Yes, I am aware. PowerPoint is something I've been using for a while now.

Basically, you press the home button in the upper-left corner of your screen, and an option that says "create a new slide" should appear there.

Therefore, if you attempt to close PowerPoint with modifications that have not been saved, you will be prompted to do so.

To learn more about PowerPoint presentations, refer to the link:

https://brainly.com/question/14498361

#SPJ5

the formula =sum(b2:b10 finds the?

Answers

Answer:

sum (addition) of all the numbers in cells b2 to b10.

Explanation:

What is the HIPAA Privacy rule, and why does it affect IT professionals?
a law that prevents doctors from keeping patient records, which protects the medical rights of IT professionals
a law that explains how passwords should be protected, which must be followed by IT professionals
a law that mandates that medical records be kept electronically, which will be managed by IT professionals
a law that protects patient records, which states they can only be viewed by certified IT professionals

Answers

Answer:

a law that protects patient records, which states they can only be viewed by certified IT professionals

Explanation:

The HIPAA Privacy rule address disclosure of individuals’ health information by health care providers, medical insurers who transmits health information in electronic form.

The Privacy Rule protects all individuals health information held or transmitted  in any form or media, such as electronic, paper, or oral. Privacy Rule is to defines the situation in which an individual’s protected heath information may be disclosed except if the Privacy Rule permits or the individual authorizes in writing

Answer:

a law that mandates that medical records be kept electronically, which will be managed by IT professionals

Explanation:

C IS RIGHT ON edg 2021

What are some options available in the Spelling and Grammar Checker? Check all that apply

Answers

This question is incomplete because it lacks the appropriate options

Complete Question

What are some options available in the Spelling and Grammar Checker?

Check all that apply.

a) Change and Change All

b) Redo and Repeat

c) Ignore Once and Ignore All

d) Add to Dictionary

e) AutoFormat

f) Font

g) AutoCorrect

h) Undo

Answer:

a) Change and Change All

c) Ignore Once and Ignore All

d) Add to Dictionary

g) AutoCorrect

Explanation:

Spelling and grammar check is an option under the REVIEW Menu in Microsoft Word.

Spelling and grammar checker is used to check for errors in spelling and grammar found in a Microsoft Word document.

Some options available in Spelling and grammar checker are:

• Change and Change All

• Ignore Once and Ignore All

• Add to Dictionary

• AutoCorrect

Answer:

c,d,f

Explanation:

 

To answer the research question "How am I going to find the information I need on the tople?" the best thing Georgia should
do first is
get on her computer to search the topic
make a list of the books she could use.
ask her teacher for specific suggestions.
make a list of relevant sources to check out

Answers

Answer:

The correct option is D)  

Explanation:

To get information about a research topic the first thing to do is make a list of relevant sources.

Georgias sources would depend on the type of research she has been asked to conduct.

If it's primary research, she would collect information from:

Her own experienceHer own observationthe Information she gathers personally from other people

If it is  secondary research, she can look at

books (hard copy, e-copy)journals (online, offline)online (blogs, videos, websites etc)

Whilst looking online, it is important to stick to authoritative sources as it is possible for anyone to publish anything online.

Examples of reliable sources are:

Journals from Industry AssociationsBureaus of StatisticsGlobal Research CompaniesHigher Institutions e.t.c.

Cheers!

Answer:

D

Explanation:

Edge 2021

(b) Explain what is meant by a MAC address.
T​

Answers

Answer:

A MAC ADDRESS is a hardware identification number that uniquely identifies each device on a network.

Explanation:

1.
Which of the following is NOT caused by alcohol?

Answers

Answer:

What are the choices

Answer:

Explanation:reduced concentratjon

inhibited comprehension

decreased coordination

increased heart rate

Which of the following operation is not performed by a mouse 1) left click , middle click , right click, double click​

Answers

Answer:

middle click

Explanation:

hope it helps

Answer:

middle click

Explanation:

because in the middle it has a scroll

Write the UPDATE command to increase the commission (column name :COMM) by 500 of all the salesman who have achieved sales (Column name : SALES) more than 20000. The table’s name is COMPANY?

Answers

Answer:

UPDATE COMPANY

SET COMM=COMM + 500

WHERE SALES> 20000;

Explanation:

The update command is used for alter the record in the database management system in the table .The update command command modify the record on the some condition in the table in the database management system.

Following are syntax for using the update command .

UPDATE table-name

SET column name 1,column name 2 .........

Where condition

In the given question table -name is "COMPANY" the condition is on the sales column and it update the table only when sales is more than 20000 and set the column COMM by 500.

The UPDATE command that increases the commission column is: UPDATE COMPANY  SET COMM=COMM + 500  WHERE SALES> 20000;

The syntax of an UPDATE SQL command is:

UPDATE table_name SET column = value, where condition

From the question, the table name is COMPANY.

So, we have:

UPDATE COMPANY SET column = value, where condition

The update statement is to increment the COMM column by 500.

So, the query becomes

UPDATE COMPANY  SET COMM=COMM + 500  WHERE condition

Lastly, only columns where SALES are greater than 20000 should be updated.

So, the complete command is:

UPDATE COMPANY  SET COMM=COMM + 500  WHERE SALES> 20000;

Read more about database at:

https://brainly.com/question/15334693

Help With Sims 4
So I got the latest update and my game randomly freezes and im guessing it’s form outdated cc but how can I tell what is outdated without deleting all of it help please

Answers

You should probably try removing it one by one if you dont want to get rid of all of it. it might take some time but,,,,

The hexadecimal number system uses alphabets A to F to represent values_ to _

Answers

Answer:

they represent values 10 to 15

they represent 10 to 15

Why are proper ergonomics important for learning? Students can socialize more when their work area is comfortable. Students can study better if their work area is comfortable. Students are able to take longer breaks when their work area is functional. Students experience more physical strain if their work area is functional.

Answers

Answer:

The correct answer to the following question will be Option B (Students can research easier if their environment is convenient).

Explanation:

Ergonomics defined as the study including its type of job individuals do, the world in which they job as well as the resources people utilize to perform the function.School operation, because this is not a working circumstance, is always at the discretion of "cause and effect," such that, there might not be a standard that satisfies the food safety performance indicators of learning spaces, while adequate ergonomics seems to be very necessary since students will learn easier if their working environment was indeed pleasant.

The other three choices are not related to the given scenario. So that option B seems to be the appropriate choice.

Answer:

B

Explanation:

edge 2020

I need like 10 sentences to delineate and discuss societal issues related to computing . “Including the guiding principles of professional and ethical behavior
Plzzz I know it’s a lot to ask but I need help

Answers

Answer:

Kindly check Explanation

Explanation:

Advancement in technology spurred largely due to the advent of the computer and internet has resulted in a notable change in the behavior, lifestyle and engagement of many individuals. This include ; providing a faster and more convenient way of computing and completing tasks. Accelerating the global rate of technological development due to great computing capabilities. Educational enhancement and development through online education.

Computing also pose some societal issues which needs to addressed. This include :

Issues regarding privacy and identity theft are widespread. Addiction to games and other engaging content often pose distraction to youth and child development. Computing could be said to have placed increased pressure on human power and engagement with the advent of automated robots and programs. Increased exposure to electromagnetic rays. Promotion of indecency and immoral contents has become increasingly easier. Peer influence through fake promotion and display of wealth by some overrated individuals.

Therefore, it is imperative that informations conveyed through the internet are treated with utmost confidentiality in other to avoid privacy issues which may arise from leakage.

What is true about teen pregnancy and parenting? Teen parents and their child experience little effects that are different from other families. Teen parents often have an easier time parenting because they have more energy than older parents. Children of teen parents often lag behind developmentally. Teen parents may have trouble finding jobs.

Answers

Answer:

I think its "Children of teen parents often lag behind developmentally." But I'm not for sure

Answer:

D) Teen parents may have trouble finding jobs.

Explanation:

This is the correct answer!! I took the test, Hope this helps!!:)

Other Questions
By visualizing the scene the reader can conclude that the narrator isgleeful.indifferent.irritated.curious. What are the solutions of x4 + 6X-6= 10? Find the next three terms in the geometric sequence: 72, 36, 18,... (sorry for bothering a lot) A survey taken in a large statistics class contained the question: "What's the fastest you have driven a car (in miles per hour)?" The five-number summary for the 87 males surveyed is: min = 55, Q1 = 95, Median = 110, Q3 = 120, Max = 155 Should the largest observation in this data set be classified as an outlier? No Yes The sum of one and the product of 4 and a number x Hunter-gatherer societies are typified byTheir ability to write down their thoughtsA wandering, nomadic experienceTheir ability to use fireA permanent, agricultural existence Introduction: Match the word with its definition.GhaziMuslim rulerprimarymain or most importantJanissariesenslaved people who served theOttoman Empiremonotheistic religion thatconcentrates on doing good workssultanSikhismMuslim warrior EASY! WILL GIVE BRAINLIEST!Find the conductivity of a conduit with a cross-sectional area of 0.50 cm2 and a length of 15 cm if its conductance G is 0.050 ohm-1. = _____ ohm-1cm-l3751.50.0017 Write an alternative ending for the remarkable rocket. Hi any helper here me dont speak English to much please help me If y = x + 2x,find the value of y when x = 5 A ball is thrown upward with ten units of momentum initially. What is the recoil momentum of the earth? Why do we not feel this? Find distance of each What is the rate of change/slope? Miles per hourHours Miles2 70 4 1406 2108 280 A furniture factory's employees work overtime in February to finish an order that is sold on February 28. The office sends a statement to the customer in early March and payment is received by mid-March. The overtime salaries should be expensed in:______a) the period when the workers receive their cheques b) either in February or March depending on when the pay period ends c) February. d) March. Niler Corporation reported the following after-tax information for its current fiscal year: $35,000 income from continuing operations, $8,400 income from operations of discontinued Line C, and $12,500 loss on disposal of Line C.Starting with income from continuing operations, prepare a partial income statement for Niler for the current year. Ignore earnings per share. Shanda has 14.7 yards of fabric remaining afterusing 8.1 yards to make pillows. How many yardsof fabric did Shanda have before making the pillows? A box of oranges weighs 4 kg. If one orange weighs 80 g, how many oranges are in the box? Fill out the table below by listing the three main costs associated with higher educationand describing three financial aid options for college 9x+18=-20what does X =