(50 points!!) 2.6.5: Response: Creative Commons
Directions: Referring to the previous inforgraphic, give a short description of each of the following license types in your own words.

CC BY
CC BY-SA
CC BY-ND
CC BY-NC
CC BY-NC-SA
CC BY-NC-ND
Of the six licenses, which type is the most restrictive in terms of how you can use the work? Which type is the least restrictive? Answer in complete sentences.

Answers

Answer 1

A short description of each of the following license types in my own words are:

CC BY- This means that the creator must be given the credit.CC BY-SA- This allows users to be able to distribute and make changes to the original work, as long as credit is given to the original owner.CC BY-ND- This refers to the freedom to use a work and is a non-derivative license.CC BY-NC- This means that a reader must get specific permission from the creator to reuse their work.CC BY-NC-SA- This allows other people to make use of a work non-commercially and make edits as long as they give credit to the owner. This is the least restrictive.CC BY-NC-ND- This is the most restrictive as it allows a user to only redistribute the material but not to make any changes to the original.

What is Creative Commons License?

This refers to a type of copyright which allows a user to make use of another's work provided that he gives credit or in some cases, to only make use of the material based on specific permission from the owner.

Read more about creative commons license here:
https://brainly.com/question/17542186


Related Questions

What form of the Chkdsk command can you use in a command prompt window that does not require a restart to run

Answers

Answer:

chkdsk.exe

Explanation: It skips over certain checks that are seen in the other parameters like chkdsk C: /R which requires a restart for those checks. It goes straight into reading the basic file systems to find any bad files/folders/errors using just chkdsk.exe (Image below for example of just using chkdsk.exe)

PLEASE HELP. Nobody has been helping me, i need to resolve this code issue for game design

Answers

Have you tried checking for syntax? Maybe you forgot to define a function. What error is the computer sending you? Is it a syntax error or an incorrect float?

Write a design brief including a problem statement, criteria, and constraints.

PLease hurry it is due today!!!

Answers

Enjoy, It's one of my old ones!  <3

Help me to answer this​

Answers

Answers are in bold

  1*2;  C2   7+A6-5; undefined   (5*3)-8; D2   9/3; C1   7+10-9+8; undefined

Ignore the non-bold values because they are there to number each problem 1 through 5 (rather than be part of the numeric answers).

=======================================================

Explanation:

Problem 1

The notation =C3*C2 means we multiply the numbers in cells C3 and C2. A cell like C3 means we look at column C and row 3. The value 1 is in cell C3. The value 2 is in C2. Therefore =C3*C2 becomes 1*2 = 2. The result 2 is in cell C2.

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

Problem 2

According to the table:

D2 = 7A6 = undefinedD1 = 5

I mentioned A6 is undefined because the table only goes to row 3, and not row 6. I'm not sure if this is a typo or intentional. Since A6 is undefined, the result of =D2+A6-D1 is also undefined.

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

Problem 3

The table shows

D1 = 5C1 = 3B3 = 8

So, =(D1*C1) - B3 becomes (5*3)-8 and that fully simplifies to 7, which is found in cell D2.

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

Problem 4

We have

D3 = 9C1 = 3

Therefore, =D3/C1 = 9/3 = 3 which is found in cell C1

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

Problem 5

D2 = 7B1 = 10D3 = 9B3 = 8

So,

=D2+B1-D3+B3 = 7+10-9+8 = 16

which unfortunately is not found in any of the cells of the table.

The location of 16 is undefined.

explain the all types of commands. off DDl and DML​

Answers

Here is your Answer:-

DDL Commands:- DDL means Data Definition Language. It is used to create and modify the structure of database objects in SQL.

DML Command:- DML Command in SQL database stands for Data Manipulation Language. DML commands are used to retrieve, store, Modify, delete, insert and update data in database.

Answer:

Structured Query Language(SQL) as we all know is the database language by the use of which we can perform certain operations on the existing database and also we can use this language to create a database. SQL uses certain commands like Create, Drop, Insert, etc. to carry out the required tasks.

These SQL commands are mainly categorized into four categories as:

DDL – Data Definition Language

DDL – Data Definition LanguageDQl – Data Query Language

DDL – Data Definition LanguageDQl – Data Query LanguageDML – Data Manipulation Language

DDL – Data Definition LanguageDQl – Data Query LanguageDML – Data Manipulation LanguageDCL – Data Control Language

Though many resources claim there to be another category of SQL clauses TCL – Transaction Control Language. So we will see in detail about TCL as well.

DDL (Data Definition Language):

DDL or Data Definition Language actually consists of the SQL commands that can be used to define the database schema. It simply deals with descriptions of the database schema and is used to create and modify the structure of database objects in the database.DDL is a set of SQL commands used to create, modify, and delete database structures but not data. These commands are normally not used by a general user, who should be accessing the database via an application.

List of DDL commands:

CREATE: This command is used to create the database or its objects (like table, index, function, views, store procedure, and triggers).

DROP: This command is used to delete objects from the database.

ALTER: This is used to alter the structure of the database.

TRUNCATE: This is used to remove all records from a table, including all spaces allocated for the records are removed.

COMMENT: This is used to add comments to the data dictionary.

RENAME: This is used to rename an object existing in the database.

DQL (Data Query Language):

DQL statements are used for performing queries on the data within schema objects. The purpose of the DQL Command is to get some schema relation based on the query passed to it. We can define DQL as follows it is a component of SQL statement that allows getting data from the database and imposing order upon it. It includes the SELECT statement. This command allows getting the data out of the database to perform operations with it. When a SELECT is fired against a table or tables the result is compiled into a further temporary table, which is displayed or perhaps received by the program i.e. a front-end.

List of DQL:

SELECT: It is used to retrieve data from the database.

DML(Data Manipulation Language):

The SQL commands that deals with the manipulation of data present in the database belong to DML or Data Manipulation Language and this includes most of the SQL statements. It is the component of the SQL statement that controls access to data and to the database. Basically, DCL statements are grouped with DML statements.

List of DML commands:

INSERT : It is used to insert data into a table.

UPDATE: It is used to update existing data within a table.

DELETE : It is used to delete records from a database table.

LOCK: Table control concurrency.

CALL: Call a PL/SQL or JAVA subprogram.

EXPLAIN PLAN: It describes the access path to data.

DCL (Data Control Language):

DCL includes commands such as GRANT and REVOKE which mainly deal with the rights, permissions, and other controls of the database system.

List of DCL commands:

GRANT: This command gives users access privileges to the database.

REVOKE: This command withdraws the user’s access privileges given by using the GRANT command.

Though many resources claim there to be another category of SQL clauses TCL – Transaction Control Language. So we will see in detail about TCL as well. TCL commands deal with the transaction within the database.

List of TCL commands:

COMMIT: Commits a Transaction.

ROLLBACK: Rollbacks a transaction in case of any error occurs.

SAVEPOINT:Sets a savepoint within a transaction.

SET TRANSACTION: Specify characteristics for the transaction.

Sean is studying at a friend's house and notices that he can connect to the wireless network without entering a wireless network key. What does this indicate about the network

Answers

It is a personal network of Sean’s friends family’s

In a certain country, a person must be at least 16 years old to drive a car and must be at least 18 years old to vote. The variable age represents the age of a person as an integer. Which of the following expressions evaluates to true if the person is old enough to drive but not old enough to vote, and evaluates to false otherwise?
I. (age ≥ 16) AND (age ≤ 18)
II. (age ≥ 16) AND (NOT(age ≥ 18))
III. (age < 18) AND (NOT(age < 16))

Answers

Answer:

i. (age >= 16) AND (age <= 18)

Explanation:

What the statement means is that it will only be true if the person is older than or 16 and younger than or 18.

That means that if either one is not true, the entire statement won't be either, as it requires both to be true to work.

The other 2 statements use NOT which changes the value. This means that if someone is less than 18, which is supposed to be true, the not statement will change it so that it's not.

I hope this makes sense :)

. A _____ is a listing of goods and services. an it stores the information about items in a database, usually on a separate computer that is accessible to the server that is running the Web site itself.

Answers

Answer:

A  stores the information about items in a database, usually on a separate computer that is accessible to the server that is running the web site

Explanation:

When the operand on the left side of the * symbol is a string and the operand on the right side is an integer, the * becomes the ________ operator.

Answers

If the operand on the left side of the * symbol is a string and the operand on the right side is an integer, the * becomes the repetition operator.

What is an operand?

In computer programming, the term operand is known to be a term that connote any object that is said to be capable of being altered.

An example, in "1 + 2" the "1" and "2" are said to be the operands and the plus symbol is known to be an operator. Note that If the operand on the left side of the * symbol is a string and the operand on the right side is an integer, the * becomes the repetition operator.

Learn more about operand from

https://brainly.com/question/6381857

This is for an excel class

Calvin asks you to explain the difference between a row chart and a column chart. Describe the difference, both in terms of how they appear visually and in terms of how they are most often used. Provide one example of data appropriate to each type of chart.

Answers

Answer: yes

Explanation:

list the three words using in programming logic statements​

Answers

Answer:

if your doing a psuedocode assignment the answers are ( IF, THEN, ELSE)
I hope this helps :)

Explanation:
I just finished my psuedocode course in school
And got everything right

A type of test that simulates threats associated with external adversaries and security staff has no knowledge of, but management consents to and is fully aware is called

Answers

A type of test that simulates threats associated with external adversaries and security staff has no knowledge of is called Covert security testing.

What is Covert security testing?

This is known to be a test that is performed so as to simulate the threats that are linked with any kind of external adversaries. In this test, the security staff is said to have no knowledge of the covert test.

Covert security testing is also called black hat testing. It is known to be one that takes an adversarial approach by carrying out a kind of testing without the knowledge of the firm's IT staff.

Learn more about test  from

https://brainly.com/question/24863377

Which of the statements below is true?

(CORRECT ANSWER GETS BRAINLIEST)

A) The Formatting, Standard, and Drawing commands are unavailable.

B) The Formatting, Standard, and Drawing toolbars are displayed.

C) The Formatting, Standard, and Drawing toolbars are hidden.

D) The Formatting, Standard, and Drawing commands have been used.

Answers

The given statement that is true is; B: The Formatting, Standard, and Drawing toolbars are displayed.

Which statement is true of microsoft word?

In Microsoft word, there are different toolbars that are useful in operation. Now, from the given image from Microsoft word, we can see that toolbar is clicked. However in the fly-down from it, we see that the standard, formatting and drawing toolbars are ticked and as such they are the ones displayed.

Looking at the options, the correct one is Option B because it tells us that Formatting, Standard, and Drawing toolbars are displayed.

Read more about a true statement at; https://brainly.com/question/25605883

Answer:

The Formatting, Standard, and Drawing toolbars are displayed.

Explanation:

While working in a group of two the members are not getting along. You bring the two members together so they can discuss this issue. The issue is that neither member wants to work on the actual research they both just want to create the presentation. They work together through the steps of conflict resolution and agree to share the research and work together on creating the presentation

What step of the conflict resolution process is this?

A) agree upon the problem
B) brainstorm possible solutions
C) identify the issue
D) negotiate a solution

Answers

Answer:

D)

Explanation:

At first the two members just want to create the presentation but work together and agree to share the research and work together on creating the presentation.

The conflict resolution is more than agree upon problem, identify issue or brainstorm solutions. The answer is D) negotiate a solution.

Answer:

D) negotiate a solution

When data is being entered into a VARCHAR2 or CHAR column using the INSERT command, the data will be stored in ____

Answers

Answer:

The same case used in the INSERT command.

I did a review on the quizlet for this exact question, and got this answer.

I hope it helps!

Answer:

Insert command

Explanation:

Online interaction with social media platforms:__________.
i. Social Engine Optimization
ii. Testimonials
iii. Social Media Presence

Answers

Answer:

social media precense is your answer

What is the term used to describe spam email scams where the senders attempt to manipulate individuals into the purchase of penny stocks

Answers

phishing scams

hope this helps

Q1. What is file management short note?​

Answers

Answer:

A file management system is used for file maintenance (or management) operations. It is is a type of software that manages data files in a computer system. A file management system has limited capabilities and is designed to manage individual or group files, such as special office documents and records.

match the technology term with its definition

Answers

Answer:

there is no picture

Explanation:

Drag each tile to the correct box.
Arrange the steps in a sequence that you would follow while filtering data in a spreadsheet.
Click the Filter.. option in the submenu of Data.
Click the Data option in the menu of the spreadsheet.
Select the header row of the data to sort.
In the Filter dialog box, enter the filter criteria.
Click OK.







Answers

select the column to sort
2:in the spreadhseet menu, click the Data option
3:in the submenu of Data click the Sort..option
4:In the Sort dialog box, click the "ascending option for the first sort criteria
5:click OK

What is the difference between a binary operator and a unary operator?.

Answers

Answer:

differences between binary operatar and a unary operator

Explanation:

the operators which act upon a single operand are called binary operatar and the operators which required two operands for their action are called unary operator.

Should spreadsheets be used to keep an address list for holiday cards?
YES
ONO
Hurry pls

Answers

Answer:

No

because spreadsheet is used for calculation not for writing address

Why do most data scientists and companies collect enormous amounts of
data?
A. To reduce the huge amount of data found on the internet
B. To store the data and save it for future generations to examine
C. To compete with other data scientists and companies
O D. To make more accurate predictions about their users and their
behaviors

Answers

I believe it’s B because Scientist collect data for further examination more like theories and unknown things.

Answer: D.

Explanation: got it right

The value you store in memory is lost when the program ends or the computer loses power. This type of storage device is called

Answers

Answer:

RAM

Explanation:

RAM memory modules are installed into slots on the computer motherboard. Read-only memory (ROM) is nonvolatile: Data stored in ROM maintains integrity after loss of power.

Who knows about creating "A Discord Bot With Python"
Only answer if you have experience

Answers

Answer:

I have!

A discord bot helps you automate tasks on the server. It's easier to manage and welcome new users, moderate, and more.

im a dev on discord

 

1 Go to the Discord Developer Portal (https://discord.com/developers/applications)

2 Click on the "New Application" button and give your application a name

3 Go to the "Bot" tab and click "Add Bot" to create a bot account for your application

4 Make sure to copy your bot's token as you will need it later

5 Open your terminal or command prompt and run pip install discord.py

6 Create a new Python file in your project folder and name it something like bot.py

7 Import the Discord.py library and create a new client object

8 Add an event listener for the 'message' event to listen for messages in the server and respond to them

9 Add the bot token to the client object:

client.run('your-bot-token-here')

10 Run the bot

   In your terminal, run python bot.py to start the bot

   

11 If everything is working, you should see a message in the console that says "Logged in as [your bot's name]!"

Select L for the items that refer to General Lee, H for General Halleck, and M for General McClellan.


removed from command twice for being overly cautious

Choose.

felt a victory in the North would turn public opinion against the war

Choose.

retreated to Washington, leaving the Confederates free to attack the North

Choose.

stopped the Confederate Army at Antietam

Choose.

was offered command of Union Army after Fort Sumter

Choose

Answers

The letters that represent the names of the individuals associated with the various actions are; M, L, H, M, L

What were the Activities of Railroad Presidents?

1) The person that removed from command twice for being overly cautious was General McClellan.

2) The person that felt a victory in the North would turn public opinion against the war was General Lee.

3) The person that retreated to Washington, leaving the Confederates free to attack the North was General Halleck

4) The person that stopped the Confederate Army at Antietam was General McClellan.

5) The person that was offered command of Union Army after Fort Sumter was General Lee.

Read more about history of railroad Presidents at; https://brainly.com/question/25997960

In binary signaling, there is (are) ________ state(s). A. two B. between three and ten C. one D. an infinite number of

Answers

Your answer is letter A. 2.

Explanation: I have personal experience.

Janelle wants to keep track of the mileage she completes and the courses she runs, and locate new courses while training for a 10k race. Which technology would be most helpful to her?.

Answers

Answer:

GPS-enabled device.

Explanation:

Took the test and got it right! Good luck! :)

Jeff fell asleep in his chair while Elizabeth was delivering a speech on the effects of pollution on the atmosphere. This is an example of failing to _________________.
a.
listen for total meaning
b.
listen with empathy
c.
listen with an open mind
d.
listen ethically


Please select the best answer from the choices provided

A
B
C
D

Answers

Answer:

C) Listen with an open mind

Explanation:

Hope this helps!

Have a blessed day and remember to keep smiling! :)

PLEASE MARK ME AS BRAINLIEST I REALLY WANT TO LEVEL UP

Which type of cable can transfer data up to 480 megabits per second?
ana

Answers

Answer:

Most suppliers offer three types of cables. USB 1.1 cables support data transfer rates up to 12 megabits per second (Mbps). USB 2.0 cables support data transfer rates up to 480 Mbps. USB 3.0 cables support data transfer rates of up to 5.0 Gbit/s.

Explanation:

Answer:

USB 2.0 cables

Explanation:

This could have been searched by you  

Other Questions
The plotadescribes the characters in a storybis what happens in a storytells about the author Do you believe that day light saving time should be permanent? Why or why not ? Must respond with at least 2 paragraphs I need help ASAP, please.. Name two sodium salts that may be prepared by reacting sodium hydroxide with dilute sulphuric acid. Which expression is a difference of squares with a factor of 5x 8? 25x2 16 25x2 16 25x2 64 25x2 64. If the phosphorus is present as phosphate ion (PO43-), how many moles of PO43- are present in 5.00 g of the 15-30-15 fertilizer? A silo (base not included) is to be constructed in the form of a cylinder surmounted by a hemisphere. The cost of construction per square unit of surface area is times as great for the hemisphere as it is for the cylindrical sidewall. Determine the dimensions to be used if the volume is fixed at cubic units and the cost of construction is to be kept to a minimum. Neglect the thickness of the silo and waste in construction Help me pleasee !!!! Select the correct answer.Why does every chemical reaction require a certain amount of activation energy?.Energy is released when the reactants begin to react..Energy lost to the environment during the reaction must be replaced.C. Forming the activated complex requires energy.D. The products have more potential energy than the activated complex.E. The reactants have less potential energy than the products. Quadrilateral ABCD ~ quadrilateral JKLM. What is thelength of LM? Find the value of x.x = [?]Give your answer in simplest form. Frames of reference help us to __________. think creatively organize and understand our world recall the historical past persuade others of the correctness of our views Which is a general representation of a secondary amine? An N is bonded to two electron dots above; with a dotted triangular line to an H, a solid triangular line to an H, and single line to an H; it is noted that the angle between the last 2 H atoms is 107 degrees. An N with 2 electron dots is linked to an R 1 group with a single line, an H with a triangular line, and and H with a dotted line. An N with 2 electron dots is linked to an R 1 group with a single line, an R 2 group with a triangular line, and and H with a dotted line. An N with 2 electron dots is linked to an R 1 group with a single line, an R 2 group with a triangular line, and an R 3 with a dotted line. Recent research on the A-not-B error suggests that the reason 10-month-olds fail to recover the hidden toy is because they ______ Why critical thinking is important especially for chemists? Is he cool?A: YesB: MaybeC: NoD: He is cool and smartE: None of the aboveF: He is rich Stuart is running for class president and needs to calculate votes as they come in over the next week. Which response best explains why a computer would perform this taskbetter than a human? Computers can replicate human tanksComputers can think creativelyComputers don't require sloopComputers process information more quickly good morning to you all! can someone please answer this, ill give you brainliest and your earning 50 points. Python 4.5 code practice please solve quickly i need help 5/9 = /45 fractions