CS101 Quiz 3 by Math Zone For Vu
CS101 Quiz 3 by Math Zone For Vu
Option 4: Over
Correct Answer: Under the limit
Question: What significant components of the World Wide Web were included in
the early prototype developed by Tim Berners-Lee?
Option 1: Cloud computing and virtual reality support
Option 2: Hypertext document files
Option 3: Audio and video processing
Option 4: Multimedia format and hyperlinks
Correct Answer: Hypertext document files
Question: How many choices are possible when using a single if-else statement?
Option 1: 4
Option 2: 3
Option 3: 1
Option 4: 2
Correct Answer: 2
Question: The ___________ term is used for software produced for the mass
market and sold in retail stores or downloaded via the Internet.
Option 1: Proprietary software
Option 2: Custom software
Option 3: Open-source software
Option 4: Commercial off-the-shelf (COTS) software
Correct Answer: Commercial off-the-shelf (COTS) software
Question: First software for implementing the Web was released in __________.
Option 1: October 1990
Option 2: September 1990
Option 3: November 1990
Option 4: December 1990
Correct Answer: October 1990
Question: What is the purpose of the while loop in the pseudocode routine of the
sequential search algorithm?
Option 1: To compare TestEntry with TargetValue
Option 2: To terminate the search
Option 3: To sort the list
Option 4: To iterate through the list entries
Correct Answer: To iterate through the list entries
Question: How does the P2P model alleviate the burden on the server in streaming
systems?
Option 1: By expanding the server's capabilities
Option 2: By transferring data distribution to the peers
Option 3: By implementing N-unicast technology
Option 4: By relying on multicast exclusively
Correct Answer: By transferring data distribution to the peers
Question: If While (i<=n), The loop will keep executing until “i” remains
Option 1: Less than n
Question: By attaching the _____________ to a message, the sender can mark the
message as authentic.
Option 1: Protocol
Option 2: Security
Option 3: Single Signature
Option 4: Dual Signature
Correct Answer: Single Signature
Question: How does the 4G phone network differ from earlier generations in terms
of communication with the Internet?
Option 1: Is IP-based throughout
Option 2: Requires gateways
Option 3: Uses company protocols
Option 4: Relies on traditional systems
Correct Answer: Is IP-based throughout
Question: What will be the value of 'f' after the first iteration of the while loop in
the given pseudo-code?
f=1
i=1;
While (i<=n):
f=f*i;
i=i+1;
Option 1: 2
Option 2: Cannot be determined
Option 3: 1
Option 4: n
Correct Answer: 2