Computer Science : Computer Science

Study concepts, example questions & explanations for Computer Science

varsity tutors app store varsity tutors android store

Example Questions

1 2 24 25 26 27 28 29 30 32 Next →

Example Question #1 : Choosing Appropriate Data Structures

CHOOSING LOOPS

Imagine that I want to write a code for a bank that asks a user whether he/she wants to make a withdrawal, make a deposit, or quit. What type of loop would be best to use in order to make sure the user is able to do as many transactions as they want until they press quit to end the program?

Possible Answers:

A while loop.

A do-while loop.

An infinite loop.

A for loop.

Correct answer:

A do-while loop.

Explanation:

In our problem, the program has to run AT LEAST ONCE in order to present all of the options to the user. Because of this reason, the best option is a do-while loop because the statements within that loop execute at least one time and the condition to get out of the loop is at the end. In this case, the exit condition would be if the user presses quit (after the options have been shown at least once).

 

A while loop might work in this case; however it is not necessarily the smartest option. This is because the condition is tested before anything is executed within the loop. This means that whatever is inside the while loop does not necessarily have to be executed at all.

 

A for loop is also not a good option for this problem because a for loop is executed a set amount of times. In this case, we don't know if the user is going to want to do 1 transaction or 10. Therefore, a for loop is not the best choice.

 

An infinite loop is also not what we want because it runs forever. In our case, we want the code to stop prompting the user and end after "quit."

Example Question #1 : Choosing Appropriate Data Structures

USING POINTERS

Study the following pseudocode. 

 

int * var1;

int foo = 63;

var1 = &foo;

var2 = *var1;

 

What are the values of var1 and var2?

Possible Answers:

var1  is assigned a value of 63

var2  is assigned a value off 63

var1  is assigned a value of 63

var2 is assigned the memory address value of var1

var1 is assigned the memory address value of foo.

var2 is assigned a value of 63

var1 is assigned the memory address value of foo

var2 is assigned the memory address value of var1

Correct answer:

var1 is assigned the memory address value of foo.

var2 is assigned a value of 63

Explanation:

Pointers store the address of another variable. Pointers are declared by naming the type, then an asterisk, followed by the name of the variable. In our example, var1 was declared a pointer that points to an integer:

int * var1;

Next in the code, we see that an integer variable named "foo" is created and is assigned a value of 63.

The address-of operator (&) is then used to get the address of a variable. Now lets take a look at the next line of the code:

 var1 = &foo;

Here the ampersand is used to get the address of foo within memory. This means that var1 contains the address value of where foo is stored in memory.

Next in the code, we have the following statement:

var2 = *var1;

Here the dereference operator (*) is being used. This operator is used whenever we want to get the value (not the address) of the variable that a pointer is pointing to. In this case, var1 is storing the address of foo. However, by using the dereference operator we can get the actual value of the variable whose address is being stored in var1. In this case, dereferencing var1, we get the actual value of foo which is 63. Therefore, var2 = 63.

Example Question #311 : Computer Science

TWO DIMENSIONAL ARRAYS

Given the following initialized array:

 

int fourth;

int[][] myArray = { {1, 2, 3},

                                {4, 5, 6},

                                {7, 8, 9} };

 

Using myArray, how can I store in variable "fourth", the number 4?

Possible Answers:

fourth = myArray[1][1];

fourth = myArray[0][1];

fourth = myArray[2][1];

fourth = myArray[1][0];

Correct answer:

fourth = myArray[1][0];

Explanation:

When a two dimensional array is created and initialized, the way to access the items inside the matrix is by calling the array with the row and column (i.e. myArray[ROW][COLUMN]). Keeping in mind that arrays start at 0, the number four would be in row 1, column 0. Therefore to save that number into the variable "fourth" we'll do the following:

fourth = myArray[1][0];

 

*Note: myArray[1][0] is not the same as myArray[0][1].

myArray[1][0] =4 because it is the item located at row=1 and column = 0. 

myArray[0][1] =12 because it is the item located at row=0 and column = 1. 

Example Question #2 : Program Design

What would be the best data structure for a library? The data is in the form of a title and a number of copies of the title. 

Possible Answers:

Array

ArrayList

Hash map

Static values

Correct answer:

Hash map

Explanation:

Hash map - key being title and value being the number of copies

Hash maps are a collection of (key, value) pairs.

Hash maps have O(1) access, so this would be the quickest and best way to store the data. 

Example Question #101 : Standard Data Structures

True or False.

 

The best data structure to represent a set of keys and values is an array. 

Possible Answers:

False

True

Correct answer:

False

Explanation:

Arrays can be two-dimensional. However, when trying to keep track of keys and values it can become complicated when using an array. HashMaps are the best way to represent data containing keys and values. 

Example Question #1 : Choosing Appropriate Data Structures

What is not a feature of the Java programming language?

Possible Answers:

Compile time error checking

Object Oriented Programming

Ability to write functions without making them class methods

primitive data types such as int, boolean and double

Garbage Collection

Correct answer:

Ability to write functions without making them class methods

Explanation:

In Java, the only way to write functions is to make them class methods. Java does have primitive types int, boolean double. There is compile time error checking. Java is an Object Oriented langauge and supports the OO paradigm. There is automatic garbage collection support, which helps manage memory for the user.

1 2 24 25 26 27 28 29 30 32 Next →
Learning Tools by Varsity Tutors