Unit 4 #3

Unit 4 #3

12th Grade

10 Qs

quiz-placeholder

Similar activities

Chemistry, Scientific Method Quiz

Chemistry, Scientific Method Quiz

7th - 12th Grade

15 Qs

Test 4 P1

Test 4 P1

12th Grade

15 Qs

Chemistry, Tuesday Bell Ringer, 9/18/18

Chemistry, Tuesday Bell Ringer, 9/18/18

7th - 12th Grade

10 Qs

Chemistry, Wednesday Bell Ringer, 9/12/18

Chemistry, Wednesday Bell Ringer, 9/12/18

7th - 12th Grade

10 Qs

Syllabus Rules!

Syllabus Rules!

10th - 12th Grade

10 Qs

Sc 912 N 2 1

Sc 912 N 2 1

9th - 12th Grade

13 Qs

Chemistry Regent - June 2012 Q1-10

Chemistry Regent - June 2012 Q1-10

9th - 12th Grade

10 Qs

Regent Review 2a

Regent Review 2a

9th - 12th Grade

10 Qs

Unit 4 #3

Unit 4 #3

Assessment

Quiz

Chemistry

12th Grade

Easy

Created by

Clifford Buckles

Used 9+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A student has a data file containing 10,000 numerical values. The student is writing a program to compute the average of the numbers contained in the file. Which of the following procedures is most likely to be useful in the student’s program?

A procedure that returns the quotient when dividing one value by another

A procedure that returns the sum when adding one value to another

A procedure that returns the sum of the values in the file

A procedure that returns true if the file contains any duplicate values and returns false otherwise

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following procedures would be most useful as part of a program to determine whether a word appears in two different text files?

A procedure getWords, which takes a positive integer n and a text file as input and returns the first n words in the text file.

A procedure isFound, which takes a word and a text file as input and returns true if the word appears in the text file

A procedure textMatch, which takes two text files as input and returns true if the two text files are identical.

A procedure sameSize, which takes two text files as input and returns true if the two text files contain the same number of words.

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

A school library allows students to borrow laptops. A computer program is used to count the number of times a particular laptop has been borrowed from the library  and the number of times the same laptop has been returned to the library . Which of the following indicate that a particular laptop is not currently borrowed?

Select two answers.

The difference between borrows and

returns is zero.

The product of borrows and returns is a positive even number.

The quotient when borrows is divided by returns is greater than 1.

The sum of borrows and returns is a positive even number.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An application program interface (API) provides a procedure Max, which returns the greater of its two integer arguments.

A programmer would like to find the greatest of three integer values , , and . Which of the following expressions will produce the desired result in every case?

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A programmer notices the following two procedures in a library. The procedures do similar, but not identical, things.

  • Procedure Square (n) returns the value n^2.

  • Procedure Cube (n) returns the value n^3.

Which of the following procedures is a generalization of the procedures described above?

Media Image
Media Image
Media Image
Media Image

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following procedure is intended to return true if the list of numbers myList contains only positive numbers and is intended to return false otherwise. The procedure does not work as intended.

PROCEDURE allPositive(myList)

{

index ← 1

len ← LENGTH(myList)

REPEAT len TIMES

{

IF(myList[index] > 0)

{

RETURN(true)

}

index ← index + 1

}

RETURN(false)

}

For which of the following contents of myList does the procedure NOT return the intended result?

[-3, -2, -1]

[-2, -1, 0]

[-1, 0, 1]

[1, 2, 3]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A programmer notices the following two procedures in a library. The procedures do similar, but not identical, things.

  • Procedure MaxTwo (x, y) returns the greater of its two integer parameters.

  • Procedure MaxThree (x, y, z) returns the greatest of its three integer parameters.

Which of the following procedures is a generalization of the MaxTwo and MaxThree procedures?

Procedure Min (x, y), which returns the lesser of its two integer parameters

Procedure Max (numList), which returns the maximum value in the list of integers numList

Procedure MaxFour (w, x, y, z), which returns the greatest of its four integer parameters

Procedure OverMax (numList, max), which returns the number of integers in numList that exceed the integer value max

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?