Computer Science : Primitive Data Types

Study concepts, example questions & explanations for Computer Science

varsity tutors app store varsity tutors android store

Example Questions

1 2 3 4 5 7 Next →

Example Question #11 : Evaluating Boolean Expressions

Which is true?

 

a = 4

b = 2

c = 5

d = 6

 

a) a = c - d 

b) a = b - d

c) a = d - b

d) a = c * d

Possible Answers:

d)

c)

a)

b)

Correct answer:

c)

Explanation:

c) is the correct choice because a = 6 - 2 since d = 6 and b = 2. Substitute the numbers for the variables in each answer choice. You will see that all of the answer choices are not equal to 4 except for c).

Example Question #61 : Standard Data Structures

True or False.

 

This code snippet returns an error.

 

String s1 = "foo";

String s2 = "foo";

return s1 == s2;

Possible Answers:

True

False

Correct answer:

False

Explanation:

While the code snippet doesn't return an error, it also doesn't return the answer that you want. Testing string equality requires the method String.equals(). This code snippet uses == to compare two strings. == is a pointer equality function. To get the expected answer (true), the code should return s1.equals(s2).

Example Question #12 : Evaluating Boolean Expressions

Which of the following Boolean expression evalutes to True?

 

I. False && False && False && True && False 

II. (False && False) || (True || False) || (False && (True || False))

III. (True && False) && (True || False || (True && True))

IV. !(True && True && False)

V. False || False || False || True || False

Possible Answers:

I, IV, V

IV, V

IV

III, IV, V, 

II, IV, V

Correct answer:

II, IV, V

Explanation:

Answer: II, IV, V

The best way to approach this problem is to divide each conditional into chunks. Then, if there is at least one True in a long list of OR statements, the statement must be true according to Boolean Logic. Likewise, if there is at least one False in a long list of AND's, the statment must be False. For example

False && False && False && True evalulates to False

and

True || False || False ... evaluetes to True

Statement I evalutes to False because False and any number of And's must evaluate to false because False && X evalutes to False, regardless of the value of X.

 

Statement II evalutes to True because there is one True statement in a list of OR's that make the entire statement True.

Statement III evalutes to False for the same reason Statement I does.

Statement IV is true because although the conditionals in the parentheses are False, the ! (not) operator negates the False to True.

Statement V is true.

Example Question #61 : Primitive Data Types

What does the following code print?

int i = 3;

int j = 4;

int k = 5;

int l = i * k - j; 

int m =  i*2 + j + k; 

if ( ( l > m ) || ( l * i ) = (m+m+i) )

   System.out.println("The statement proves true");

else

   System.out.println("The statement proves false");

Possible Answers:

Runtime Error

The statement proves true.

The statement proves false.

Compiler Error

Correct answer:

Compiler Error

Explanation:

In the second condition, it is not a statement of equivalence but a statement of assignment. This would cause it to have a runtime error. If it was to be a == instead of =, the statement would be true.

1 2 3 4 5 7 Next →
Learning Tools by Varsity Tutors