given choices Implementation of code is an activity point associated with which of the following phases of the software development method? coding testing design O operation How does the quality of design affect point the software maintenance cost? A better design teads to more maintenance, while a poor design leads to less maintenance, but neither will affect the maintenance cost A better design leads to higher costs, while a poor design leads to lower costs. A poor design leads to high costs, while a good design leads to lower costs There is no correlation between the quality of design and software maintenance costs. point Which of the following describes activities carried out in the analysis phase of the software development method? Testing and debugging Development of a requirements specification Implementation of code Program documentation Which of the following is the correct 1 point order of the five steps of the software development cycle? Specification, design, coding, testing. debugging Design, coding, testing, analysis, operation Analysis, design, coding, testing, operation Design, analysis, operation coding, testing Which of the following is a C reserved 1 point word? vold double const All of the above If the values of the integer variables a, 1 point b, and d are 5.8 and 15, respectively, the value computed for the expression (a*a-b*(d/a)) will be -1 3.8 None of the above 1 point Which of the following operators is not a relational operator in C? The correct declaration in C language 1 point of a variable called "initialize", which can hold a character is character: initialize; string initialize: char[1] initialize O char initialize 1 point Which of the following is NOT a Boolean operator? && ++ The following the 1 point 1 pont The following question relates to the block of code below: int x,y,z; 1 2 3 4 5 6 2 8 Inty: y = 2: null 0 Which of the following is the correct point way to rewrite the following piece of code using the conditional operators? if (x == 1) y = 2; else y = 0; O y = (2:0?x==1); Oy=(x == 10:2) Oy=(x==172:0) O x == 1) = (y = 2 ?y=0); 1 point What is the purpose of the keyword break that is implemented in the following C code? i = 1; dot i = i + 3; if (i==5) break; } while (i
Page 2 of 12