Skip to main content

SOCIETAL IMPACTS - QUE/ ANS

 

SOCIETAL IMPACTS

GRADE XII

Q1. Difference between Active and Passive Footprints

Active footprint is consciously created by individuals, while passive footprint is often unintentional or automatic.

Individuals have more control over their active footprint as they actively choose what to share, whereas passive footprint may be collected without their explicit consent or awareness.

Examples: Active footprint includes actions like posting on social media, while passive footprint includes data like browsing history or cookies.

 

Q2. Difference between free software and open source software

Definition: Free software emphasizes users' freedom to use, study, modify, and distribute software.

Definition: Open source software emphasizes the practical benefits of collaborative development, transparency, and peer review.

Free software emphasizes ethical principles and users' freedoms, while open source software focuses more on practical benefits of collaboration and transparency.

Free software often uses copyleft licenses to ensure freedom preservation, whereas open source software may use a variety of licenses, including permissive licenses.

Free software communities tend to prioritize freedom and social justice, while open source communities often focus on technical excellence and collaboration.

 

Q3. Difference between Copyright & Proprietary software.

Definition: Copyright is a legal concept that grants exclusive rights to authors and creators to control the use and distribution of their original works.

Definition: Proprietary software refers to software that is owned and controlled by a single entity or company, which retains exclusive rights over its use, distribution, and modification.

Copyright primarily concerns legal rights over creative works, while proprietary software refers to the ownership and control of software products.

Copyright establishes the creator's rights over their work, whereas proprietary software entails restrictions on users' rights based on licensing agreements.

Copyright applies to all original software code, whether open source or proprietary, while proprietary software is specifically owned and controlled by a single entity.

 

 

Q4. Difference between Permissive & Copyright License.

Permissive licenses grant users broad freedoms with minimal restrictions, while copyright licenses can vary widely in terms of the freedoms and obligations they impose.

Permissive licenses are specifically designed to maximize the freedom of users and developers, whereas copyright licenses encompass a broader range of permissions and restrictions.

Copyright licenses operate within the framework of copyright law, providing legal mechanisms for enforcing the rights and obligations associated with copyrighted works.

Q5. Difference between Copyrights and Patents

Definition: Copyright is a legal protection granted to creators of original works of authorship, such as literary works, artistic creations, music, and software.

Definition: A patent is a legal protection granted to inventors for new and useful inventions, processes, methods, or improvements thereof.

Copyright protects original works of authorship, while patents protect inventions or discoveries.

Copyright protects the expression of ideas, whereas patents protect the underlying ideas or concepts themselves.

Copyright protection lasts longer than patent protection, typically lasting for the author's lifetime plus additional years, while patents have a fixed term of usually 20 years.

Copyright protection is usually automatic upon creation, while patents require a formal application process and examination by a patent office.

Q6. Difference between Plagiarism and Copyright Infringement

Definition: Plagiarism involves the act of presenting someone else's ideas, words, or work as one's own without proper attribution or credit.

Definition: Copyright infringement occurs when someone violates the exclusive rights of a copyright holder by using, reproducing, distributing, or creating derivative works based on copyrighted material without permission.

Plagiarism focuses on the misrepresentation of authorship and academic integrity, while copyright infringement focuses on the unauthorized use or exploitation of copyrighted material.

Plagiarism primarily has academic and ethical consequences, while copyright infringement has legal consequences under intellectual property law.

Plagiarism is often associated with academic and creative contexts, whereas copyright infringement can occur in various commercial and non-commercial contexts.

Comments

Popular posts from this blog

CS - SORTING/SEARCHING ALGORITHMS

  SORTING ALGORITHMS                       SORTING ALGORITHM PDF LINK #Bubble Sort          ·        The outer loop iterates through the entire array. ·        The inner loop compares adjacent elements and swaps them if they are out of order. ·        The outer loop runs n times, and each pass moves the largest element to its correct position. arr=[3,8,5,2,1] n = len(arr) print(n) for i in range(n):  #traverse through all the elements         # Last i elements are already sorted, no need to check them         for j in range(0, n-i-1):              # Swap if the element found is greater than the next element              if arr[j] > arr[j+1]:               ...

GRADE XI - NESTED FOR LOOP

                                                         NESTED FOR LOOP 1. for var1 in range(3):      print(var1,"OUTER LOOP")          # 0 outer loop       1 outer loop      2 outer loop          for var2 in range(2):                  print(var2+1,"INNER LOOP")    #1  2 inner loop     1  2  inner loop   1 2 inner loop  2. Print the following pattern using for loop: 1  1 2  1 2 3  1 2 3 4  Sol: for r in range(1,5):   #ROWS     for c in range(1,r+1):   #COLUMNS         print(c,end=" ")     print() 3. Print the following pattern using for loop: @  @ @  @ @ @...

LIST IN PYTHON - 14TH AUG

  LIST IN PYTHON BEGINNERS PRACTICE QUESTIONS 1. Creating List by accepting data from user List1=[] #Empty list n=int(input("Enter number of elements"))    i=0 while i < n:     num= int(input("Enter element " + str(i) + ": "))     List1+=[num]       i+=1 print(List1) OR #Creating List by accepting data from user List1=[ ] n=int(input("Enter number of elements"))   i=0 while i < n:     List1+=[int(input("Enter the element"))]       i+=1     print(List1) 2.Write a program to input the size and the list of elements from user. Count the number of elements  which are divisible by 5 list1= [ ] s =int (input("Enter no of elements")) for i in range(s):     list1 += [int (input("Enter the Elements"))] count=0 for num in list1:         if num % 5 ==0:             count = count+1 print("No. of elements divisible by 5--",c...