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 programmer is writing code using C. Which paradigm could the programmer be using?
Which snippet represents the loop variable update statement in the given code?
integer h = 7
while h < 30
Put h to output
h = h + 2
An example of an behavioral diagram is shown.
What is generally visualized with a behavioral diagram"?
A function should determine the average of x and y. What should be the function's parameters and return value(s)?
It is given that integer x=41 and integer y = 16. What is the value of the expression (x % 8) - y?
Which phase of an agile application would create a function that calculates shipping costs based on an item’s weight and delivery zip code?
Oder the tasks needed to safely replace a lamp's light bulb from first (1) to last (4).
Select your answer from the pull down list.
A software developer determines the mathematical operations that a calculator program should support When two waterfall approach phases are involved?
Which kind of language is HTML?
A function determines the least common multiple (LCM) of two positive integers (a and b). What should be the input to the function?
A software engineer has written a program that uses a large number of interacting custom data types information hiding, data abstraction encapsulation polymorphism, and inheritance Variables do not need to receive their types ahead of time, and this program can run on a variety of operating systems without having to re-compile the program into machine code.
Which type of language is being used? Choose 3 terms that accurately describe the language.
A program adds a service fee to the total cost of concert tickets when the tickets are printed and mailed to customers. Another service fee is also added if the tickets are delivered overnight. Which control structure should be used?
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?
What is the outcome for the given algorithm? Round to the nearest tenth, if necessary.
A programming loam is using the waterfall design approach to create an application. Which deliverable would be produced during the design phase?
A function should determine the average of x and y.
What should be the function's parameters and return value(s)?
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?
Which characteristic distinguishes an object-oriented language from other languages?
A programming is developing an application that needs to manipulation text in a variety of ways. Everything the programmer needs is standard in the industry and the programmer wants to perform these manipulations with a minimal amount of code. What does the programmer need?
Which phase of a waterfall approach defines specifies on how to build a program?
Which phase of a Waterfall approach defines specifics on how to build a program?
Given integer x = 12 and integer y = 4
What is the value of the expression x + y12?
Which line is a loop variable update statement in the sample code?
integer h = 0
do
Put "What is the password?" to output
String userInput = Get next input
if userInput != pwd
Put "Incorrect." to output
h = h + 1
while (userInput != pwd) and (h <= 10)
if userInput = pwd
Put "Access granted." to output
else
Put "Access denied." to output