What are copyright laws? Authority to reprint an original work as long as it's not for profit Entitlement to use and sell another's work as long as you know the creator Privileges given to literary authors to reproduce the writing of others Rights given to original authors and creators to protect their work from unlawful use

Answers

Answer 1
Answer: I think it's the lest one: Rights given to original authors and creators to protect their work from unlawful use
Answer 2
Answer:

Answer:

Rights given to original authors and creators to protect their work from unlawful use

Explanation: It makes sense.


Related Questions

Paulo uses a densitometer the reading is 1.8 + 10% What is the acceptable range for the densitometer
Have you been tempted to do something online that you wouldn't do ifpeople knew it was you?
Query " frosty the snowman
There was a red screen on my computer that said "VIRUS DETECTED. IF YOU X OUT THIS TAB, THEN YOUR HARD DRIVE WILL BE DELETED." What does that mean, should I off xed the tab out, I shut down my computer when i saw that...so will anything happen to my computer? IS THE VIRUS STILL THERE????AND LAST.....WHAT DOES A VIRUS HAVE TO DO WITH HARD DRIVE? AND WHAT DOES A VIRUS AFFECT? HOW WILL IT AFFECT MY COMPUTER?
Which type of file can be used to import data into a spreadsheet?

What does the word treasure refer to mean?Why do you think the author used this word?

Answers


Treasure is probably a prized possession. The author probably used this word to highlight the importance of the object.
i think the word treasure means a prize and i think the author used this word to describe the way treasure meant to him

how to create a program that prime number include arraylist , and if not print the prime factors of the number.

Answers

Answer:

import math

# Python program for presenting all the prime numbers till an agreed numeral

prime=[]

def findprimeinanarray(n):

   print("Prime numbers admid", 1, "and", n, "are:")

   j=0

   flag=0

   for n in range(1, n + 1):

  # all prime numbers are greater than

      if n > 1:

         for i in range(2, n):

          if (n % i) == 0:

              flag=0

              break

          else:

              flag=1

      if flag==1:

          prime.insert(j,n)

          j=j+1

      else:

          continue

   print(prime[:])        

# A Python function for printing all the prime functions and a Python program to print prime factor

prime1=[]

j=0

# A function to print all the prime factors of a given number if it is not prime

def primeFact(num):

while num % 2==0:

    prime1.insert(2,0)

    num = num/2

 

# num should be odd at this breakpoint

# so we need a shift of 2 ( i = i + 2)

for i in range(3,int(math.sqrt(num))+1,2):

 

 # while i divides num , print i ad divide num

 while num % i== 0:

  num = num /i

 if  num >2:

     j=j+1

     prime1.insert(num,j)

 

 

print(prime1[:])

 

# program to test the coderint

n=600

findprimeinanarray(7)  

k = 45

primeFact(k)

Explanation:

import math

# Python program for presenting all the prime numbers till an agreed numeral

prime=[]

def findprimeinanarray(n):

   print("Prime numbers admid", 1, "and", n, "are:")

   j=0

   flag=0

   for n in range(1, n + 1):

  # all prime numbers are greater than

      if n > 1:

         for i in range(2, n):

          if (n % i) == 0:

              flag=0

              break

          else:

              flag=1

      if flag==1:

          prime.insert(j,n)

          j=j+1

      else:

          continue

   print(prime[:])        

# A Python function for printing all the prime functions and a Python program to print prime factor

prime1=[]

j=0

# A function to print all the prime factors of a given number if it is not prime

def primeFact(num):

while num % 2==0:

    prime1.insert(2,0)

    num = num/2

 

# num should be odd at this breakpoint

# so we need a shift of 2 ( i = i + 2)

for i in range(3,int(math.sqrt(num))+1,2):

 

 # while i divides num , print i ad divide num

 while num % i== 0:

  num = num /i

 if  num >2:

     j=j+1

     prime1.insert(num,j)

 

 

Explain how creating a model provides a practical solution for some scientific research.9th GRADE SCIENCE!!

Answers

Creating a model provides a practical solution for some scientific research by showing systems that are very large,small,or complex.Models are simplified representations of real objects or systems.Models can make things easier to study by zooming in on a single piece of a large system or magnifying something that is too tiny to see with the naked eye.

Answer:

Models are simplified representations that make it possible to study very large, very small, or very complex objects or systems.

Merging is when _____.

Answers

Answer: 2 lanes become 1

Explanation:

2 lanes become 1

Answer:

two things combine

Explanation:

Construct pseudocode for a program that prints ‘Hello World’ on the screen.

Answers

Answer:

Declare a class with name A.

Declare the main method public static void main(String args[]){

Now Type the System. out. println("Hello World"); which displays the text Hello World.

Explanation:

google

A is the answer!!! good luck

Do you believe that OOP should be phased out and we should start working on some alternative(s)? Provide your answer with Yes or No.• Give your opinion with two solid reasons to support your answer.

Answers

Answer:  No, working on alternative instead of OOP is not  good idea from my point of view. In this time of computer technology, there are many different ways to solve a problem. OOP is the choice of law when it comes to solve a problem using object oriented solutions. OOP is a way of developing software that sums up the responsibilities of the system in a company which works together on objects. Objects are not the differentiating characteristics of Object Oriented Programming, instead these are necessary for writing object oriented software.

There are various reasons to use OOP against other alternatives, from which two are given below:

  1. If a problem is classified or divided in many different categories, this will results in complex interactions, for which an object oriented modeling will be selected. The problems like these ends up in complex results in other models.
  2. The standardized approach towards solving problems is Object Oriented designs patterns. By using OO, solutions are generated, which are understandable for both creator and the coder. There are different numbers of design patterns of OO.