0% found this document useful (0 votes)
13 views11 pages

CS101 Quiz 3 by Math Zone For Vu

youtube channel math zone for vu

Uploaded by

mathzone115
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views11 pages

CS101 Quiz 3 by Math Zone For Vu

youtube channel math zone for vu

Uploaded by

mathzone115
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

CS101 quiz 3 solved by math zone for v

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

Question: Program believed to be correct and the program that is correct is


Option 1: Software Verification
Option 2: Software Modularity
Option 3: Software requirement gathering
Option 4: Software Validation
Correct Answer: Software Verification

Question: Which of the following is the correct syntax to initialize a 3-element


integer array in C/C++?
Option 1: int arr[3] = (1,2,3)
Option 2: int arr(3) = {1,2,3}
Option 3: int arr(3) = (1,2,3);
Option 4: int arr[3] = {1,2,3}
Correct Answer: int arr[3] = {1,2,3}

Question: What is the purpose of the program given below?


if (CGPA>=3.0)
cout<<”Give Scholarship”; else
cout<<”Sorry you do not qualify for the scholarship”;
Option 1: Determine if a student qualifies for a scholarship
Option 2: Calculate the CGPA of a student
Option 3: Provide information about university policies
Option 4: Print a student's semester grades
Correct Answer: Determine if a student qualifies for a scholarship

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

Question: What term is used to refer to the building blocks in algorithm


representation that help eliminate ambiguity?
Option 1: Symbols
Option 2: Primitives
Option 3: Terminators
Option 4: Constructs
Correct Answer: Primitives

Question: ________ keyword is used in python language to define a function.


Option 1: Define
Option 2: Dfi
Option 3: Def
Option 4: Dfn
Correct Answer: Def

Question: What is the output of the following code?


int sum = 14;
if ( sum < 20 )
cout<<"Under ";
if ( sum > 20 )
cout<<"Over ";
cout<<"the limit.";
Option 1: Over the limit
Option 2: Under
Option 3: Under the limit
SOLVED BY ''MATH ZONE FOR VU''
VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

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 Pseudo code can have the equivalent _________assignment


structure.
Option 1: Java
Option 2: Python
Option 3: C/C++
Option 4: COBOL
Correct Answer: C/C++

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

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: Let a unsorted list Fred, Alex, Diana ,Byron ,Carol


Which one will be sorted at last
Option 1: Fred
Option 2: Carol
Option 3: Alex
Option 4: Diana
Correct Answer: Fred

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

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

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: ____________ was the first to implement the web.


Option 1: Charles Babbage
Option 2: Tim Berners-Lee
Option 3: Steve Jobs
Option 4: Alan Turing
Correct Answer: Tim Berners-Lee

Question: If While (i<=n), The loop will keep executing until “i” remains
Option 1: Less than n

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

Option 2: Greater than and equal to n


Option 3: Equal to n
Option 4: Less than or equal to n
Correct Answer: Less than or equal to 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: The Manufactured Product moves into Maintenance phase for


_____________.
Option 1: Error removal
Option 2: Repair process

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

Option 3: Error correction


Option 4: Error detection
Correct Answer: Error removal

Question: What will be the output of following pseudo code?


def FindFactorial():
fact = 2
i=1;
While (i<=7)
fact=fact*i;
i=i+1;
print(fact)
Option 1: 120
Option 2: 5040
Option 3: 980
Option 4: 10080
Correct Answer: 5040

Question: Which of the following best describes open-source development?


Option 1: A formal method of software development.
Option 2: A process followed by all the software houses.
Option 3: A means of producing free software.
Option 4: A process used for developing most proprietary software in the industry.
Correct Answer: A means of producing free software.

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

Question: During the implementation phase of software engineering, what task is


typically performed?
Option 1: Writing programs
Option 2: Creating modular design
Option 3: System analysis
Option 4: Requirements gathering
Correct Answer: Writing programs

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

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507
CS101 quiz 3 solved by math zone for v

SOLVED BY ''MATH ZONE FOR VU''


VU ALL PAID SERVICES AVAILABLE +923305516507

You might also like