Please help……Your friend is taking images from all over the internet without giving credit to the sources. He tells you that it’s no big deal, and no one will know or care anyway. Help your friend by explaining why it is important to follow copyright laws when photos are needed.

Answers

Answer 1

Answer:

For people who generate creative content, copyright regulations are crucial. It safeguards their works from being utilized without their permission or in ways that they do not approve of. If you successfully profited by utilizing someone else's copyrighted work, in this example their images, you may be required to pay monetary damages, and the court may order you to stop using his/her content without their agreement. A federal judge may potentially seize your work and compel you to delete them right away.


Related Questions

In two-dimensional arrays, the _____________ is always listed second.

Answers

Answer:

row

Explanation:

easy python question, no explanation just right answer

Answers

Answer:

See the code below.

Explanation:

def sumOfTwo(a, b, v):

   output = False

   for i in a:

       for j in b:

           sum = i + j

           if sum == v:

               output = True

   print(output)

sumOfTwo([-4, 6, 1], [10, .5, 30], 6)

You can use any online python ide to check the code.

Isabela wants to edit a presentation for her science class. she is in the main view of the powerpoint application. how can she access her presentation? go to the backstage view, and click options. click the file tab, and click the open option. click the quick access toolbar, and click the open option. type in the name of the file in the search field, and click open.

Answers

The Isabela access her presentation for her science class by clicking the file tab, and clicking the open option.

What is power point presentation?

Power point presentation is a softwere which display the data with the help of collection of slides.

Isabela wants to edit a presentation for her science class. She is in the main view of the powerpoint application.

Form the main view to access her presentation, Isabela need to follow the following steps-

Click the file tab which is at the main menu.Now she need to click the open option, which appers under the file tab.

Thus, the Isabela access her presentation for her science class by clicking the file tab, and clicking the open option.

Learn more about the power point presentation here;

https://brainly.com/question/24653274

Answer: It’s B, Click the File tab, and click the open option

Explanation:

just got it right on edge

Which three steps might be included in an algorithm for a digital thermostat?
✓ A. The thermostat uses the resistance detected to calculate the
temperature.
B. The thermostat sends an electrical signal to either the air
conditioner or the heater.
C. The thermostat measures electrical resistance with its thermistor.
O D. The thermostat automatically installs itself by wiring itself to the
house's electrical system.

Answers

Answer:

Explanation:

It certainly isn't D. It would cost a fortune to make that happen. It's not impossibe. Just impractical.

It's not A. Resistance is a floating physical thing present in the air.

B could be correct, but there is a better answer.

The answer is C. A thermistor is a resistance that is temperature sensitive.

_________________ is a storage capability that removes duplicate chunks of data and replaces them with pointers back to a single original item.

Answers

Answer:

The answer is Deduplication

FOR loops are considered to be which of the following:

A. primarily pretest conditional loops
B. used for conditional statements
C. counter controlled loops
D. post test conditional loops

Answers

Answer:

C. counter controlled loop

Explanation:

A counter controlled loop, is a loop that repeats a specific number of times. If it is known how many times a loop must repeat or perform a certain task, it is a count controlled loop (for loop).

- It must initialize a counter variable to a starting value.

- It must test the counter variable by comparing it to a maximum value. When the counter variable reaches its maximum value, the loop terminates.

- It must update the counter variable during each iteration. This is usually done by incrementing the variable.

Can anyone figure this out???? I need help ASAP!

Answers

Answer:

cant see

Explanation:

write an QBASIC programme to find the area of circle


Answers

CLS

INPUT “ENTER RADIUS”; R

A = 3.14 * R ^ 2

PRINT “AREA OF CIRCLE IS ”; A

END

100 POINTS!!!!
Select 3 examples of netiquette guidelines.

.Follow the same standards online as you would in real life.
Always write in all caps to ensure messages are understood.
Deceive, steal, and defraud online when the opportunity arises.
Respect other people’s data and time limitations.
Share accurate and helpful information over the internet.

Answers

The examples of netiquette guidelines are:

Follow the same standards online as you would in real life.Respect other people’s data and time limitations.Share accurate and helpful information over the internet.

What is netiquette guidelines?

The term netiquette is known to be the short form of Internet etiquette or network etiquette.

Conclusively, They are known to be the different guidelines for accurate and right communication se in the online community. It is made up of the right ways for sending e-mail, making conversations online, and others.

Learn more about  netiquette guidelines from

https://brainly.com/question/3493104

The RGB value below produces a shade of purple. What does the number 175
represent?
200, 175, 125
A. The amount of green
B. The amount of red
C. The amount of black
D. The amount of blue

Answers

Answer:

The amount of red.

Explanation:

The number 175 represents the amount of red. Thus, the correct option for this question is B.

What do you mean by RGB value?

RGB value may be defined as a type of color model that represents an additive color model in which the red, green, and blue primary colors of light are added together in various ways to reproduce a broad array of colors.

The name of the RGB model originates from the initial values of the three additive primary colors red, green, and blue. Each intensity value is on a scale of 0 to 255, or in hexadecimal from 00 to FF. RGB values are used in HTML, XHTML, CSS, and other web standards.

The number 200 determines the amount of blue colors, the number 125 determines the amount of green colors, and the number 175 determines the amount of red colors.

Therefore, the number 175 represents the amount of red. Thus, the correct option for this question is B.

To learn more about RGB value, refer to the link:

https://brainly.com/question/19262252

#SPJ2

An animated film that you have seen that was particularly effective. which characteristics made it successful?

Answers

If you want to make a successful animation, you could think about the graphics and how smooth the characters look. You could make sure the mouths are in sync with the voices. Make sure the theme of the animation is gripping and think about your audience. An example is Pixar Studios. Their main target audience is children, but their content is still good for all ages. A good idea is to make your content family-friendly, this will make sure you get more watchers.

I hope this could help you...

In order to link to another page on your web site, you need to know the target page name and:

a
The name of your web server

b
The character encoding of the target page

c
The numeric address of the target location

d
The path to the target page from your current page location

Answers

Answer:

I belive it would be D or C

Explanation:

Thats the only 2 answeres that would logically make since

There are a wide variety of nonsampling errors that can occur during data collection including the first type, ________.

Answers

Answer:

There are a wide variety of nonsampling errors that can occur during data collection including the first type, Fieldworker error

Explanation:

hopes this help (:

A Card class has been defined with the following data fields. Notice that the rank of a Card only includes the values from Ace - 10 (face cards have been removed):

class Card {

private int rank; // values Ace (1) to 10
private int suit; // club - 0, diamond - 1, heart - 2, spade - 3

public Card(int rank, int suit) {
this.rank = rank;
this.suit = suit;
}
}

A deck of cards has been defined with the following array:

Card[] cards = new Card[40];

Which of the following for loops will populate cards so there is a Card object of each suit and rank (e.g: an ace of clubs, and ace of diamonds, an ace of hearts, an ace of spades, a 1 of clubs, etc)?

Note: This question is best answered after completion of the programming practice activity for this section.

a
int index = 0;
for (int suit = 1; suit < = 10; suit++) {
for (int rank = 0; rank < = 3; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

b
int index = 0;
for (int suit = 0; suit < = 4; suit++) {
for (int rank = 0; rank < = 10; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

c
int index = 0;
for (int rank = 1; rank <= 10; rank++) {
for (int suit = 0; suit <= 3; suit++) {
cards[index] = new Card (rank, suit);
index++;
}

d
int index = 0;
for (int suit = 0; suit < = 3; suit++) {
for (int rank = 1; rank < 10; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

Answers

Answer: b

Explanation: i did this one!!!!!!!!!!

In a typical information security program, what is the primary responsibility of information (data) owner

Answers

The typical responsibility of the information that an owner is to determine the level of sensitivity or classification level.

What is an information security program?

The information security program is a set of activities, projects, and initiatives that help an organization IT framework and help the organization meet all the business goals leading to corresponding to the benchmarks. The main duty of the data owner is to determine the level of sensitivity of the data.

Find out more information about information security.

brainly.com/question/25226643

Where was the oldest national broadcasting network in the world founded?.

Answers

Answer:

Headquartered at Broadcasting House in London.

Explanation:

Correctly installed tubing is installed in a neat fashion with bends that follow existing _____. Group of answer choices rules contours trends assumptions

Answers

Correctly installed tubing is installed in a neat fashion with bends that follow existing contours.

What is tubing?

Tubing is known to be the original flow conduit that is often employed by people to move created fluids to the surface or in fluids formation.

Note that it is often used in wells and as such, a rightly installed tubing is installed in a good and clean way with bends that follow existing contours.

Learn more about tubing from

https://brainly.com/question/17274244

You conduct an experiment to find the probability of a flipped coin landing on
heads or tails. You flip the coin 10 times, with a result of 8 heads and 2 tails,
and conclude that the probability of a coin landing on heads is 80%. Why did
you get inaccurate results?
A. The size of the coin wasn't considered.
B. The sample size was too small.
C. There is only one head and one tail, so the results should be 50%
each.
O D. You didn't flip the coin high enough.

Answers

Answer:

Experimental probability describes how frequently an event actually occurred in an experiment. So if you tossed a coin 20 times and got heads 8 times, the experimental probability of getting heads would be 8/20, which is the same as 2/5, or 0.4, or 40%.

C. The probability of choosing something could either be this or that . Considering this, the probability of obtaining a head should be 50%

A distinguishing feature of methods that have the reserved word void in the method header is that they have:.

Answers

Answer:

no return statements

Explanation:

A distinguishing feature of methods that have the reserved word void in the method header is that they have no return statement.

What is reserved word?

Reserved words are expressions that have been designated for a certain purpose but cannot be used when naming variables. For instance, "print" is a reserved term since it is used to display text on a screen in many different languages.

Operating systems employ reserved words as a way to designate a device file or another service. The MS-DOS and Windows operating systems' reserved terms are listed below.

For instance, if you try to save a file as CON or CON.txt, you can get an error saying the file already exists or that the name is reserved.

Therefore, A distinguishing feature of methods that have the reserved word void in the method header is that they have no return statement.

To learn more about no return statement, refer to the link:

https://brainly.com/question/14894498

#SPJ2

It is against the law for drivers ____________ to use a wireless communication device while operating a motor vehicle.

Answers

Answer:while operating a motor vehicle

Explanation:

the oppurtunity cost of earning an advanced college degree is that

Answers

You can use it to win arguments on the internet

Answer:

you like to say hi

Explanation:

new ppl are wihn

Please help me on this it’s due now

Answers

Answer:

All of the Above

Explanation:

TDL professionals meet all of these options.

The statement that best describes the benefits of a career in transportation, distribution, and logistics (TDL) may include all of the statements.

What is TDL?

TDL stands for transportation, distribution, and logistics. It is characterized as an expanding industry that mutually connects manufacturers and other companies to consumers.

According to the present times, with a huge increase in eCommerce, a strong TDL workforce is required to transport goods from one location to another safely and on time.

The benefits of a career in TDL involve professional work in a highly collaborative environment that values teamwork, professionals meet the needs of consumers across the globe, and there are several opportunities to solve unique problems in the TDL industry.

Therefore, the statement that best describes the benefits of a career in transportation, distribution, and logistics (TDL) may include all of the statements.

To learn more about Transportations, refer to the link:

https://brainly.com/question/27667264

#SPJ7

This is an example of what type of formula? =average(d1:d17) question 1 options: addition subtraction range average

Answers

Answer:

d average

Explanation:

The average is the ratio of the sum of the observation to the total number of observations. Then the correct option is D.

What is average?

Average is simply defined as the mean of the given set of numbers. The mean is considered as one of the measures of central tendencies in statistics. The average is said to be an arithmetic mean.

The average is given as

[tex]\rm Average = \dfrac{Sum\ of\ the\ observation}{Total\ number\ of \ observations}[/tex]

This is an example of the average formula.

More about the average link is given below.

https://brainly.com/question/521501

Select all examples of ethical and appropriate use of business e-mails.

1 ) Claudia shares a joke with her coworkers.
2) Celia forwards an e-mail asking for donations to the relief fund for hurricane victims.
3) Lucia sets up a 2:00 meeting with her marketing team.
4) Iris sends a message about a rally to stop the sale of furs.
5) Ken deletes a message from his boss without reading it.
6) Karl sends a graphic to his coworker in an attachment. Karl sends a graphic to his coworker in an attachment.

Answers

Answer:

Number 3 only I believe, sorry if im wrong.

Explanation:

A ________ is any business event that generates data worthy of being captured and stored in the organization’s database.

Answers

the answer is transaction

When trying to find a machine that is needed to access the data can be difficult. What is this an example of?.

Answers

There are different kinds of computer language. The above is an example of Machine language. It is also a kind of input devices.

Why machine language?

Machine language is known to be a type of language that can only be understood by a computer. It is therefore very difficult for a person to understand as it is the only thing that the computer system can use.

When a person is trying to find a machine that is needed to access the data, it will be be difficult as one is not familiar with the machine language and what can be the best tool to use.

Learn more about Machine language from

https://brainly.com/question/5045657

which country do you live in?​

Answers

I live in the USA

Hope this helps!

Answer:

Ghana

Explanation:

because I'm an African

A method that executes because it is called automatically when an appropriate event occurs is an event ____. A) Responder B) Listener C) handler D) source

Answers

In programming a typical type of method that executes when an event is trigered is called event handler

C) handler Event Handler

Event Handlers

What are handlers?

Handler are codes that runs on the background thread in a multithreaded programme, the executes series of operation when an events trigers their operations.

Learn more about handlers here:https://brainly.com/question/20028260

Janis is working on a project on a project with some classmates. Which word processing features can they use while authoring the project report

Answers

Answer:

Use the word project

Explanation:

Its just a guess

Janis will use the word project for authoring the project report.

What is Project Report?

A project report is a document that provides information on the general state of the project or particular aspects of its performance. Regardless of the report type, it includes project data based on managerial, technical, financial, economic, or production elements.

Writing a project report helps you identify and comprehend the requirements for the success of your project. It makes your ideas clear to you.

Any firm needs information from a variety of sources, including technical, financial, economic, production, and managerial information. They are important during the inception, growth, and expansion phases of a business.

To know more about Project Report follow the link.

https://brainly.com/question/6905384

#SPJ5

How to copy and paste from pdf to word without losing formatting?.

Answers

Answer:

mac: cmd c, cmd v
windows: ctrl c, ctrl V

Windows: use pdf to word convertor
such applications like pdf elemnt, pdfX, smallpdf(.com) online convertors, etc to convert

Other Questions
A coarse particle has a diameter of 1x10-6m. a nanoparticle has a diameter of 1.6 x 10-9m. Calculate how many times bigger the diameter of the coarse particle is than the diameter of the nanoparticle Read the text and question. Think about what you have learned and choose the option with the correct answer. Individuals have the tendency to assign __________ attributions to others and assign __________ attributions to themselves.a.internal . . . externalb.stable . . . unstablec.external . . . internald.unstable . . . stable What are employers required to do to keep employees safe from caught-in and -between hazards from hand-held power tools? Use the paragraphs to complete the activity.Patrick lived in Emoryville, but every Saturday morning he rode two city buses to his uncles bookstore in Northview, where he worked. He didnt mind the commute because he loved his job. He loved spending time with his uncle, but he also loved going to work because he had become friends with Andrew, one of his co-workers. The boys would talk about everything from baseball scores to movies to favorite pizza toppings.So this Saturday, when Patrick got to work, he and Andrew got to talking as they always did.Hey, Pat, Andrew said casually.Hey, said Patrick. Did you have a good week?Yeah, he said. Great week. My basketball team made it into the semifinals. The game is tonight. Were playing Emoryville, our nemesis.Before Patrick could say another word, Andrew continued. I dont like Emoryville. I dont think I could ever be friends with someone from that town. Our schools are such rivals.Patrick was speechless.Where are you from, Pat? I cant believe Ive never asked you that before!Patrick fumbled over his words. Not too far from here, he said before he quickly changed the subject to the new shipment of graphic novels.In 35 sentences, identify the two different points of view in the story, and describe the humor and suspense created by the differences in point of view. 1775 was the year that what eventbegan?A. Constitutional ConventionB. American RevolutionC. French and Indian War How do the jobs that Mother and Father have in the book differ from our society in the roles they play? The Giver Chapter 5 Which 1850s social norm is reflected in the excerpt about white women? the idea that women should look delicate and be handled delicately the idea that women should avoid too many intellectual pursuits the idea that women should devote themselves to becoming a mother the idea that women should be more practical and less sentimental Given f(x) = x2 + 1 and g(x) = |x + 31| which value of x is asolution to the equation f(x) = g(x)? what the symbol of sodium peroxide On a given planet the weight of an object varies directly with the mass of an object. Suppose that an object whose mass is 3kg weighs 21N. Find the weight of an object whose mass is 7kg Which of the following is evidence that electromagnetic radiation can be described by the wave model?(1 point)Atoms absorb and emit electromagnetic radiation at discrete energy values.Light from a flashlight spreads out to illuminate a dark room.Electromagnetic radiation loses energy when it scatters off charged particles.Light travels from faraway stars to Earth. In photosynthesis, plants use chlorophyll to produce. Which number best represents a depth of two meters below the ground? hi its nice to meet you Part CWhen only one color of light reflects from a piece of paper, what happens to the other colors of light? Remember thatlight is energy, and energy cannot be created or destroyed. help! (pic below, choices r A or B!) Calculate the volume occupied by 10 moles of hydrogen gas at 145K and 705 Torr.2.05 L14L128 L0.007 L What is the measure of m? I WILL MARK BRAINLIEST