Software Fundamentals (Whole)
Software Fundamentals (Whole)
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
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.
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
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 _________
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
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
Select one:
a.
Used to iterate the sequence of steps
c.
Used to alternate the flow of the program
d.
Used in sequential arrangement of steps
Question 4
Correct
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
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
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.
c. Open the envelope, find out who has dropped it by mistake, and send it to him if possible.
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
Identify the correct pseudo-code logic for checking a number divisible by 5 or 11.
a.
DECLARE number
IF number%5==0
THEN
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
ELSE IF number%11==0
45778
THEN
PRINT “number divisible by 11”
ELSE
END IF
c.
DECLARE number
READ number
IF number%5==0
45778
THEN
ELSE IF number%11==0
THEN
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
ELSE IF number%11==0
THEN
ELSE
PRINT “number not divisible by 5 or 11”
END IF
END
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
45778
Which statement logic implements multiple-way selection?
Select one:
a. Sequential
b. Else if ladder
c. If-else
d. Simple if
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
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
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
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
END
45778
Select one:
a.
Zero
No value
b.
Zero
45778
Three
No value
c.
Three
No value
d.
Zero
Three
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
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
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
______________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
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
Select one:
a.
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
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
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
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
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
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
Select one:
a. bottom to top
b. iterative
c. top to bottom
d. conditional
Question 17
Correct
45778
Mark 1.00 out of 1.00
a. Sequence logic
b. Program logic
c. Iteration logic
45778
d. 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
From the option, find the correct pseudo-code to find the greatest of three numbers
Select one:
a.
BEGIN
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
Question 19
45778
Incorrect
Select one:
a. static
b. End if
c. Start
d. Read
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
READ age
IF age>18
THEN
PRINT “Eligible to vote”
Select one:
a.
Simple If logic
b.
Sequence Logic
c.
Else if ladder logic
45778
d. Nested if logic
Question 21
45778
Correct
Select one:
a. Simple Run
b. Execution
c. Dry run
d. compiling
45778
Your answer is correct.
Jump to...
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
45778
Match the appropriate opening and closing blocks in looping statements.
IF END IF
BEGIN END
45778
The correct answer is: WHILE → END WHILE, IF → END IF, BEGIN → END, FOR → END FOR
Question 2
Correct
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)
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
BEGIN
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
BEGIN
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
Which of the below given pseudo code snippet gives the above output?
Select one:
a.
BEGIN
PRINT even
PRINT even
END
b.
BEGIN
DECLARE number, count, even
WHILE number<count
PRINT even
END WHILE
END
c.
BEGIN
WHILE number<count
PRINT even
45778
SET even <-- even + 2
END WHILE
PRINT even
END
d.
BEGIN
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
END WHILE
PRINT even
END
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
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
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
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
Select one:
a. While loop
b. if-else
c. for loop
d. Nested if
Question 8
Correct
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
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
BEGIN
DECLARE number
WHILE number>0
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
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
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
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
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?
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
b.
The operand in an expression must always be a variable.
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
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
f m d i r a w l e p n t o h g
DOWN:
4) When you know the exact number of iterations, this loop is used
Across:
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
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
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
45778
Question 20
Correct
a. Program logic
b. Selection logic
c. Sequence logic
45778
d. Iteration logic
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
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
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
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
Assume,
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
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
Which of the following are False with respect to the manipulation of arrays?
b.
An array can store heterogeneous data
d.
It is possible to increase the size of the array
Question 5
Correct
Select one:
True
False
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
The names of all associates undergoing training are stored in an array named associate_name[50]. The 5th associates’ name is
retrieved as
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
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
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
It is not possible to do a search operation in an array that is not sorted. State True/False.
Select one:
True
False
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
Question 10
Correct
Select one:
True
45778
False
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
Question 12
Correct
45778
Assume you have an array named numbers of size 10.
b. numbers[10] <- 11
c.
numbers[9] <- 5
d.
numbers[11] <- 6
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
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
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
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
45778
Consider you buy a laptop. You want to store the details of that laptop such as price,
Select one:
a. No
b. Yes
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
List of songs stored in your mobile phone is a good example for single-dimensional arrays
Question 17
Correct
45778 45778
Consider you want to compare the prices of redmi , sony, samsung phones in three online sites like amazon,flipkart,ebay.
Select one:
a.
three-dimensional arrays
b.
one-dimensional array
c. two-dimensional arrays
To compare 3 mobile phones in 3 different online sites, 2-d arrays can be used.
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
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
45778 45778
Question 19
Correct
Select one:
a. Three dimensional array
b.
one-dimensional array
c. 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
Choose the correct Pseudo code to store names in an array and display a name.
a.
BEGIN
INPUT name
END
PRINT name
b.
BEGIN
INPUT name
45778
DECLARE name [20]
PRINT name
END
45778
c.
BEGIN
INPUT name
PRINT name
END
d.
BEGIN
INPUT name
PRINT name
END
INPUT name
PRINT name
END
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
45778
Which conforms that the software meets its technical specifications?
Select one:
a.
Verification
b.
Validation
45778
c. Defect finding
d.
Design
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
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
Question 3
Correct
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 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
a. Quick design
b. Detailed Coding
d. Extensive testing
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
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
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
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
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
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
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
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
45778
Which of the following options are the steps involved in Requirements Analysis?
c.
Requirements Gathering
Question 2
Correct
45778
From the below options, identify the role of the system analyst.
b. 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
a. Analysis or High level design or Low level design can be performed in any order
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
Question 4
Correct
45778
Mark 1.00 out of 1.00
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
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
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
45778
Data Design helps in creating the data architecture for a system to represent the data components
Question 6
Partially correct
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
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
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
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
d. Error Guessing
Question 2
Incorrect
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
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
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
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 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
Author
Writer of the ‘document under review’
Reader
Records each defect found
Question 5
45778
Correct
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
d. Usability Testing
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
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
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
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
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
Which all of the following options would basis path testing perform?
c.
Statement Coverage
d. 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
45778
Which of the following options are valid for the relationship between the configuration objects?
b.
A curved arrow indicates a compositional relation
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
Lock a file
Create branches
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
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
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
Question 5
45778
Incorrect
Choose the missing steps involved in the Change Control Process in the correct order:
45778
6. Close change request
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
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
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
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
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
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.
Question 2
Correct
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
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
Select one:
a. S
b. N
c. O
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
45778
Match the correct E,T,V,X (Entry,Task,Verify,Exit) criteria for the below scenario
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
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
Question 3
45778
Correct
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
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
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
45778
The correct answer is: Waterfall model
Question 5
Correct
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
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
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
45778
◄ Software Development Process Models II
Jump to...
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
45778
Which of the following are available in SRS Document?
b. Functional Requirements
c. Design
d. Constraints
45778
The correct answers are: Functional Requirements, Non Functional Requirements, Constraints
Question 2
Correct
b. Sale
c. SalesID
45778
d. customerAge
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
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
Question 4
45778
Correct
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 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
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
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
Question 6
45778
Correct
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
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
45778
Boundary value analysis can only be used during white-box testing. State if True or False.
Select one:
a. FALSE
b. TRUE
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
Tester is trying to test whether the values in the drop down are listed properly.
Select one:
a. Acceptance Testing
c. Regression Testing
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
The testing technique that deals with the internal logic and structure of the code is called ________.
Select one:
a. WhiteBox Testing
b. Logical 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
Accept year
if(year mod 4=0 and year mod 100!=0) or(year mod 400 =0)
print year is leap
else
end if.
Select one:
a. 6
b. 4
45778
c. 5
d. 3
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
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
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
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
Question 2
45778
Partially correct
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
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
Select one:
a. True
b. False
Question 4
Incorrect
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
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
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
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
45778
From the options identify the features that are part of the software configuration management
b. Version management
c. Support management
d. Synchronisation control
Jump to...
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
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
c. Scrum
d. Spiral model
Question 2
Correct
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
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
Select one:
a. Software design process
b. Software Analysis
c. Software Testing
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
Question 5
Correct
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
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
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
45778
The correct answer is: Evolutionary prototyping model
Jump to...
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
45778
_______ describes how the development activities will be performed and how development phases follow each other.
Select one:
a. Process
b. Design
d. Software Engineering
45778
The correct answer is: Software Development Process
Question 2
Correct
_________ 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
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
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
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
Aesthetics of the website is part of the functional requirement. State true or false
Select one:
45778
a. FALSE
b. TRUE
Question 5
Correct
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
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...
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
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
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
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
45778
The correct answer is: Perfective
Question 4
Correct
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
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
Select one:
a. Corrective
b. Preventive
c. Perfective
d. Adaptive
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
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
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
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...
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
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
Code:
BEGIN
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
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
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
Problem Statement :
Choose a pseudo code to find the maximum values in each row of a matrix. Assume it is a 3x3 matrix.
45778
Assume the values for this matrix are
12 23 18
45 32 60
42 39 23
45778
a.
BEGIN
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
FOR j IN 0 TO 2 DO
END IF
END FOR
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]
FOR j IN 0 TO 2 DO
IF arr[i][j]>max THEN
max = arr[i][j]
END IF
END FOR
END
c.
BEGIN 45778
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
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
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
END
BEGIN
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
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
Jump to...
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
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
__________________
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
ELSE
PRINT "Not a Strong number"
END IF
END
45778
a. WHILE number == 0
d. 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
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.
Sample Input :
1221
Sample Output :
Number is Fancy
45778
a.
BEGIN
READ number
45778
number = number/10
END WHILE
ELSE
END
b.
BEGIN 45778
DECLARE variables number, reverse, rem, temp
READ number
number = number/10
rem = number%10
END WHILE
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
READ number
rem = number%10
reverse = reverse*10 + rem
number = number/10
END WHILE
45778
PRINT "Number is Fancy"
ELSE
END IF
END
d.
BEGIN
READ number
number = number/10
END WHILE
ELSE
45778
PRINT "Number is Fancy"
END IF
END
BEGIN
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
number = number/10
END WHILE
ELSE
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
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:
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
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.
Example :
45778
Enter value of turn 1
10
5
Enter value of turn 3
Tom is safe
Example :
45778
Enter value of turn 1
12
2
Tom is in danger
a.
BEGIN
READ turn1, turn2, turn3
45778
DECLARE variables turn1,turn2,turn3
END IF
ELSE
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
ELSE
PRINT "Tom is Safe"
END IF
ELSE
PRINT "Invalid turn"
END IF
END
45778
c.
BEGIN
ELSE
END IF
ELSE
PRINT "Invalid turn" 45778
END IF
END
d.
BEGIN
45778
IF turn1%3==0 OR turn2%3==0 OR turn3%3==0 THEN
ELSE
PRINT "Tom is Safe"
END IF
ELSE
END IF
END
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
END IF
ELSE
END IF
END
45778
◄ Land Mark store
Jump to...
45778
45778
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=917532&cmid=4017 4/4