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

Exact2Pass Menu

Question # 4

Which kind of languages are C, C++ and Java?

A.

Markup

B.

Compiled

C.

Interpreted

D.

Machine code

Full Access
Question # 5

What would a string be used to store?

A.

A positive whole number

B.

The word "positive"

C.

A true/false indication of whether a number is composite

D.

A positive number between 2 and 3

Full Access
Question # 6

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?

A.

Set Diff = x - y

B.

Put Diff to output

C.

Deduce variable Diff

D.

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

Full Access
Question # 7

A function should return 0 if a number, N is even and 1 if N is odd.

What should be the input to the function?

A.

Even

B.

1

C.

0

D.

N

Full Access
Question # 8

Which operation should be used to check if the difference of two values is greater than 1?

A.

Multiplication

B.

Subtraction

C.

Addition

D.

Division

Full Access
Question # 9

Which three statements describe a characteristic of a programming library?

A.

A library typically must be included before any function in the library is used

B.

A single library normally includes more than one function.

C.

Using libraries will always make a program run less efficiently.

D.

Libraries improve a programmer's productivity.

E.

A single program can only include one library.

F.

One library will contain one function but can have several variables.

Full Access
Question # 10

Which characteristic specifically describes an object-oriented language?

A.

Supports creating programs as a set of functions

B.

Requires a compiler to convert to machine code

C.

Can be run on any machine that has an interpreter

D.

Supports creating program as item that have data plus operations

Full Access
Question # 11

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 # 12

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 # 13

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.

Markup

B.

Interpreted

C.

Object-oriented

D.

Procedural

E.

Dynamic

F.

Static

Full Access
Question # 14

What is one characteristic of an object-oriented language that is not a characteristic of a procedural or functional language?

A.

The language is based on the concept of modular programming and the calling of a subroutine.

B.

The language is optimized for recursive programming.

C.

The language supports decomposing a program into objects that interact with one another.

D.

The language treats programs as evaluating mathematical functions.

Full Access
Question # 15

Which phase of a waterfall approach defines specifies on how to build a program?

A.

Analysis

B.

Implementation

C.

Design

D.

Testing

Full Access
Question # 16

What are two examples of equality operators?

Choose 2 answers

A.

!=

B.

==

C.

-

D.

/

E.

<=

F.

not

Full Access
Question # 17

Which characteristic distinguishes an object-oriented language from other languages?

A.

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

B.

It is extremely portable and can be run on any machine that has a program than can read the code.

C.

It has variables that never change type during execution

D.

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

Full Access
Question # 18

Which characteristic distinguishes a markup language from other languages

A.

It supports decomposing programs into custom types that often combine with other variable types into more complicated concepts.

B.

It does not perform complex algorithms, but instead describes the content and formatting of webpages and other documents.

C.

It allows variables to change type during execution

D.

It requires fewer variables and variable conversions than other languages because the types can change during execution

Full Access
Question # 19

What is put to output by the following flowchart, if the input is 305?

A.

Backlog

B.

Interview

C.

Return

D.

interviewBacking

Full Access
Question # 20

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?

A.

The algorithm only works for 10,6, 8

B.

The algorithm is correct

C.

The algorithm's correctness is unknown

D.

The algorithm is incorrect

Full Access
Question # 21

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.

Select the pair of shoes.

B.

Bring the shoes to the cashier.

C.

Enter the store

D.

Pay for the shoes.

Full Access
Question # 22

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 # 23

What is a string?

A.

A built-in method

B.

A very precise sequence of steps

C.

A sequence of characters

D.

A name that refers to a value

Full Access
Question # 24

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 # 25

What is an advantage of using a programming library?

A.

There is improved programmer productivity.

B.

Static program elements are visualized.

C.

There are more statements in a user’s main function

D.

Programs need not run to yield results.

Full Access
Question # 26

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 # 27

What is one task that could be accomplish using a while loop?

A.

After inputting two numbers, the program prints out the larger of the two

B.

A user is asked to enter a password repeatedly until either a correct password is entered or five incorrect attempts have been made.

C.

When the user Inputs a number, the program outputs "True" when the number Is a multiple of 10

D.

The user inputs an integer, and the program prints out whether the number is even or odd and whether the number Is positive, negative, or zero.

Full Access