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. Which two phases of the Agile approach are being carried out?
An example of an behavioral diagram is shown.
What is generally visualized with a behavioral diagram"?
A programmer is writing code using C. Which paradigm could the programmer be using?
Which data type should be used to hold the value of a person’s body temperature in Fahrenheit?
An algorithm should output ‘’OK’’ if a number is between 98.3 and 98.9, else the output is ‘’Net OK’’
Which test is a valid test of the algorithm?
A programming loam is using the waterfall design approach to create an application. Which deliverable would be produced during the design phase?
Which two statement describe advantages to using programming libraries? Choose 2 answers
What is the outcome for the given algorithm? Round to the nearest tenth, if necessary.
NumList = [1, 3, 6, 6, 7, 3]
x = 0
Count = 0
for Number in NumList
x = x + Number
Count = Count + 1
x = x / Count
Put x to output
Which type of language requires variables to be declared ahead of time and prohibits their types from changing while the program runs?
Which operator is helpful in determining if an integer is a multiple of another integer?
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?
The steps in an algorithm to build a picnic table are given:
Measure and mark the lumber cuts that need to be made.
Buy the needed materials.
Determine the needed materials.
Cut the lumber to the proper dimensions.
Assemble the pieces and paint.Which two steps of the algorithm should be switched to make the algorithm successful?
The steps in an algorithm to buy a pair of shoes from a store are given in no particular order.
* Bring the shoes to the cashier
* Pay for the shoes
* Enter the store
* Select the pair of shoes
What is the first step of the algorithm?
A programmer receives requirements from customers and deciders 1o build a first version of a program.
Which phase of an agile approach is being carried out when trio programmer starts writing the program's first version?
A particular sorting algorithm takes integer list [10, 6, 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?
What is the proper way to declare a student’s grade point average throughout the term if this item is needed in several places in a program?
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.
Which characteristic distinguishes an object-oriented language from other languages?
Consider the given function:
function K(string s1, string s2)
Put s1 to output
Put " and " to output
Put s2 to output
What is the total output when K("sign", "horse") is called 2 times?
An algorithm to calculate the positive difference in two given values, x and y, uses the steps shown.
What are the two steps of the algorithm that need to be switched to result in success?
A software team has been commissioned to create an animation application. Which event takes place during the analysis phase in the agile approach?
Which term refers to a function that represents the number of fixed-size memory units used for an input of a given size?
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?