It is given that integer x = 41 and integer y = 16. What is the value of the expression (x % y)?
A software team has been commissioned to create an animation application. Which event takes place during the analysis phase in the Agile approach?
A particular sorting takes integer list 10,8 and incorrectly sorts the list to 6, 10, 8.
What is true about the algorithm’s correctness for sorting an arbitrary list of three integers?
Which kind of language is HTML?
What does the following algorithm determine?
if x < 0
a = 1
else if x = 0
a = 2
else
a = 3
Which operation should be used to check if the difference of two values is greater than 1?
Which phase of a waterfall approach defines specifies on how to build a program?
A team of programmers describes the objects and functions in a program that compresses files before splitting the objects. Which Waterfall approach phases are involved?
A software developer creates a list of all objects and functions that will be used in a board game application and then begins to write the code for each object.
Consider the given function.
What is the total output when F (sign, horse) is called 2 times?
A program steps through an array and adds up all the numbers stored in the array. What is the appropriate individual control structure that should be used?
Which data type should be used to hold the value of a person's body temperature in Fahrenheit
The steps in an algorithm to calculate the positive difference in two given values, x and y, are given in no particular order:
What is the first step of the algorithm?
Which output results from the following pseudocode?
x = 5
do
x = x + 4
while x < 18
Put x to output
A program calculates the average miles per gallon given miles traveled and gas consumed
How should the item that holds me miles per gallon be declared?
A program allows the user to play a game. At the end of each game, the program asks the user if they want to play again.
Which programming structure on its own is appropriate to accomplish this task?
A programmer receives requirements from customers and decides to build a first version of a program. Which phase of an Agile approach is being carried out when the programmer starts writing the first version?
A function should convert a Fahrenheit temperature (F) to a Celsius temperature. What should be the output from the function?
Which phase of an agile application would create a function that calculates shipping costs based on an item’s weight and delivery zip code?
Which operator is helpful in determining if an integer is a multiple of another integer?
A function should determine the average of x and y.
What should be the function's parameters and return value(s)?
A function should determine the average of x and y. What should be the function's parameters and return value(s)?
What is the proper way to declare a student's grade point average throughout the term it this item is needed in several places in a program?
An algorithm should output "OK" if a number is between 98.3 and 98.9, else the output is "Not OK." Which test is a valid test of the algorithm?
A function determines the least common multiple (LCM) of two positive integers (a and b). What should be the input to the function?
NDE |