Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Question # 4

A software team has been commissioned to create an animation application. Which event takes place during the analysis phase in the Agile approach?

A.

Deciding that new capabilities in the animation application will be written as functions without the need for any new objects

B.

Sending the application to customers for additional evaluation after new features are added

C.

Deciding to add five new capabilities to the animation application based on customer feedback

D.

Writing the code for five new capabilities

Full Access
Question # 5

A software developer determines the mathematical operations that a calculator program should support When two waterfall approach phases are involved?

A.

Design and Testing

B.

Implementation and testing

C.

Design and implementation

D.

Analysis and design

Full Access
Question # 6

What is a characteristic of an interpreted language?

A.

Is restricted to running on one machine

B.

Generates syntax errors during compilation

C.

Can be run by a user one statement at a time

D.

Has a programmer writing machine code

Full Access
Question # 7

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.

Input 98.6. Ensure output is "Not OK."

B.

Input 98.6. Ensure output is "OK."

C.

Input 99.9. Ensure output is "OK."

D.

Input 99.9. Ensure output is "98.9."

Full Access
Question # 8

Which two statements describe advantages to using programming libraries?

A.

Using a library minimizes copyright issues in coding

B.

A program that uses libraries is more portable than one that does not.

C.

Using libraries turns procedural code into object-oriented code.

D.

Libraries always make code run faster.

E.

The programmer can improve productivity by using libraries.

F.

Using a library prevents a programmer from having to code common tasks by hand.

Full Access
Question # 9

A function should determine the average of x and y. What should be the function's parameters and return value(s)?

A.

Parameters: x, y, averageReturn value: none

B.

Parameters: x, yReturn value: average

C.

Parameters: noneReturn values: x, y

D.

Parameters: averageReturn values: x, y

Full Access
Question # 10

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.

Input 99.9. Ensure output is M98 9 "

B.

Input 98.6. Ensure output is "OK "

C.

Input 99.9. Ensure output is "OK"

D.

Input 98.6. Ensure output is "Not OK ‘’

Full Access
Question # 11

Consider the given function.

What is the total output when F (sign, horse) is called 2 times?

A.

sign and horse sign and horse

B.

sign and horse sign and horse

C.

sign and horse sign and horse

D.

sign and horse and sign and horse

Full Access
Question # 12

What is an accurate way to describe a statically typed language?

A.

It uses methods that that produce consistent output based upon the arguments passed to those methods.

B.

It includes custom variable types with methods, information hiding, data abstraction, encapsulation, polymorphism, and inheritance.

C.

It is based on the concept of modularization and calling procedures or subroutines.

D.

It requires a large number of variables and variable conversions because of the need to commit to a variable type throughout the life of the program.

Full Access
Question # 13

What is a feature of a compiled programming language?

A.

The program usually runs slower than an interpreted language.

B.

The code runs directly one statement at a time by another program called a compiler.

C.

The code must be compiled into machine code in the form of an executable file before execution.

D.

The code does not require being translated into machine code but can be run by a separate program called a compiler.

Full Access
Question # 14

Which statement describes a compiled language?

A.

It is considered fairly safe because it forces the programmer lo declare all variable types ahead of time and commit to those types during runtime.

B.

It allows variables to change from the initial declared types during program execution.

C.

It specifies a series of well-structured steps to compose a program.

D.

It has code that is first converted to machine code, which can then only run on a particular type of machine.

Full Access
Question # 15

Which output results from the given algorithm?

i = 61

d = 6

c = 0

while i >= d

c = c + 1

i = i - d

Put c to output

A.

1

B.

5

C.

10

D.

60

Full Access
Question # 16

What is the outcome for the given algorithm? Round to the nearest tenth, if necessary.

A.

5.0

B.

6.0

C.

6.1

D.

8.4

Full Access
Question # 17

Which phase of an agile application would create a function that calculates shipping costs based on an item’s weight and delivery zip code?

A.

Implementation

B.

Analysis

C.

Design

D.

Testing

Full Access
Question # 18

It is given that integer x = 41 and integer y = 16. What is the value of the expression (x % y)?

A.

-15

B.

-11

C.

-8

D.

9

Full Access
Question # 19

Which snippet represents the loop condition expression in the given code?

A.

Integer f = 1

B.

Put f to output

C.

F < 27

D.

F = f + 2

Full Access
Question # 20

Which expression evaluates to 14 if integer y = 13?

A.

11 + y % 5

B.

11 - y / 5.0

C.

(11 + y) % 5

D.

11.0 - y / 5

Full Access
Question # 21

The steps in an algorithm to calculate the positive difference in given values, x and y, are given in no particular order:

    Put Diff to output.

    Set Diff = x - y.

    If y > x, set Diff = y - x.

    Declare variable Diff.What is the first step of the algorithm?

A.

Put Diff to output.

B.

Set Diff = x - y.

C.

If y > x, set Diff = y - x.

D.

Declare variable Diff.

Full Access
Question # 22

What would a string be used to store?

A.

A true/false indication of whether a number is composite.

B.

A positive number between 2 and 3.

C.

The word "positive."

D.

A positive whole number.

Full Access
Question # 23

One requirement for the language of a project is that it is based on a series of cells. Which type of language is characterized in this way?

A.

Functional

B.

Static

C.

Markup

D.

Compiled

Full Access