0% found this document useful (0 votes)
1K views101 pages

Software Fundamentals (Whole)

Uploaded by

Kirti Saraf
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)
1K views101 pages

Software Fundamentals (Whole)

Uploaded by

Kirti Saraf
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/ 101

16/01/2024, 10:07 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Selection statements

Quiz review
Started on Tuesday, 16 January 2024, 9:40 AM
State Finished
Completed on Tuesday, 16 January 2024, 10:07 AM
Time taken 27 mins 31 secs
Marks 15.78/21.00
Grade 75.13 out of 100.00
Feedback Oops!!! You have scored below 80% ..So Kindly make necessary preparations and reattempt..

Question 1
Correct

Mark 1.00 out of 1.00

45778
Identify the logic which suits the flowchart

45778

Select one:
a. Simple if
b. Nested if
c. if else
d. Else-if Ladder 45778
Your answer is correct.

The correct answer is: Else-if Ladder


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 1/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Choose the correct options to complete the pseudo-code and determine whether the number is positive, zero, or negative.

BEGIN
DECLARE number

READ number

IF _________
PRINT “Number is positive”

IF _________
PRINT “Number is zero”

IF _________

PRINT “Number is Negative”

45778
END IF

END

a. 
number>0, number==0, number<0

b.
number<0, number>0, number==0

c.
number>0, number>0, number==0

d. 45778
number>0, number==0, number==0

Your answer is correct.


The correct answer is:

number>0, number==0, number<0

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 2/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

Go to statements in the algorithm is…

Select one:
a.
Used to iterate the sequence of steps

b. Used to apply decisions in a program

c. 
Used to alternate the flow of the program

d.
Used in sequential arrangement of steps

Your answer is correct. 45778


Go to statements used to transfer the control flow of a program
The correct answer is:
Used to alternate the flow of the program

Question 4
Correct

Mark 1.00 out of 1.00

45778
Which of the keyword is used to close the IF block, while writing a pseudo-code?

Select one:
a. Else

b. End if

c. End

d. Else if

Your answer is correct.

The correct answer is: End if

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 3/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 5
Correct

Mark 1.00 out of 1.00

You are returning home from a hotel. On the way, you find a sealed envelope in a street, fully addressed with unused stamps on it. What
would you do???

Select one:
a. 
post it at the nearest mail box.

b. Remove the unused stamps and destroy the envelope.

c. Open the envelope, find out who has dropped it by mistake, and send it to him if possible.

d. Leave the envelope there as it was and walk away

Your answer is correct.

The correct answer is:


45778
post it at the nearest mail box.

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 4/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

Identify the correct pseudo-code logic for checking a number divisible by 5 or 11.

a.
DECLARE number

IF number%5==0

THEN

PRINT “number divisible by 5”

ELSE IF number%11==0

THEN
PRINT “number divisible by 11”

ELSE

45778
PRINT “number not divisible by 5 or 11”

END IF

READ number

BEGIN

b.
DECLARE number

READ number

IF number%5==0

THEN

PRINT “number divisible by 5”

ELSE IF number%11==0
45778
THEN
PRINT “number divisible by 11”

ELSE

PRINT “number not divisible by 5 or 11”

END IF

c.
DECLARE number

READ number

IF number%5==0
45778
THEN

PRINT “number divisible by 5”

ELSE IF number%11==0

THEN

PRINT “number divisible by 11”


ELSE

PRINT “number not divisible by 5 or 11”

END

BEGIN


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 5/16
16/01/2024, 10:07 Check Your Understanding: Attempt review
d. 
BEGIN

DECLARE number

READ number

IF number%5==0

THEN

PRINT “number divisible by 5”

ELSE IF number%11==0

THEN

PRINT “number divisible by 11”

ELSE
PRINT “number not divisible by 5 or 11”

END IF

END

Your answer is correct.


45778
The correct answer is:

BEGIN
DECLARE number
READ number
IF number%5==0
THEN
PRINT “number divisible by 5”
ELSE IF number%11==0
THEN
PRINT “number divisible by 11”
ELSE
45778
PRINT “number not divisible by 5 or 11”
END IF
END

Question 7
Correct

Mark 1.00 out of 1.00

45778
Which statement logic implements multiple-way selection?

Select one:
a. Sequential

b. Else if ladder

c. If-else

d. Simple if

Your answer is correct.


else if ladder statements are multiple-way branching statements. It decides the execution among several alternatives

The correct answer is: Else if ladder


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 6/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 8
Incorrect

Mark 0.00 out of 1.00

If there are 6 chocolates and you take away 4, how many do you have?

Select one:
a. 4

b. 2 

c. None

d. 6

Your answer is incorrect.


The chocolates which you took
The correct answer is: 4

45778

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 7/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 9
Correct

Mark 1.00 out of 1.00

Consider the pseudo-code snippet. What output do you think the snippet will produce if the sample input for number is 3?

BEGIN
DECLARE number

READ number

IF number>=0

IF number == 0

PRINT “Zero”

ELSE

PRINT “Three”

ENDIF

PRINT “No Value”

END
45778
Select one:
a.
Zero

No value

b.
Zero

45778
Three

No value

c. 
Three
No value

d.
Zero

Three

Your answer is correct. 45778


In first if condition, 3 is greater than or equal to 0, so execution progresses to the second if statement. The second if statement's test fails because 3 is
not equal to 0. Thus, the else clause attached to the second if statement is executed. So, “Three” is displayed. The final PRINT statement is completely
outside of any if statement, so it always gets executed, and thus “No value” is displayed

The correct answer is:


Three
No value


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 8/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 10
Correct

Mark 1.00 out of 1.00

A computer program must either use conditional statements or looping statements or sequential statements to solve a problem. All of
them must not appear in the same program. State true/ false.

Select one:
True

False 

Your answer is correct.

Program’s flow could have sequential statements, selection statements or Looping statements or combination of all
The correct answer is 'False'.

45778
Question 11
Correct

Mark 1.00 out of 1.00

______________must be used when a set of statements needs to be executed only if a condition is met.

Select one:
a.
Either selection or looping statements

b. Looping statements

c. 
45778
selection statements

Your answer is correct.


selection statements or conditional statements works based on conditions
The correct answer is:
selection statements

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 9/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 12
Incorrect

Mark 0.00 out of 1.00

What do you infer from this statement?

“Only if Alvin is happy, then he does not go to work.”

Select one:
a.
Alvin is not happy and he goes to work.

b. Alvin is happy and he does not go to work 

c. Alvin is happy and he goes to work.

d. Alvin is not happy and he does not go to work

Your answer is incorrect. 45778


The correct answer is:
Alvin is not happy and he goes to work.

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 10/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 13
Partially correct

Mark 0.78 out of 1.00

Arrange the pseudo-code logic for checking a number divisible by 5 or 11.

 BEGIN

 DECLARE number
READ number

 IF number%5==0

 THEN
PRINT “number divisible by 5”

 ELSE IF number%11==0

 THEN
45778
PRINT “number divisible by 11”

 END IF

 ELSE
PRINT ““number not divisible by 5 or 11”

 END

45778
Your answer is partially correct.
The correct order for these items is as follows:

1. BEGIN
2. DECLARE number
READ number
3. IF number%5==0
4. THEN
PRINT “number divisible by 5”
5. ELSE IF number%11==0
6. THEN
PRINT “number divisible by 11”
7. ELSE

45778
PRINT ““number not divisible by 5 or 11”
8. END IF
9. END


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 11/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 14
Incorrect

Mark 0.00 out of 1.00

Try some!!!

If a doctor gives you 3 pills and tells you to take one pill every half hour, how long would it take before all the pills had been taken?

Select one:
a.
1 hour

b. 2 hours 

c.
3 hours

d. 1 and half hour

45778
Your answer is incorrect.
1hour. one pill is taken at the beginning of an hour, second after half an hour, remaining at the end of the hour
The correct answer is:
1 hour

Question 15
Incorrect

Mark 0.00 out of 1.00

45778
When a single if-else logic is used, how many possible choices can be there?

Select one:
a. 0
b. 1 
c.
3

45778
d. 2

Your answer is incorrect.


Single if-else statement can have only two possible ways. Either if part, or else part
The correct answer is: 2


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 12/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 16
Correct

Mark 1.00 out of 1.00

By default, the flow of a program is________

Select one:
a. bottom to top

b. iterative

c. top to bottom

d. conditional

Your answer is correct.


The correct answer is: top to bottom

Question 17
Correct
45778
Mark 1.00 out of 1.00

Decision statements are also called as _______________.

a. Sequence logic

b. Program logic

c. Iteration logic

45778
d. Selection logic

Your answer is correct.

The correct answer is:


Selection logic

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 13/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 18
Correct

Mark 1.00 out of 1.00

From the option, find the correct pseudo-code to find the greatest of three numbers

Select one:
a. 
BEGIN

DECLARE variables a,b,c


IF a>b

IF a>c
PRINT “a”

ELSE
PRINT “c”

ELSE IF b>c

45778
PRINT “b”

ELSE
PRINT “c”

END

b.
BEGIN

DECLARE variables a, b, c
READ variables a, b, c
IF a<b

IF a<c
PRINT “a” 45778
ELSE
PRINT “c”

ELSE IF b<c
PRINT “b”

ELSE
PRINT “c”

END

c.
BEGIN 45778
DECLARE variables a,b,c
READ variables a,b,c

IF a>c
PRINT “a”

ELSE
PRINT “c”

ELSE IF b>c
PRINT “b”

ELSE
PRINT “c”

END 
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 14/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Your answer is correct.


Nested if Logic with proper indentation

The correct answer is: BEGIN


DECLARE variables a,b,c
IF a>b
IF a>c
PRINT “a”
ELSE
PRINT “c”
ELSE IF b>c
PRINT “b”
ELSE
PRINT “c”
END

Question 19

45778
Incorrect

Mark 0.00 out of 1.00

Which of the following is not a keyword used in a pseudo-code

Select one:
a. static 

b. End if

c. Start

d. Read

Your answer is incorrect.


45778
The correct answer is: Start

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 15/16
16/01/2024, 10:07 Check Your Understanding: Attempt review

Question 20
Correct

Mark 1.00 out of 1.00

READ age
IF age>18

THEN
PRINT “Eligible to vote”

ENDIF The given pseudo-code snippet is an example for_______

Select one:
a. 
Simple If logic

b.
Sequence Logic

c.
Else if ladder logic
45778
d. Nested if logic

Your answer is correct.


Simple if logic checks for a single condition and executes the statements
The correct answer is:
Simple If logic

Question 21
45778
Correct

Mark 1.00 out of 1.00

Manual execution of the steps in the algorithm is called as _____

Select one:
a. Simple Run
b. Execution
c. Dry run
d. compiling
45778
Your answer is correct.

The correct answer is: Dry run

◄ Pseudocode Using Selection Statements - Quiz

Jump to...

Crack the Puzzles ►


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917627&cmid=4018#question-917055-14 16/16
16/01/2024, 15:34 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Looping statements

Quiz review
Started on Tuesday, 16 January 2024, 3:10 PM
State Finished
Completed on Tuesday, 16 January 2024, 3:33 PM
Time taken 23 mins 25 secs
Marks 18.00/20.00
Grade 90.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Match the appropriate opening and closing blocks in looping statements.

WHILE END WHILE 

IF END IF 

BEGIN END 

FOR END FOR 

Your answer is correct.

45778
The correct answer is: WHILE → END WHILE, IF → END IF, BEGIN → END, FOR → END FOR

Question 2
Correct

Mark 1.00 out of 1.00

Which looping logic is exit controlled?

Select one:
a. While loop

45778
b. For loop
c. do-while loop

Your answer is correct. (Do-while loop logic executes the statements at least once, and finally checks for the condition to be evaluated)

The correct answer is: do-while loop


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 1/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

BEGIN

DECLARE variables i, factorial


SET factorial <-- 1

FOR i<--1 to 5 do

factorial <--factorial * i 

i <-- i+1
END FOR

PRINT factorial
END

Which of the following statement should be inserted to complete the above pseudo code for finding factorial of 5 numbers.

45778
Your answer is correct.
The logic for finding a factorial is factorial * index

The correct answer is:

BEGIN

DECLARE variables i, factorial

SET factorial <-- 1

45778
FOR i<--1 to 5 do
[ factorial <‑‑factorial * i ]

i <-- i+1

END FOR

PRINT factorial

END

Which of the following statement should be inserted to complete the above pseudo code for finding factorial of 5 numbers.

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 2/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 4
Incorrect

Mark 0.00 out of 1.00

Consider the output: “0, 2, 4, 6, 8 ,10 ,12, 16”

Which of the below given pseudo code snippet gives the above output?

Select one:
a.
BEGIN

DECLARE number, count, even

SET count <-- 8, number <-- 0, even <-- 0


WHILE number<count

PRINT even

SET even <-- even + 1

END WHILE 45778


Number <-- number+ 1

PRINT even
END

b.
BEGIN
DECLARE number, count, even

SET count <-- 8, number <-- 0, even <-- 0

WHILE number<count

PRINT even

SET even <-- even + 2


45778
Number <-- number+ 2

END WHILE

END

c.
BEGIN

DECLARE number, count, even


SET count <-- 8, number <-- 0, even <-- 0

WHILE number<count

PRINT even
45778
SET even <-- even + 2

number <-- number + 1

END WHILE

PRINT even

END

d. 
BEGIN

DECLARE number, count, even

SET count <-- 16, number <-- 0, even <-- 0

WHILE number<count

PRINT even

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 3/14
16/01/2024, 15:34 Check Your Understanding: Attempt review
SET even <-- even + 2

Number <-- number+ 1

END WHILE

PRINT even

END

Your answer is incorrect.


The correct answer is:
BEGIN
DECLARE number, count, even
SET count <-- 8, number <-- 0, even <-- 0
WHILE number<count
PRINT even
SET even <-- even + 2
number <-- number + 1
END WHILE

45778
PRINT even
END

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 4/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 5
Incorrect

Mark 0.00 out of 1.00

Predict the output of the given flowchart.

Select one:
a.
2 45778
2

b. 
1

c.
2

d.
45778
1

Your answer is incorrect. The answer is 1, 2. Print statement is executed first, and prints count as 1. Count is incremented to 1 and the condition will be
checked. When it becomes false, the final count value 2 gets printed

The correct answer is:


1

45778
2


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 5/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

Iteration/looping is a repetition of___________

Select one or more:


a. single statement
b. Block of statements
c. variables
d. operation

Your answer is correct. Looping block can have a single statement or block of statements
The correct answers are: single statement, Block of statements

Question 7
Correct

Mark 1.00 out of 1.00 45778


Do-while looping statement is almost same as______

Select one:
a. While loop
b. if-else
c. for loop
d. Nested if

Your answer is correct. 45778


The correct answer is: While loop

Question 8
Correct

Mark 1.00 out of 1.00

What is true about FOR LOOP?

Select one:
45778
a. For loop cannot be nested
b. For loop executes the statements at least once even if the condition is false
c. In for loop, the exact number of iterations is known
d. For loop executes the statement without checking the condition

Your answer is correct. In for loop, the exact number of iterations is known and it is entry controlled. For loop can be nested
The correct answer is: In for loop, the exact number of iterations is known


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 6/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 9
Correct

Mark 1.00 out of 1.00

Jack wants to book flight tickets in Feather-Airways’ online portal for his family of five. Passenger details like name, age, gender etc.
should be entered for each member. The same process of getting details continues for all the five members. The above scenario is a
good example for which looping statements?

Select one:
a. Do-while loop
b. While loop
c. For loop

Your answer is correct. When the exact number of iterations is known, For loop can be used
The correct answer is: For loop

Question 10
Correct
45778
Mark 1.00 out of 1.00

What will be the output for WHILE loop?

BEGIN

DECLARE number

SET number <-- 30

WHILE number>0

number <-- number-4 45778


END WHILE

PRINT number

END

Select one:
a. -2
b. 0
c. 2
d. 4
45778
Your answer is correct.
The correct answer is: -2


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 7/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 11
Correct

Mark 1.00 out of 1.00

What is the output for FOR-loop snippet?

FOR i <--1 to 15

PRINT i

i <-- i+3

END FOR

Select one:
a. 4 7 10 13
b. 1 4 7 10 13
c. 1 4 7 10 13 15 16
d. 4 7 10 13 16

45778
Your answer is correct. Value gets incremented by 3, until the number is less than 15
The correct answer is: 1 4 7 10 13

Question 12
Correct

Mark 1.00 out of 1.00

Which of the following symbols is inappropriate in building the flowchart pertaining to sequential flow of program?

45778
Select one:
a. oval
b. parallelogram
c. diamond
d. rectangle

Your answer is correct. In a sequential Flow of a program, Decision making symbol is irrelevant

The correct answer is: diamond

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 8/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 13
Correct

Mark 1.00 out of 1.00

The statement / statements within the loop must get executed at least once except for do-while statement. State True/False.

Select one:
True

False 

Your answer is correct. Looping statements except do-while are entry-controlled that is only if the condition is met it allows the block to
execute. Whereas do-while executes the statement at least once before checking the condition
The correct answer is 'False'.

Question 14
Correct
45778
Mark 1.00 out of 1.00

Which of the following statements are true with respect to looping statements?

Select one or more:


a. A loop should run infinite number of times
b. the condition under which the iterative process should get terminated must be given
c. initial condition must be applied before the loop begins to execute

45778
d. conditional statements are not allowed within a loop

Your answer is correct. Initial condition must be applied before the loop begins to execute. The iteration must terminate at some point of time. A looping
statement can be nested and can have decision making statements
The correct answers are: initial condition must be applied before the loop begins to execute, the condition under which the iterative process should get
terminated must be given

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 9/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 15
Correct

Mark 1.00 out of 1.00

Which of the following statements are true?

Select one or more:


a. 
The operand in an expression can be a variable or a constant.

b.
The operand in an expression must always be a variable.

c. The operand in an expression must always be a constant.

d. 
An operand is a mandatory element in an expression.

Your answer is correct. The operand in an expression can be a variable or a constant. Operator without operand is meaningless
The correct answers are:

45778
An operand is a mandatory element in an expression.,
The operand in an expression can be a variable or a constant.

Question 16
Correct

Mark 1.00 out of 1.00

Consider you have a Rubik cube with different colors in each face. To solve this cube, you will continue to rotate the sides until you reach
same colors in all faces. This is a real time example for which looping statements?

Select one:
a. For
b. While
45778
c. Nested-if
d. Do-while

Your answer is correct. In Rubik cube, you first check for the colours in all sides. If the colours are not the same, the cube is rotated until it attains same
colours in all faces
The correct answer is: While

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 10/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 17
Correct

Mark 1.00 out of 1.00

f m d i r a w l e p n t o h g

DOWN:

1) Step by step list of instructions

4) When you know the exact number of iterations, this loop is used

Across:

2)When a process/set of actions is to be repeated, these statements are used.

3) In looping, Each execution of a statement/block of statements is technically termed as______

5) This loop statement is also called as exit-controlled loop


1 4

2
45778
A 

L  O 
F 

O  P  I  N  G 

G  R 

O 

3 I  T  E  R  A  T  I  O  N 

I 

T 

5 D  O  W  H  I  L  E 

M 

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 11/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 18
Correct

Mark 1.00 out of 1.00

Identify the logic which suits the flowchart?

45778

Select one:
a. Do-while loop

b. nested loop

c. While loop

d. for loop
45778
Your answer is correct. While loop checks for the condition first. Only if it is true, it enters the block. The statements gets repeated until
the condition becomes false.
The correct answer is: While loop

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 12/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Question 19
Correct

Mark 1.00 out of 1.00

It's Halloween. You go from house to house, tricking or treating. You get 2 candies from each house that you go to. You must return
home once you collect 100 candies. Can you arrange the sequence for this loop activity.

1 BEGIN
2 SET candy count <- 0

3 END WHILE
4 DECLARE candy_count

5 WHILE candy_count<=100
6 candy count <- candy_count+2
7 END

a.
1423657

b.
1243657
45778
c. 1 4 2 5 6 3 7

d. 1 4 5 2 3 6 7

Your answer is correct.

The correct answer is:


1425637

45778
Question 20
Correct

Mark 1.00 out of 1.00

Looping statements are also called ____________

a. Program logic

b. Selection logic

c. Sequence logic
45778
d. Iteration logic

Your answer is correct.


The correct answer is:
Iteration logic

◄ Pseudocode using Loops - Quiz

Jump to...


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 13/14
16/01/2024, 15:34 Check Your Understanding: Attempt review

Crack the puzzles ►

45778

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=921946&cmid=4036#question-921374-5 14/14
16/01/2024, 17:29 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Arrays

Quiz review
Started on Tuesday, 16 January 2024, 5:09 PM
State Finished
Completed on Tuesday, 16 January 2024, 5:26 PM
Time taken 16 mins 29 secs
Marks 18.00/20.00
Grade 90.00 out of 100.00
Feedback Congratulations! You have scored more than 80%.

Question 1
Correct

Mark 1.00 out of 1.00

45778 45778
A mathematical quiz context happened in a school and the scores are stored in an array named quizmark. The coordinating person
wants to copy the quiz score into another array named copyquizmark. Which of these options will do that?

Select one:
a.
copyquizmark <- quizmark

b.
We cannot copy the values from one array to another.

c. 
FOR index <- 0 to n
copyquizmark[index] <- quizmark[index]
index <- index+1
END FOR

d. copyquizmark[n] <- quizmark[n]

Your answer is correct.

45778
Using for loop helps to copy the elements from one array to another array
The correct answer is:
FOR index <- 0 to n
copyquizmark[index] <- quizmark[index]
index <- index+1
END FOR


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 1/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Assume,

number[100] <- 99.


How many elements can be stored inside the array variable number?

Select one:
a. 100

b. 
The statement gives no clue about the number of elements that can be stored

c. 99

d.
Infinite number of elements

45778 45778
Your answer is correct.

From the given statement, it is predictable that number 99 is assigned to 101 th position of the array. But, there is no clue about the total
size of the array and the number of elements that can be stored
The correct answer is:
The statement gives no clue about the number of elements that can be stored

Question 3
Correct

Mark 1.00 out of 1.00

Map the scenario to its appropriate array type

Matrix multiplication 2D ARRAY 

To create a list of all prime numbers below 100 1D ARRAY 

Your answer is correct.


The correct answer is:
Map the scenario to its appropriate array type 45778
Matrix multiplication [2D ARRAY ]

To create a list of all prime numbers below 100 [1D ARRAY]


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 2/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 4
Incorrect

Mark 0.00 out of 1.00

Which of the following are False with respect to the manipulation of arrays?

Select one or more:


a. 
An array can store homogeneous data.

b.
An array can store heterogeneous data

c. Elements of array are stored in contiguous memory 

d.
It is possible to increase the size of the array

Your answer is incorrect. 45778 45778


An array can store homogeneous data. Elements of array are stored in contiguous locations and it is not possible to increase the array
size
The correct answers are:
It is possible to increase the size of the array ,
An array can store heterogeneous data

Question 5
Correct

Mark 1.00 out of 1.00

Negative elements can be placed inside an array. State true / false

Select one:
True 

False

Your answer is correct.

45778
Size of the array cannot be negative. But the elements stored inside an array can be negative
The correct answer is 'True'.


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 3/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

The names of all associates undergoing training are stored in an array named associate_name[50]. The 5th associates’ name is
retrieved as

Select one or more:


a. associate_name[6]

b. 
associate_name[4]

c.
associate_name[5]

d. 

45778
associate_name[3+1]

45778
Your answer is correct.

since array index starts from 0, the fifth element is accessed is accessed by array[4]. It is possible to perform arithmetic operation in an
array position
The correct answers are:
associate_name[4],
associate_name[3+1]

Question 7
Correct

Mark 1.00 out of 1.00

Information about ___________ need not be specified when declaring an array

Select one:
a. the elements to be stored in the array

b.
the data type of the array

45778
c.
the name of the array

d.
the index of the array

Your answer is correct.

It is not mandatory to specify the elements to be stored in the array when declaring an array
The correct answer is: the elements to be stored in the array


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 4/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 8
Correct

Mark 1.00 out of 1.00

It is not possible to do a search operation in an array that is not sorted. State True/False.

Select one:
True

False 

Your answer is correct

It is not mandatory to sort an array when searching an element randomly. It can be either sorted or unsorted
The correct answer is 'False'.

Question 9
Correct 45778 45778
Mark 1.00 out of 1.00

The operation of ordering the elements in the list is known as Sorting  .

Your answer is correct.

Sorting is the process of ordering the elements


The correct answer is:
The operation of ordering the elements in the list is known as [Sorting].

Question 10
Correct

Mark 1.00 out of 1.00

Random access is not possible in an array. State True/False

Select one:
True

45778
False 

Your answer is correct.

Elements in an array is stored sequentially and contiguously, and can be accessed in a random manner.
The correct answer is 'False'.


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 5/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 11
Correct

Mark 1.00 out of 1.00

Index  is used to locate an element in an array.

Your answer is correct.


The correct answer is:
[Index] is used to locate an element in an array.

Question 12
Correct

Mark 1.00 out of 1.00

45778
Assume you have an array named numbers of size 10.

Which of the assignment is valid?


45778
Select one or more:
a. numbers[0] <- 10

b. numbers[10] <- 11

c. 
numbers[9] <- 5

d.
numbers[11] <- 6

Your answer is correct.

array index starts from 0 to 9, for 10 elements. Assigning values to numbers[10],numbers[11] is not valid, since the index exceeds the
size of array resulting in unpredictable results
The correct answers are: numbers[0] <- 10, numbers[9] <- 5

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 6/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 13
Correct

Mark 1.00 out of 1.00

Which of the following statements is correct with respect to arrays?

Select one:
a.
Elements in an array are arranged in ascending order by default

b.
Elements in an array are arranged in descending order by default

c. Elements in an array are arranged contiguously.

Your answer is correct.

45778
Elements in an array are arranged in a contiguous manner and are of fixed size
The correct answer is: Elements in an array are arranged contiguously.
45778
Question 14
Correct

Mark 1.00 out of 1.00

Expression within [ ] should always resolve to a positive number 

Your answer is correct.

Array size or index value is given inside square braces and should be a positive integer value
The correct answer is:
Expression within [ ] should always resolve to a [positive number]

Question 15
Correct

Mark 1.00 out of 1.00

45778
Consider you buy a laptop. You want to store the details of that laptop such as price,

model_name,model_number, warranty_period into a single array named details[10]. Is ths possible?

Select one:
a. No

b. Yes

Your answer is correct.

No, It is not possible. An array can store data of same type. since model_name consists of letters, model_no consists of number etc, it is
not possible to the details into a single array
The correct answer is: No


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 7/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 16
Correct

Mark 1.00 out of 1.00

List of songs stored in your mobile phone is a good example for single-dimensional arrays 

Your answer is correct.

one-d array is enough to store the list of songs in mobile phones.


The correct answer is:
List of songs stored in your mobile phone is a good example for [single‑dimensional arrays]

Question 17
Correct

Mark 1.00 out of 1.00

45778 45778
Consider you want to compare the prices of redmi , sony, samsung phones in three online sites like amazon,flipkart,ebay.

Which array type is best suitable to do this comparision?

Select one:
a.
three-dimensional arrays

b.
one-dimensional array

c. two-dimensional arrays

Your answer is correct.

To compare 3 mobile phones in 3 different online sites, 2-d arrays can be used.

The correct answer is: two-dimensional arrays

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 8/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 18
Incorrect

Mark 0.00 out of 1.00

It is possible to traverse through an array from the first position to the last and not vice versa. State true or false.

Select one:
True 

False

Your answer is incorrect

an Array can be traversed from first to last and vice versa

The correct answer is 'False'.

45778 45778
Question 19
Correct

Mark 1.00 out of 1.00

An Array consists of rows and columns is also called as________

Select one:
a. Three dimensional array

b.
one-dimensional array

c. Two-dimensional array

Your answer is correct.

A matrix consists of rows and columns, also known as Two-dimensional arrays


The correct answer is: Two-dimensional array

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 9/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

Question 20
Correct

Mark 1.00 out of 1.00

Choose the correct Pseudo code to store names in an array and display a name.

a.
BEGIN

INPUT name

DECLARE name [20]

END
PRINT name

b.
BEGIN
INPUT name

45778
DECLARE name [20]

PRINT name

END
45778
c. 
BEGIN

DECLARE name [20]

INPUT name

PRINT name

END

d.
BEGIN

INPUT name

PRINT name

DECLARE name [20]

END

Your answer is correct.


The correct answer is:
45778
BEGIN

DECLARE name [20]

INPUT name

PRINT name
END

◄ Pseudocode using Arrays - Quiz

Jump to...

Pre-Quiz ►

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 10/11
16/01/2024, 17:29 Check Your Understanding: Attempt review

45778 45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923634&cmid=4054#question-923062-4 11/11
16/01/2024, 19:45 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Engineering Fundamentals

Quiz review
Started on Tuesday, 16 January 2024, 7:34 PM
State Finished
Completed on Tuesday, 16 January 2024, 7:45 PM
Time taken 10 mins 59 secs
Marks 7.60/8.00
Grade 95.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Which conforms that the software meets its technical specifications?

Select one:
a. 
Verification

b.
Validation

45778
c. Defect finding

d.
Design

Your answer is correct.

45778
Verification conforms that the software meets its technical specifications
The correct answer is:
Verification


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925734&cmid=4063 1/5
16/01/2024, 19:45 Check Your Understanding: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

The software is put into operation in the client’s environment. The client comes back to enhance the UI to attract more customers. This
phase is called as ­_______________

Select one:
a.
Development

b. 
Maintenance

Your answer is correct.


45778
Any change that is made to the software after it is deployed is known as maintenance
The correct answer is:
Maintenance

Question 3
Correct

Mark 1.00 out of 1.00

45778
Match the appropriate usage of the SDLC process models, based on the nature of requirements

When the requirements are unclear Use the Throw away prototype 

When the requirements are unstable Use the Evolutionary prototype 

Your answer is correct.

When the requirements are unclear use the Throw away prototype and when the requirements are unstable use the evolutionary
prototype
The correct answer is: When the requirements are unclear → Use the Throw away prototype, When the requirements are unstable → Use the Evolutionary

45778
prototype


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925734&cmid=4063 2/5
16/01/2024, 19:45 Check Your Understanding: Attempt review

Question 4
Correct

Mark 1.00 out of 1.00

Which of the below is one of the phase of the prototype model?

a. Quick design

b. Detailed Coding

c. Detailed HLD phase

d. Extensive testing

Your answer is correct.

The correct answer is:


Quick design

Question 5
Partially correct
45778
Mark 0.60 out of 1.00

Match the phases of the Rapid Application Development model against their objectives

Process modeling
Data objects are converted to achieve the business objective 

45778
Application generation
The information flow is identified between various modules 

Data modeling Data objects are converted to achieve the business objective 

Testing and turnover New components along with all the interfaces are tested 

Business modeling
The information flow is identified between various modules 

Your answer is partially correct.

You have correctly selected 3.


45778
Business modeling - information flow between various modules, Data modeling - define data objects, Process modeling - CRUD of data
objects are determined, Application generation - convert process models into the actual system,Testing and turnover - new
components are tested

The correct answer is:


Process modeling → Data objects are converted to achieve the business objective, Application generation → Automated tools are used to convert process
models into the actual system,
Data modeling → Information gathered from business modeling is used to define data objects, Testing and turnover → New components along with all the
interfaces are tested,
Business modeling → The information flow is identified between various modules


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925734&cmid=4063 3/5
16/01/2024, 19:45 Check Your Understanding: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

High-risk or major functions are addressed in the first cycles there by delivering an operational product. Which of the SDLC process
models achieves this?

Select one:
a. Waterfall model

b. Incremental model

c. RAD model

d. Spiral Model

Your answer is correct.

High-risk or major functions are addressed in the first increment cycles and each release delivers an operational product

45778
The correct answer is: Incremental model

Question 7
Correct

Mark 1.00 out of 1.00

Beta technologies has undertaken a collision avoidance system software to be implemented for airports. Additional safety measures
have to be automated by warning pilots when another aircraft gets closer, otherwise impacts are huge. Which of the following SDLC
process models best suits the requirement?

45778
Select one:
a. Waterfall model

b. V model

c. Spiral model

d. Evolutionary prototyping model

Your answer is correct.

45778
Spiral model is used when risks perceived is high
The correct answer is: Spiral model


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925734&cmid=4063 4/5
16/01/2024, 19:45 Check Your Understanding: Attempt review

Question 8
Correct

Mark 1.00 out of 1.00

The student mark processing system software has been developed and deployed at the St. Peters university. The system shows the
grade as 0 for all the students rather than the actual grade. Which phase below was not done properly during the SDLC?

Select one:
a. Software Maintenance

b.
Software Analysis

c.
Software Design

d.
Software Testing
45778

Your answer is correct.

Testing is done on the software product developed to find defects

The correct answer is:


Software Testing 45778
◄ Post-Quiz

Jump to...

Run-Through ►

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925734&cmid=4063 5/5
17/01/2024, 11:28 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Phases of Software Engineering

Quiz review
Started on Wednesday, 17 January 2024, 11:20 AM
State Finished
Completed on Wednesday, 17 January 2024, 11:28 AM
Time taken 7 mins 26 secs
Marks 5.33/6.00
Grade 88.89 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Which of the following options are the steps involved in Requirements Analysis?

Select one or more:


a. Requirements Elicitation
b. Requirements Specification

c. 
Requirements Gathering

d. Analysis of the gathered requirements

Your answer is correct.


45778
Requirements Gathering phase is followed by the Analysis of the gathered requirements

The correct answers are:

Requirements Gathering, Analysis of the gathered requirements

Question 2
Correct

Mark 1.00 out of 1.00

45778
From the below options, identify the role of the system analyst.

a. Creates HLD document

b. Creates SRS

c. Writes pseudo code for the given module

d. Creates high level test cases

Your answer is correct.


The correct answer is:
Creates SRS


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933747&cmid=4073 1/4
17/01/2024, 11:28 Check Your Understanding: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

Identify the correct statements from the below options.

a. Analysis or High level design or Low level design can be performed in any order

b. High level design, Low level design followed by Analysis is performed.

c. Analysis is performed followed by low level design and then high level design

d. Analysis is performed followed by High level design and then Low level design

Your answer is correct.

The correct answer is:


Analysis is performed followed by High level design and then Low level design

Question 4
Correct
45778
Mark 1.00 out of 1.00

Match the correct objectives of each phase involved in Requirements Engineering

Requirements Analysis

Analyzing the customer and the user/stakeholder to arrive at a definition of software requirements

45778
Requirements Documents all the requirements properly
Specification 

Requirements Elicitation
Gathering requirements from the users, customers and other stake holders

Your answer is correct.


45778
1. Requirements Elicitation - Gathering requirements from the users and customers
2. Requirements Analysis - Analyzing the customer and the user/stakeholder to arrive at a definition of software requirements
3. Requirements Specification - Documents all the requirements properly in SRS

The correct answer is:

Requirements Analysis → Analyzing the customer and the user/stakeholder to arrive at a definition of software requirements,
Requirements Specification → Documents all the requirements properly,

Requirements Elicitation → Gathering requirements from the users, customers and other stake holders


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933747&cmid=4073 2/4
17/01/2024, 11:28 Check Your Understanding: Attempt review

Question 5
Correct

Mark 1.00 out of 1.00

Identify the type of design that helps in transforming the data model created during requirements analysis phase into the data structures
that will be used to implement the software

Select one:
a. Interface design

b. Data Design

c. Architectural design

d. GUI Design

Your answer is correct.

45778
Data Design helps in creating the data architecture for a system to represent the data components

The correct answer is: Data Design

Question 6
Partially correct

Mark 0.33 out of 1.00

Match the objectives of the types of design involved

Architecture design
45778
Focuses on writing a detailed algorithm 

Interface design Describes how the software communicates with itself, and with the users interacting with the software 

Low Level Design Defines the modules of the system and the functions that each module perform 

Your answer is partially correct.

45778
You have correctly selected 1.

Architecture design defines the modules of the system and the functions that each module perform
The interface design describes how the software communicates with itself, and with the users interacting with the software

Low Level Design focuses on writing a detailed algorithm

The correct answer is:

Architecture design → Defines the modules of the system and the functions that each module perform,

Interface design → Describes how the software communicates with itself, and with the users interacting with the software, Low Level Design → Focuses
on writing a detailed algorithm


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933747&cmid=4073 3/4
17/01/2024, 11:28 Check Your Understanding: Attempt review

◄ Post-Quiz

Jump to...

Run-Through ►

45778

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933747&cmid=4073 4/4
17/01/2024, 14:37 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Testing

Quiz review
Started on Wednesday, 17 January 2024, 2:31 PM
State Finished
Completed on Wednesday, 17 January 2024, 2:37 PM
Time taken 6 mins 11 secs
Marks 2.53/8.00
Grade 31.67 out of 100.00
Feedback Oops!! You have scored below 80%.. So kindly make necessary preparations and attempt

Question 1
Incorrect

Mark 0.00 out of 1.00

45778
Identify this technique of dynamic testing where, For a range of input, three values are chosen, One value above the range, One value
below the range, and One value within the range

Select one:
a. Cause Effect Graphing

b. Equivalence partitioning

c. Cause Effect Analysis

d. Error Guessing

e. Boundary Value Analysis 

Your answer is incorrect.


45778
Equivalence class partitioning divides the input domain into classes of data from which test cases can be derived
The correct answer is: Equivalence partitioning

Question 2
Incorrect

Mark 0.00 out of 1.00

45778
What is the difference between the actual output of a software and the correct output?

Select one:
a. Bug 

b. Fault

c. Defect

d. Error

Your answer is incorrect.

Error – is the difference between the actual output of a software and the correct output
The correct answer is: Error

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936689&cmid=4082 1/5
17/01/2024, 14:37 Check Your Understanding: Attempt review

Question 3
Partially correct

Mark 0.33 out of 1.00

Match the objectives of the phases of Software Testing Life Cycle

Test Design
Resource allocation, creation of test environment, test schedule and test functionality 

Test Plan

Test scenarios, test cases, test data, and test scripts are prepared 

Test Execution Executing test scripts and Finding bugs 

45778
Your answer is partially correct.
You have correctly selected 1.

The test plan describes how tests will be performed and involves Resource allocation, creation of test environment, test schedule and
test functionality
In Test Design, the Test scenarios, test cases, test data, and test scripts are prepared

Test Execution involves Executing test scripts and Finding bugs

The correct answer is: Test Design

→ Test scenarios, test cases, test data, and test scripts are prepared,

45778
Test Plan → Resource allocation, creation of test environment, test schedule and test functionality, Test Execution → Executing test scripts and Finding
bugs

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936689&cmid=4082 2/5
17/01/2024, 14:37 Check Your Understanding: Attempt review

Question 4
Partially correct

Mark 0.20 out of 1.00

Match the roles involved in Static Testing

Author
Writer of the ‘document under review’ 

Scribe Leads the review process 

Reader
Records each defect found 

Moderator Inspecting the document 

Inspector Presents the document 

Your answer is partially correct.


You have correctly selected 1. 45778
Author is the writer of the ‘document under review’, Moderator is the one who leads the review process, Reader is the one who presents
the document, Recorder/Scribe records each defect found, and Inspector is responsible for inspecting the document

The correct answer is:


Author → Writer of the ‘document under review’, Scribe → Records each defect found, Reader → Presents the document, Moderator → Leads the review
process, Inspector → Inspecting the document

Question 5

45778
Correct

Mark 1.00 out of 1.00

What is the type of testing in which the tester will know about the input and the expected output details based on the specification
document only but no knowledge on implementation?

Select one:
a. Regression Testing

b. Integration Testing

c. White Box Testing

d. Usability Testing

e. Black Box Testing


45778
Your answer is correct.

In Black box testing functionality of the software is tested without the knowledge of the internal implementation of the code
The correct answer is: Black Box Testing

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936689&cmid=4082 3/5
17/01/2024, 14:37 Check Your Understanding: Attempt review

Question 6
Incorrect

Mark 0.00 out of 1.00

Identify the correct phases of software testing life cycle.

a. Requirements Analysis,Test Preparation,Test Case development,Test Environment Set up,Test Execution,Test Cycle closure

b. Requirements Analysis,Test Case development,Test Preparation,Test Environment Set up,Test Execution,Test Cycle closure

c. Requirements Analysis,Test Preparation,Test Case development,Test Execution,Test Environment Set up,Test Cycle closure 

d. Requirements Analysis,Test Preparation,Test Case development,Test Environment Set up,Test Cycle closure,Test Execution

Your answer is incorrect.

The correct answer is:


Requirements Analysis,Test Preparation,Test Case development,Test Environment Set up,Test Execution,Test Cycle closure

Question 7
Correct
45778
Mark 1.00 out of 1.00

Match the objectives against the techniques of generating test cases in black box testing

Cause Effect Graphing The causes and effects represent the nodes 

State Transition Diagram Involves actions as one of its components 

Cause Effect Analysis It is suitable for applications in which combinations of input conditions are few 

45778
Your answer is correct.

Cause Effect Analysis - It is suitable for applications in which combinations of input conditions are few

Cause Effect Graphing - The causes and effects represent the nodes

State Transition Diagram - involves actions as one of its components


The correct answer is: Cause Effect Graphing → The causes and effects represent the nodes, State Transition Diagram → Involves actions as one of its
components,
Cause Effect Analysis → It is suitable for applications in which combinations of input conditions are few

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936689&cmid=4082 4/5
17/01/2024, 14:37 Check Your Understanding: Attempt review

Question 8
Incorrect

Mark 0.00 out of 1.00

Which all of the following options would basis path testing perform?

Select one or more:


a. 
Condition or Branch Coverage

b. Test Case Coverage 

c. 
Statement Coverage

d. Loop Coverage

Your answer is incorrect.


45778
Every statement(Statement coverage)

Every predicate (condition) in the code(branch coverage)

Loops (loop coverage)

The correct answers are:


Statement Coverage,
Condition or Branch Coverage, Loop Coverage

◄ Post-Quiz
45778
Jump to...

Run-Through ►

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936689&cmid=4082 5/5
17/01/2024, 19:33 Check Your Understanding: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Configuration Management

Quiz review
Started on Wednesday, 17 January 2024, 7:24 PM
State Finished
Completed on Wednesday, 17 January 2024, 7:33 PM
Time taken 8 mins 44 secs
Marks 1.00/5.00
Grade 20.00 out of 100.00
Feedback Oops!! You have scored below 80%.. So kindly make necessary preparations and attempt

Question 1
Incorrect

Mark 0.00 out of 1.00

45778
Which of the following options are valid for the relationship between the configuration objects?

Select one or more:


a. A double-headed straight arrow indicates an interrelationship

b. 
A curved arrow indicates a compositional relation

c. A double-headed straight arrow indicates compositional relation 

d. A curved arrow indicates an interrelationship 

Your answer is incorrect. 45778


A curved arrow indicates a compositional relation.
A double-headed straight arrow indicates an interrelationship.

The correct answers are: A curved arrow indicates a compositional relation, A double-headed straight arrow indicates an interrelationship

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=940235&cmid=4093 1/3
17/01/2024, 19:33 Check Your Understanding: Attempt review

Question 2
Incorrect

Mark 0.00 out of 1.00

Match the following facts about Version Management

When a member of the team wants his code to work in isolation


Automatic backup 

Lock a file
Create branches 

If a file is changed and we want to roll back to the previous version


Serialized changes to file. 

Your answer is incorrect.


45778
If a file is changed and we want to roll back to the previous version - Automatic backup.
Lock a file - Serialized changes to file.

When a member of the team wants his code to work in isolation - Create branches.

The correct answer is: When a member of the team wants his code to work in isolation → Create branches, Lock a file → Serialized changes to file., If a
file is changed and we want to roll back to the previous version → Automatic backup

Question 3
Incorrect

Mark 0.00 out of 1.00

45778
Change Management Configuration audit Version Control Configuration Management

Configuration Manageme [Configuration audit] is responsible for reviewing the items against various specifications for assessing its
quality and correctness

45778
Your answer is incorrect.

Configuration audit is responsible for reviewing the items against various specifications for assessing its quality and correctness


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=940235&cmid=4093 2/3
17/01/2024, 19:33 Check Your Understanding: Attempt review

Question 4
Correct

Mark 1.00 out of 1.00

Version Control allows users to lock files so they can only be edited by one person at a time and track changes to files

Select one:
True 

False

Version control is a mechanism used to manage multiple versions of files

The correct answer is 'True'.

Question 5

45778
Incorrect

Mark 0.00 out of 1.00

Choose the missing steps involved in the Change Control Process in the correct order:

1. Identify and submit change request


2. ____________

3. Plan the change

4. Implement and test the change

5. Verify implementation of change

45778
6. Close change request

a. Analyze the cost of the proposed change 

b. Evaluate impacts of change request

c. Collect impacts of change request

d. Review stakeholder feedback

Your answer is incorrect.


The correct answer is:
Evaluate impacts of change request 45778
◄ Post-Quiz

Jump to...

Run-Through ►


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=940235&cmid=4093 3/3
16/01/2024, 11:12 Crack the Puzzles: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Looping statements

Quiz review
Started on Tuesday, 16 January 2024, 11:04 AM
State Finished
Completed on Tuesday, 16 January 2024, 11:12 AM
Time taken 7 mins 56 secs
Marks 3.00/3.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

Match the following: 45778


I am an odd number; take away an alphabet and I become even. What am I? 7 

Multiply me by myself and you will get the equivalent of adding me to myself.what am I? 2 

I am a number with a couple of friends, quarter a dozen, and you'll find me again. What am I? 3 

Your answer is correct.


The correct answer is: I am an odd number; take away an alphabet and I become even. What am I? → 7, Multiply me by myself and you will get the
equivalent of adding me to myself.what am I? → 2, I am a number with a couple of friends, quarter a dozen, and you'll find me again. What am I? → 3

45778
Question 2
Correct

Mark 1.00 out of 1.00

Find out the logic of series and complete.

9 = 4, 21 = 9, 22 = 9, 24 = 10, 8 = 5, 7 = 5, 99 = 10, 100 = 7, 16 = ?

Select one:
a. 9

b. 6

c. 7
45778
Your answer is correct.
Number of letters in the spelling of 16.
The correct answer is: 7

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=918435&cmid=4019 1/2
16/01/2024, 11:12 Crack the Puzzles: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

Take 1 away from me and you get a prime number; add 1 to me and you get twice that prime number.

Select one:
a. 3

b. 5

c. 6

Your answer is correct.


3-1=2
3+1=4
2 square is 4

The correct answer is: 3

45778
◄ Check Your Understanding

Jump to...

Looping statements ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=918435&cmid=4019 2/2
16/01/2024, 16:26 Crack the puzzles: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Arrays

Quiz review
Started on Tuesday, 16 January 2024, 4:19 PM
State Finished
Completed on Tuesday, 16 January 2024, 4:26 PM
Time taken 6 mins 28 secs
Marks 3.00/3.00
Grade 100.00 out of 100.00
Feedback Congratulations! You have scored more than 80%.

Question 1
Correct

Mark 1.00 out of 1.00

45778
A farmer has 17 sheep and all but nine die. How many are left?

Select one:
a. 17

b. 8

c. 9

45778
Your answer is correct.

The correct answer is: 9

Question 2
Correct

Mark 1.00 out of 1.00

In a year, there are 12 months. Seven months have 31 days. How many months have 28 days?

45778
Select one:
a. 5

b. 12

c. 6

Your answer is correct.

The correct answer is: 12

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=922935&cmid=4037 1/2
16/01/2024, 16:26 Crack the puzzles: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

What is the next letter in the following sequence? J,F, M, A, M, J, J, A, __.

Select one:
a. S

b. N

c. O

Your answer is correct.


S. The sequence is first letter of the months of the year. September is the next in the sequence.

The correct answer is: S


45778
◄ Check Your Understanding

Jump to...

Arrays ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=922935&cmid=4037 2/2
16/01/2024, 19:30 Post-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Engineering Fundamentals

Quiz review
Started on Tuesday, 16 January 2024, 7:22 PM
State Finished
Completed on Tuesday, 16 January 2024, 7:30 PM
Time taken 8 mins 7 secs
Marks 6.00/6.00
Grade 100.00 out of 100.00
Feedback Congratulations!!You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Match the correct E,T,V,X (Entry,Task,Verify,Exit) criteria for the below scenario

Reviewed design document Exit 

Input containing the reviewed SRS Entry 

Review of the artifacts Verfication 

Developing HLD and LLD Artifacts Task 

Your answer is correct.

45778
The correct answer is: Reviewed design document → Exit, Input containing the reviewed SRS → Entry, Review of the artifacts → Verfication, Developing HLD
and LLD Artifacts → Task

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925559&cmid=4062 1/4
16/01/2024, 19:30 Post-Quiz: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Choose the option that accurately represents the sequential order of phases in the Waterfall model.

a.
Requirement Gathering, Analysis, Design, Testing, Implementation, Deployment, Maintenance

b. 
Requirement Gathering, Analysis, Design, Implementation, Testing, Deployment, Maintenance

c.
Analysis, Requirement Gathering, Design, Implementation, Testing, Deployment, Maintenance

45778
d.
Requirement Gathering, Analysis, Design, Implementation, Testing, Maintenance, Deployment

Your answer is correct.


The correct answer is:

Requirement Gathering, Analysis, Design, Implementation, Testing, Deployment, Maintenance

Question 3

45778
Correct

Mark 1.00 out of 1.00

Testing performed by the user to ensure that the system meets the agreed upon quality attributes and the specification is called as….

Select one:
a. Integration testing

b. Unit testing

c. Acceptance testing

d. System testing

Your answer is correct.


45778
The correct answer is: Acceptance testing

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925559&cmid=4062 2/4
16/01/2024, 19:30 Post-Quiz: Attempt review

Question 4
Correct

Mark 1.00 out of 1.00

Scenario: LIC has manually carried out their process of premium collection procedure for the past 45 years. Now, they have employed
the services of another company to automate the above.

Question: Which of the following models would you suggest to the outsource company?

Select one:
a. Evolutionary prototyping

b. Throwaway prototyping

c. Spiral model

d. Waterfall model

Your answer is correct.

45778
The correct answer is: Waterfall model

Question 5
Correct

Mark 1.00 out of 1.00

Consider that you have to develop a flight control system. The system is simulated as such that the original system is working. There are
many potential hazards with such a system. What model would you suggest to develop the system?

Select one:

45778
a. Spiral model

b. Evolutionary prototyping

c. Waterfall model

d. Throwaway prototyping

Your answer is correct.

The correct answer is: Spiral model

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925559&cmid=4062 3/4
16/01/2024, 19:30 Post-Quiz: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

Which model emphasizes Validation and Verification at each level of stage containment?

Select one:
a. RAD

b. Throwaway prototyping

c. V-Model

d. Spiral model

Your answer is correct.

The correct answer is: V-Model

45778
◄ Software Development Process Models II

Jump to...

Check Your Understanding ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=925559&cmid=4062 4/4
17/01/2024, 11:20 Post-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Phases of Software Engineering

Quiz review
Started on Wednesday, 17 January 2024, 11:11 AM
State Finished
Completed on Wednesday, 17 January 2024, 11:20 AM
Time taken 8 mins 47 secs
Marks 6.00/6.00
Grade 100.00 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Which of the following are available in SRS Document?

Select one or more:


a. Non Functional Requirements

b. Functional Requirements

c. Design

d. Constraints

Your answer is correct.

45778
The correct answers are: Functional Requirements, Non Functional Requirements, Constraints

Question 2
Correct

Mark 1.00 out of 1.00

Identify the possible entities from the given option

Select one or more:


a. Customer

b. Sale

c. SalesID
45778
d. customerAge

Your answer is correct.

The correct answers are: Customer, Sale

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933621&cmid=4072 1/3
17/01/2024, 11:20 Post-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

What kind of non functional requirement best suit the below scenario: Whenever the new offers are published in the online shopping
site, an sms has to be sent to all the registered customers within 10 minutes of publishing

Select one:
a. Usability Requirement

b. Performance Requirement

c. Portability Requirement

d. Security Requirment

Your answer is correct.

The correct answer is: Performance Requirement

Question 4
45778
Correct

Mark 1.00 out of 1.00

Choose the correct type of testing for the given Scenario

Testing to check if the card is swiped for more than three times with wrong pin, the card has to be Security Testing
blocked

Testing to check if 1000000 users accessing website at the same point of time Load Testing

45778
Testing to check if the report is generated within 5 sec on click of the button as agreed in the SRS

Performance Testing

Testing to test the GUI components in the screen Usability Testing


Your answer is correct.

Testing that ensures software systems and applications are free from any vulnerabilities, or risks - Security Testing

Determining how the application behaves when multiple users access it simultaneously - Load Testing

45778
Testing to determine user's ease to use the application, and its flexibility - Usability Testing

Determining the responsiveness and stability of the system - Performance Testing


The correct answer is: Testing to check if the card is swiped for more than three times with wrong pin, the card has to be blocked → Security Testing,
Testing to check if 1000000 users accessing website at the same point of time → Load Testing, Testing to check if the report is generated within 5 sec on
click of the button as agreed in the SRS → Performance Testing, Testing to test the GUI components in the screen → Usability Testing

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933621&cmid=4072 2/3
17/01/2024, 11:20 Post-Quiz: Attempt review

Question 5
Correct

Mark 1.00 out of 1.00

Whenever a new product is arrived, the stock needs to be updated. This requirement is an example for non functional requirement. State
true or False

Select one:
a. FALSE

b. TRUE

Your answer is correct.


The correct answer is: FALSE

Question 6

45778
Correct

Mark 1.00 out of 1.00

Consider the below scenario. A team has many players and the player belongs to one team. Identify the cardinality between player and
team

Select one:
a. 1:1

b. M:M

c. M:1

45778
d. 1:M

Your answer is correct.

The correct answer is: M:1

◄ Software Design and Coding

Jump to...

45778
Check Your Understanding ►

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=933621&cmid=4072 3/3
17/01/2024, 14:30 Post-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Testing

Quiz review
Started on Wednesday, 17 January 2024, 2:16 PM
State Finished
Completed on Wednesday, 17 January 2024, 2:30 PM
Time taken 13 mins 54 secs
Marks 7.00/7.00
Grade 100.00 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
Boundary value analysis can only be used during white-box testing. State if True or False.

Select one:
a. FALSE

b. TRUE

Your answer is correct.

The correct answer is: FALSE

Question 2
Correct
45778
Mark 1.00 out of 1.00

After implementation of Library management system, the tester identified that certain logic are redundantly rewritten by the developers,
and the coding standards are violated in few modules. What type of testing is carried out to identify these errors?

Select one:
a. error guessing

b. dynamic testing

c. Static Testing

d. debugging
45778
Your answer is correct.

Static Testing is a software testing method where the code of the software and the work products, that is, the associated documents are
observed and tested manually to find errors
The correct answer is: Static Testing

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936488&cmid=4081 1/4
17/01/2024, 14:30 Post-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

Tester is trying to test whether the values in the drop down are listed properly.

What type of testing the tester performs in this scenario?

Select one:
a. Acceptance Testing

b. White box Testing

c. Regression Testing

d. Black box testing

Your answer is correct.

In Black box testing functionality of the software is tested and not the internal implementation of the code

45778
The correct answer is: Black box testing

Question 4
Correct

Mark 1.00 out of 1.00

The testing technique that deals with the internal logic and structure of the code is called ________.

Select one:
a. WhiteBox Testing

b. Logical Testing

c. Pure Box Testing


45778
Your answer is correct.
The correct answer is: WhiteBox Testing

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936488&cmid=4081 2/4
17/01/2024, 14:30 Post-Quiz: Attempt review

Question 5
Correct

Mark 1.00 out of 1.00

Determine the cyclomatic complexity for the following code:

Accept year

if(year mod 4=0 and year mod 100!=0) or(year mod 400 =0)
print year is leap

else

print year is not leap

end if.

Select one:
a. 6

b. 4

45778
c. 5

d. 3

Your answer is correct.

The cyclomatic complexity for the given code is 4


The correct answer is: 4

Question 6
Correct

45778
Mark 1.00 out of 1.00

In the online shopping portal, for customer registration the password field can accept only characters in the range of 5 to 25. Derive test
cases using Boundary value analysis

Select one:
a. 5,25,4,26

b. 5,25,26,3

c. 6,24,10,25

d. 5,25,6,24

Your answer is correct.


45778
The correct answer is: 5,25,4,26

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936488&cmid=4081 3/4
17/01/2024, 14:30 Post-Quiz: Attempt review

Question 7
Correct

Mark 1.00 out of 1.00

Walk through is performed by the trained moderator, whereas the Inspection is usually conducted by the author itself to record defects and deviations

Select one:
True

False 

Walk through is conducted by the author itself and the Inspection is led by a trained moderator
The correct answer is 'False'.

◄ Dynamic testing

Jump to...
45778 Check Your Understanding ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936488&cmid=4081 4/4
17/01/2024, 15:28 Post-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Configuration Management

Quiz review
Started on Wednesday, 17 January 2024, 3:22 PM
State Finished
Completed on Wednesday, 17 January 2024, 3:27 PM
Time taken 5 mins 12 secs
Marks 5.50/8.00
Grade 68.75 out of 100.00
Feedback Oops!! You have scored below 80%.. So kindly make the necessary preparations and reattempt

Question 1
Correct

Mark 1.00 out of 1.00

45778
Which of the following describes the change history of an object?

Select one:
a. Review Graph
b. Evolution graph
c. Baseline
d. Check-out

Evolution Graph describes the change history of an object


The correct answer is: Evolution graph

Question 2
45778
Partially correct

Mark 0.50 out of 1.00

Match the correct option

Process that ensures that changes made are recorded and controlled Change Request Form 

The standard document where the requester fills the change in the change management process Change Management 

45778
Process that ensures different versions of the project is managed Configuration Management 

Who authenticates that the change proposed is valid Change Control Board 

Your answer is partially correct.

You have correctly selected 2.


The document in which requester fills the change in the change management process - Change Request Form

Who authenticates that the change proposed is valid - Change Control Board

Process that ensures that changes made are recorded and controlled - Change Management
Process that ensures different versions of the project is managed - Configuration Management
The correct answer is: Process that ensures that changes made are recorded and controlled → Change Management, The standard document where the
requester fills the change in the change management process → Change Request Form, Process that ensures different versions of the project is managed
→ Configuration Management, Who authenticates that the change proposed is valid → Change Control Board

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=937291&cmid=4092 1/3
17/01/2024, 15:28 Post-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

Version Management allows parallel concurrent development. State True or False.

Select one:
a. True
b. False

The correct answer is: True

Question 4
Incorrect

Mark 0.00 out of 1.00

45778
_________ is a committee that makes decisions regarding whether or not proposed changes to a software project can be incorporated.

Select one:
a. Decision Committee 
b. Modify Control Board
c. Updation Control Board
d. Change Control Board

The correct answer is: Change Control Board

Question 5
Incorrect
45778
Mark 0.00 out of 1.00

State true or false. Automated tools are available in the market, for managing change and versioning the software

Select one:
a. FALSE 

b. TRUE

Your answer is incorrect.


The correct answer is: TRUE
45778
Question 6
Correct

Mark 1.00 out of 1.00

Preventive Perfective Adaptive Corrective

John bought a new Laptop with a high end configuration. To protect his laptop and the applications installed he installed a antivirus
software.This is an example for Preventive  Maintenance

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=937291&cmid=4092 2/3
17/01/2024, 15:28 Post-Quiz: Attempt review

Question 7
Correct

Mark 1.00 out of 1.00

baseline version artifact SRS

The entry door of the Server room inside the company can be considered as equivalent to baseline  concept in configuration
management

Baseline is a Specification or product that has been formally reviewed and agreed upon, that thereafter serves as the basis for further
development

Question 8
Correct

Mark 1.00 out of 1.00

45778
From the options identify the features that are part of the software configuration management

Select one or more:


a. Concurrency control

b. Version management

c. Support management

d. Synchronisation control

Your answer is correct. 45778


The correct answers are: Version management, Concurrency control, Synchronisation control

◄ Software Configuration Management

Jump to...

Check Your Understanding ►

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=937291&cmid=4092 3/3
16/01/2024, 18:00 Pre-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Engineering Fundamentals

Quiz review
Started on Tuesday, 16 January 2024, 5:54 PM
State Finished
Completed on Tuesday, 16 January 2024, 5:57 PM
Time taken 2 mins 58 secs
Marks 6.00/6.00
Grade 100.00 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
ABC company comes to the Allen Software Company with various requirement. The client wants the functionality to view all the employee profile, view
salary information of the employee and view the leave details.Once each functionality is completed the module will be delivered to the client. Which would
be the right model for this scenario

Select one:
a. Incremental model

b. Throwaway prototyping model

c. Scrum

d. Spiral model

Your answer is correct.


The correct answer is: Incremental model

Question 2
Correct

Mark 1.00 out of 1.00

A client wants to develop a Web application for the new Super market store. The client want to have lot of UI components and

45778
customers will have lot of interactions with the UI. What model is best suited

Select one:
a. Waterfall model
45778
b. Prototype

c. Spiral

Your answer is correct.


The correct answer is: Prototype


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=924259&cmid=4055 1/3
16/01/2024, 18:00 Pre-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

________ involves tranformation of user needs into an effective software solution.

Select one:
a. Software design process

b. Software Analysis

c. Software Testing

d. Software development process

Your answer is correct.

The correct answer is: Software development process

Question 4
Correct
45778
Mark 1.00 out of 1.00

Spiral life cycle model is not suitable for products that are vulnerable to large number of risks. State if True or False.

Select one:
a. FALSE

b. TRUE

Your answer is correct.


The correct answer is: FALSE

Question 5
Correct

Mark 1.00 out of 1.00

45778
When there is a difference between the output what is expected and the actual one is termed as……

45778
Select one:
a. Specification

b. Validation

c. Defect

d. Verification

Your answer is correct.

The correct answer is: Defect


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=924259&cmid=4055 2/3
16/01/2024, 18:00 Pre-Quiz: Attempt review

Question 6
Correct

Mark 1.00 out of 1.00

XYZ Finance Co. has, at present, started its operations in India. Based on the first six months performance, it has plans for expansion
across five countries. They want to automate their operations at this stage. What is the process model that the developer should choose
to adopt?

Select one:
a. Spiral model

b. Incremental model

c. Waterfall model

d. Evolutionary prototyping model

Your answer is correct.

45778
The correct answer is: Evolutionary prototyping model

◄ Check Your Understanding

Jump to...

Software Engineering - Video ►

45778
45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=924259&cmid=4055 3/3
16/01/2024, 20:15 Pre-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Phases of Software Engineering

Quiz review
Started on Tuesday, 16 January 2024, 8:10 PM
State Finished
Completed on Tuesday, 16 January 2024, 8:15 PM
Time taken 5 mins 19 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Correct

Mark 1.00 out of 1.00

45778
_______ describes how the development activities will be performed and how development phases follow each other.

Select one:
a. Process

b. Design

c. Software Development Process

d. Software Engineering

Your answer is correct.

45778
The correct answer is: Software Development Process

Question 2
Correct

Mark 1.00 out of 1.00

_________ is the application of a systematic, disciplined, quantifiable approach to the design, development, operation and maintenance of
software.

Select one:
a. Software Testing

b. Requirement Engineering
45778
c. Software Engineering

Your answer is correct.

The correct answer is: Software Engineering

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=926311&cmid=4065 1/3
16/01/2024, 20:15 Pre-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

During which phase the following activities are performed: Identifying the major modules of the system, how these modules integrate,
the architecture of the system and describing pseudo code for each of the identified module

Select one:
a. Maintenance

b. Analysis

c. Design

d. Feasibility

Your answer is correct.

Identifying the major modules of the system, how these modules integrate, the architecture of the system and describing pseudo code

45778
for each of the identified module are performed during the design phase
The correct answer is: Design

Question 4
Correct

Mark 1.00 out of 1.00

Aesthetics of the website is part of the functional requirement. State true or false

Select one:

45778
a. FALSE

b. TRUE

Your answer is correct.

The correct answer is: FALSE

Question 5
Correct

Mark 1.00 out of 1.00

45778
Requirement came to Allen Software company to develop a software for military purpose. .00001 second delay in the missile launching
software would create greater loss to the human life. What kind of model is best suited for this scenario?

Select one:
a. Spiral model

b. Agile

c. Waterfall model

d. Prototype

Your answer is correct.

Spiral model is used for high risk projects


The correct answer is: Spiral model

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=926311&cmid=4065 2/3
16/01/2024, 20:15 Pre-Quiz: Attempt review

◄ Run-Through

Jump to...

Requirement Analysis - Video ►

45778

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=926311&cmid=4065 3/3
17/01/2024, 14:52 Pre-Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Software Configuration Management

Quiz review
Started on Wednesday, 17 January 2024, 2:44 PM
State Finished
Completed on Wednesday, 17 January 2024, 2:51 PM
Time taken 7 mins 24 secs
Marks 6.00/7.00
Grade 85.71 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Question 1
Incorrect

Mark 0.00 out of 1.00

45778
Client has developed an application that allows each of their customers to store 2TB of data. As the number of Customers are
increasing client feels the storage space has to be increased for smooth operations to its customers. What type of maintanence is this?

Select one:
a. Corrective Maintanence

b. Adaptive Maintanence 

c. Perfective Maintanence

d. Preventive Maintanence

Your answer is incorrect.

The correct answer is: Preventive Maintanence


45778
Question 2
Correct

Mark 1.00 out of 1.00

In Software maintenance, changes are implemented by modifying existing components and adding new components to the system.
State if True or False.

Select one:
True 

False
45778
In maintenance, changes are implemented by modifying existing components and adding new components to the system
The correct answer is 'True'.


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936852&cmid=4089 1/4
17/01/2024, 14:52 Pre-Quiz: Attempt review

Question 3
Correct

Mark 1.00 out of 1.00

In an online shopping application, during customer registration the customer was made to enter his city in a text box. As the site became
popular for online shopping, the client came back to include autocomplete feature in the city field to improve user friendliness. What
maintenance needs to be carried out in this scenario?

Select one:
a. Preventive

b. Perfective

c. Adaptive

d. Corrective

Your answer is correct.

45778
The correct answer is: Perfective

Question 4
Correct

Mark 1.00 out of 1.00

Client wanted to add a new feature to his existing application "Discount Offers" for all the existing customers. Whenever a new product
comes to the supermarket, their customer's should be intimated with the week day offer. What kind of maintenance is this?

Select one:
a. Corrective Maintanence

b. Preventive Maintanence

c. Adaptive Maintanence
45778
d. Perfective Maintanence

Your answer is correct.

Perfective maintenance involves making functional enhancements to the system


The correct answer is: Perfective Maintanence

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936852&cmid=4089 2/4
17/01/2024, 14:52 Pre-Quiz: Attempt review

Question 5
Correct

Mark 1.00 out of 1.00

Y2K problem is an example for ------------- maintenance

Select one:
a. Corrective

b. Preventive

c. Perfective

d. Adaptive

Your answer is correct.

Preventive maintenance is the changes made to the system to prevent occurrence of errors in future
The correct answer is: Preventive

Question 6
45778
Correct

Mark 1.00 out of 1.00

Software maintenance for the change of the platform is an example for --------- maintenance

Select one:
a. Perfective

b. Adaptive

c. Corrective

d. Preventive
45778
Your answer is correct.

Adaptive maintenance involves adapting the software to changes in the working environment or platform
The correct answer is: Adaptive

Question 7

45778
Correct

Mark 1.00 out of 1.00

Any changes done to the software during the operational phase of the software before project wind up is called as maintenance. State if
True or False.

Select one:
a. FALSE

b. TRUE

Your answer is correct.

Any change that is made to the software after it is deployed is known as maintenance
The correct answer is: FALSE


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936852&cmid=4089 3/4
17/01/2024, 14:52 Pre-Quiz: Attempt review

◄ Run-Through

Jump to...

Software Configuration Management - Video ►

45778

45778

45778


https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=936852&cmid=4089 4/4
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Arrays

Quiz review
Started on Tuesday, 16 January 2024, 5:00 PM
State Finished
Completed on Tuesday, 16 January 2024, 5:09 PM
Time taken 9 mins 26 secs
Marks 2.00/2.00
Grade 100.00 out of 100.00

45778

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 1/6
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review

Question 1
Correct

Mark 1.00 out of 1.00

Select the appropriate code snippet for the given problem statement provided as pseudocode.

Problem Statement :
Dinner Plan

Five friends plan to go out for dinner. They plan to order equal number of dishes. Each row specifies individual cost. Find the total
amount each person needs to pay.
Assume the values for this matrix for 3 dishes are

12 23 18

45 32 60
42 39 23

54 42 60
25 84 30

The output will be


45778
Amount to be paid by person 1 is 53

Amount to be paid by person 2 is 137


Amount to be paid by person 3 is 104

Amount to be paid by person 4 is 156

Amount to be paid by person 3 is 139

Explanation : Output is the sum of each row

Code:
BEGIN

DECLARE variable arr[5][20], n, sum=0


45778
___________________

FOR j IN 0 to n-1 DO

READ arr[i][j]
END FOR

END FOR

FOR i IN 0 TO 4 DO

SET sum = 0

FOR j IN 0 TO n-1 DO
sum = sum + arr[i][j] 45778
END FOR

PRINT "Amount to be paid by person "+(i+1)+" is "+sum

END FOR

END

a. FOR i IN 0 to 4 DO

b. FOR i IN 0 to n DO

c. FOR i IN 0 to 5 DO

d. FOR i IN 0 to 3 DO

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 2/6
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review

Your answer is correct.


The correct answer is:
FOR i IN 0 to 4 DO

45778

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 3/6
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Choose the correct pseudocode for the below problem statement.

Problem Statement :

Find Maximum value

Choose a pseudo code to find the maximum values in each row of a matrix. Assume it is a 3x3 matrix.

Explanation : Matrix will be with index

(0,0) (0,1) (0,2)

(1,0) (1,1) (1,2)

(2,0) (2,1) (2,2)

45778
Assume the values for this matrix are

12 23 18

45 32 60

42 39 23

The output will be

Max value in row 1 is 23


Max value in row 2 is 60

Max value in row 3 is 42

45778
a.
BEGIN

DECLARE variable arr[3][3]

FOR i IN 0 to 2 DO

FOR j IN 0 to 2 DO

READ arr[i][j]
END FOR

END FOR

SET max = arr[i][0]

FOR i IN 0 TO 2 DO

FOR j IN 0 TO 2 DO

IF arr[i][j]>max THEN 45778


max = arr[i][j]

END IF

END FOR

PRINT "Max value in row "+(i+1)+" is "+max

END FOR
END

b.
BEGIN
DECLARE variable arr[3][3]

FOR i IN 0 to 2 DO

FOR j IN 0 to 2 DO

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 4/6
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review
END FOR
END FOR

FOR i IN 0 TO 2 DO

READ arr[i][j]

SET max = arr[i][0]

FOR j IN 0 TO 2 DO

IF arr[i][j]>max THEN

max = arr[i][j]

END IF

END FOR

PRINT "Max value in row "+(i+1)+" is "+max


END FOR

END

c.
BEGIN 45778 

DECLARE variable arr[3][3]

FOR i IN 0 to 2 DO

FOR j IN 0 to 2 DO

READ arr[i][j]

END FOR
END FOR

FOR i IN 0 TO 2 DO

45778
SET max = arr[i][0]

FOR j IN 0 TO 2 DO

IF arr[i][j]>max THEN

max = arr[i][j]

END IF

END FOR

PRINT "Max value in row "+(i+1)+" is "+max

END FOR

END

d.
BEGIN 45778
DECLARE variable arr[3][3]
FOR i IN 0 to 2 DO

FOR j IN 0 to 2 DO

READ arr[i][j]

END FOR

END FOR

FOR i IN 0 TO 2 DO

SET max = arr[i][0]

FOR j IN 0 TO 2 DO

IF arr[i][j]>max THEN

max = arr[i][j]

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 5/6
16/01/2024, 17:09 Pseudocode using Arrays - Quiz: Attempt review
END IF

END FOR

END FOR

PRINT "Max value in row "+(i+1)+" is "+max

END

Your answer is correct.


The correct answer is:

BEGIN

DECLARE variable arr[3][3]

FOR i IN 0 to 2 DO

FOR j IN 0 to 2 DO

READ arr[i][j]

END FOR

END FOR
45778
FOR i IN 0 TO 2 DO

SET max = arr[i][0]

FOR j IN 0 TO 2 DO

IF arr[i][j]>max THEN

max = arr[i][j]

END IF

END FOR

45778
PRINT "Max value in row "+(i+1)+" is "+max

END FOR

END

◄ Find the order

Jump to...

Check Your Understanding ►

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=923479&cmid=4053 6/6
16/01/2024, 12:38 Pseudocode using Loops - Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Looping statements

Quiz review
Started on Tuesday, 16 January 2024, 12:24 PM
State Finished
Completed on Tuesday, 16 January 2024, 12:38 PM
Time taken 13 mins 14 secs
Marks 2.00/2.00
Grade 100.00 out of 100.00

45778

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=919658&cmid=4035 1/5
16/01/2024, 12:38 Pseudocode using Loops - Quiz: Attempt review

Question 1
Correct

Mark 1.00 out of 1.00

Select the appropriate code snippet for the given problem statement provided as pseudocode.

Problem Statement :
Strong number

Check if a given number is a strong number. 145 is a strong number because 1!+4!+5! = 145.

Sample Input :

145
Sample Output :

Strong number

Code:
BEGIN 45778
DECLARE variables number, sum, temp, remainder, fact

READ number

SET sum=0, temp=number

__________________
remainder = number % 10

SET fact = 1

FOR i IN 1 to remainder DO

fact = fact *i

END FOR
sum = sum+ fact
45778
number = number / 10

END WHILE

IF sum==temp THEN

PRINT "Strong number"

ELSE
PRINT "Not a Strong number"

END IF

END
45778
a. WHILE number == 0

b. WHILE number <= 0

c. WHILE number < 0

d. WHILE number != 0

Your answer is correct.

The correct answer is:


WHILE number != 0

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=919658&cmid=4035 2/5
16/01/2024, 12:38 Pseudocode using Loops - Quiz: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Choose the pseudocode for the below problem statement.

Problem Statement :

Vehicle Registration
Mr.William buys a new Audi car. During the vehicle registration, he desires a fancy number in such a way that both the number and its
reverse are the same.

Generate an algorithm to find that fancy number.

Sample Input :
1221

Sample Output :

Number is Fancy

45778
a.
BEGIN

DECLARE variables number, reverse, rem, temp

READ number

WHILE number !=0 DO

SET reverse = 0, temp = number


rem = number%10

reverse = reverse*10 + rem

45778
number = number/10

END WHILE

IF temp == reverse THEN


PRINT "Number is Fancy"

ELSE

PRINT "Number is Not Fancy"


END IF

END

b.
BEGIN 45778
DECLARE variables number, reverse, rem, temp

READ number

SET reverse = 0, temp = number

WHILE number !=0 DO

number = number/10

rem = number%10

reverse = reverse*10 + rem

END WHILE

IF temp == reverse THEN


PRINT "Number is Fancy"

ELSE

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=919658&cmid=4035 3/5
16/01/2024, 12:38 Pseudocode using Loops - Quiz: Attempt review
PRINT "Number is Not Fancy"

END IF

END

c. 
BEGIN

DECLARE variables number, reverse, rem, temp

READ number

SET reverse = 0, temp = number

WHILE number !=0 DO

rem = number%10
reverse = reverse*10 + rem

number = number/10

END WHILE

IF temp == reverse THEN

45778
PRINT "Number is Fancy"

ELSE

PRINT "Number is Not Fancy"

END IF

END

d.
BEGIN

DECLARE variables number, reverse, rem, temp

READ number

SET reverse = 0, temp = number


WHILE number !=0 DO
45778
rem = number%10

reverse = reverse*10 + rem

number = number/10

END WHILE

IF temp == reverse THEN

PRINT "Number is Not Fancy"

ELSE

45778
PRINT "Number is Fancy"

END IF
END

Your answer is correct.

The correct answer is:

BEGIN

DECLARE variables number, reverse, rem, temp


READ number

SET reverse = 0, temp = number

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=919658&cmid=4035 4/5
16/01/2024, 12:38 Pseudocode using Loops - Quiz: Attempt review
WHILE number !=0 DO
rem = number%10

reverse = reverse*10 + rem

number = number/10

END WHILE

IF temp == reverse THEN

PRINT "Number is Fancy"

ELSE

PRINT "Number is Not Fancy"

END IF

END

◄ Palindrome problem

Jump to...
45778 Check Your Understanding ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=919658&cmid=4035 5/5
16/01/2024, 09:39 Pseudocode Using Selection Statements - Quiz: Attempt review


 Dashboard / Primer 2.0 - App Dev / Stage 1 / Software Fundamentals / Selection statements

Quiz review
Started on Tuesday, 16 January 2024, 9:24 AM
State Finished
Completed on Tuesday, 16 January 2024, 9:39 AM
Time taken 14 mins 56 secs
Marks 12.00/12.00
Grade 100.00 out of 100.00

Question 1
Correct

Mark 11.00 out of 11.00

number > 50 ELSE


"This balloon cannot fly to Tweety" 45778
OR number < 50 "This balloon can fly to Tweety"
OR number > 1 AND number%7 == 0
"Invalid balloon number "
number%3 == 0 END IF
OR number%7 == 0
OR number < 1 PRINT

You are provided with a partial pseudocode for the below problem statement. Drag and Drop the options provided so that it will be the
correct pseudocode.
Save Tweety
Silvester and Tweety are friends. Bender was one of the Silvester's enemy. One day Silvester and Tweety went on to a trip. Bender
planned to kidnap Tweety.. He kidnapped and kept her in one of the hot balloons tied up to a height. There were 50 hot balloons
numbered from one. Each balloon will fly to a certain height. Only the numbers having both 3 and 7 as its factors can fly upto the height
of the Tweety's balloon. Silvester was confused and he didn't know which numbered balloon can fly to Tweety. (Note: If balloon number
is greater than 50, or balloon number less than 1, then it should display invalid balloon number)

45778
Eg: Balloon's number:
42
This balloon can fly to Tweety.
Eg:

Enter the Balloon's number:


24

This balloon cannot fly to Tweety.


Pseudocode :
BEGIN
DECLARE variable number

45778
READ number
IF number > 50  OR number < 1  THEN
PRINT "Invalid balloon number " 
ELSE IF number%3 == 0  AND number%7 == 0  THEN
PRINT  "This balloon can fly to Tweety" 
ELSE 
PRINT  "This balloon cannot fly to Tweety" 
END IF 
END

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917532&cmid=4017 1/4
16/01/2024, 09:39 Pseudocode Using Selection Statements - Quiz: Attempt review

Question 2
Correct

Mark 1.00 out of 1.00

Choose the correct pseudocode for the below problem statement.

Problem Statement :
Hide and Seek

One day, Bunny and his friends were playing hide and seek in the forest. Tom went along to hide. He finds an abandoned bag containing
a board(8x8) game in a cave. He gets excited and starts playing the game only to realizes that it's magical. He has three chances to roll
the dice. Each turn's outcome will lead into a new surrounding and some would be dangerous. If the outcome of rolling dices is in
multiples of 3 then he will be caught in a dangerous phase.

Note if any one outcome is multiple of 3, then tom is in danger.


(If the outcome of rolling dices is either 0 or less than that you should tell Tom as "Invalid Turn". )

Example :

45778
Enter value of turn 1

10

Enter value of turn 2

5
Enter value of turn 3

Tom is safe

Example :

45778
Enter value of turn 1

12

Enter value of turn 2

Enter value of turn 3

2
Tom is in danger

a.
BEGIN
READ turn1, turn2, turn3
45778
DECLARE variables turn1,turn2,turn3

IF turn1>0 AND turn2>0 AND turn3>0 THEN

IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN

PRINT "Tom is in Danger"


ELSE

PRINT "Tom is Safe"

END IF

ELSE

PRINT "Invalid turn"

END IF
END

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917532&cmid=4017 2/4
16/01/2024, 09:39 Pseudocode Using Selection Statements - Quiz: Attempt review
b.
BEGIN

DECLARE variables turn1,turn2,turn3

READ turn1, turn2, turn3

IF turn1>0 AND turn2>0 AND turn3>0 THEN

ELSE
PRINT "Tom is Safe"

IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN

PRINT "Tom is in Danger"

END IF

ELSE
PRINT "Invalid turn"

END IF

END

45778
c.
BEGIN

DECLARE variables turn1,turn2,turn3

READ turn1, turn2, turn3

PRINT "Tom is in Danger"


IF turn1>0 AND turn2>0 AND turn3>0 THEN

ELSE

PRINT "Tom is Safe"

IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN

END IF

ELSE
PRINT "Invalid turn" 45778
END IF

END

d. 
BEGIN

DECLARE variables turn1,turn2,turn3

READ turn1, turn2, turn3

IF turn1>0 AND turn2>0 AND turn3>0 THEN

45778
IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN

PRINT "Tom is in Danger"

ELSE
PRINT "Tom is Safe"

END IF

ELSE

PRINT "Invalid turn"

END IF

END

Your answer is correct.

The correct answer is:

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917532&cmid=4017 3/4
16/01/2024, 09:39 Pseudocode Using Selection Statements - Quiz: Attempt review

BEGIN

DECLARE variables turn1,turn2,turn3

READ turn1, turn2, turn3

IF turn1>0 AND turn2>0 AND turn3>0 THEN

IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN

PRINT "Tom is in Danger"


ELSE

PRINT "Tom is Safe"

END IF

ELSE

PRINT "Invalid turn"

END IF

END

45778
◄ Land Mark store

Jump to...

Check Your Understanding ►

45778

45778

https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917532&cmid=4017 4/4

You might also like