Get The Bits and Bytes of Computer Networking Coursera Quiz Answers
Table of Contents
Q1. Which of the following package formats is used by the Windows Store to distribute universal Windows platform apps?
Answer: appx packages
Explanation: The Windows Store uses .appx
or .appxbundle
formats to distribute Universal Windows Platform (UWP) apps.
Q2. What does the following command do in Ubuntu: dpkg -r UbuTestPackage
?
Answer: Uninstall a Debian package named "UbuTestPackage"
Explanation: The dpkg -r
command is used to remove a package, and in this case, it targets UbuTestPackage
.
Q3. Which of the following is a method for installing an app into a mobile OS?
Answer: Side-loading
Explanation: Side-loading refers to the process of installing an application directly onto a device without using the official app store.
Q4. Which of the following PowerShell commands will create a directory called “TestArchive” on your desktop by expanding the TestArchive.zip
file?
Answer: Expand-Archive -path C:\Users\testuser\Desktop\TestArchive.zip ~\Desktop\TestArchive\
Explanation: The Expand-Archive
command extracts a ZIP archive to a specified directory.
Q5. Which of the following PowerShell commands will install a software package called “TestPackage” on your system?
Answer: Install-Package -name TestPackage
Explanation: The Install-Package
command installs software packages using package providers like Chocolatey or NuGet.
Q6. Which of the following is the repository source file in Ubuntu?
Answer: /etc/APT/sources.list
Explanation: The /etc/APT/sources.list
file contains the list of repository sources used by the Advanced Packaging Tool (APT) for package management.
Q7. In Ubuntu, when a device is connected to your computer, a device file is created in the /dev
directory. What kind of device might create a file called /dev/sdc
?
Answer: A memory stick
Explanation: The /dev/sdc
file typically represents a storage device like a USB drive or external hard disk.
Q8. Which of the following actions will open Windows’ Device Manager console? Select all that apply.
Answer:
Open the Run dialog box and type in devmgmt.msc
Right-click on “This PC,” in the Windows file menu, then select “Manage”
Explanation:
Both of these methods are standard ways to access the Device Manager in Windows.
Q9. Which of the following Ubuntu device files was created by the first detected storage device?
Answer: /dev/sda
Explanation: The first storage device detected by the system is assigned /dev/sda
. Subsequent devices are assigned /dev/sdb
, /dev/sdc
, etc.
Q10. Which of the following commands will show you what Linux kernel version you have?
Answer: uname -r
Explanation: The uname -r
command outputs the current kernel version of the Linux system
Get Complete The Bits and Bytes of Computer Networking Coursera Quiz Answers
Module 01 Challenge: Working with Files in Windows and Linux Quiz Answers
Module 02 Challenge: Users, Administrators, Groups and Permissions Quiz Answers
Module 03 Challenge: Package and Software Management Quiz Answers
Module 04 Challenge: Filesystems Graded Quiz Answers
Module 05 Challenge: Process Management Quiz Answers
Module 06 Challenge: Operating System in Practice Quiz Answers