Complete the sentence to describe open source software.
Open source software means the [1] is freely available to everyone.Open source software means the source code is freely available for anyone to see, modify, and share.
Complete the sentence to describe proprietary software.
Proprietary software usually has a [1] that restricts how you can use it.Proprietary software comes with a license that limits how you can use, copy, or change the software.
Fix the error in the statement about software freedom.
Open source software means you cannot [1] the software.The statement is incorrect because open source software means you can modify, use, and share it freely. You cannot restrict others from doing so.
Fill both blanks to complete the dictionary comprehension about software types.
software = {name: [1] for name in software_list if license_type[name] [2] 'open source'}This code creates a dictionary with software names and their license types, but only includes those where the license type is exactly 'open source'.
Fill all three blanks to create a dictionary of proprietary software with their prices above 50.
proprietary_software = {name: price for name, price in software_prices.items() if license_type[name] [1] 'proprietary' and price [2] [3]This dictionary comprehension filters software that is proprietary and costs more than 50 units.