Test 2

Test 2

University

49 Qs

quiz-placeholder

Similar activities

Test 4

Test 4

University

50 Qs

quiz oop [encapsulation, inherit, interface, abstract]

quiz oop [encapsulation, inherit, interface, abstract]

University

50 Qs

Kiến thức về xử lý mảng 1 chiều trong C++

Kiến thức về xử lý mảng 1 chiều trong C++

University

50 Qs

Python Programming - I B.Sc CS quiz

Python Programming - I B.Sc CS quiz

University

50 Qs

ict 1-50

ict 1-50

University

50 Qs

Part 1 CAD:PRELIMENARY EXAMINATION

Part 1 CAD:PRELIMENARY EXAMINATION

University

45 Qs

PHP Basics

PHP Basics

University

54 Qs

CC 101 Final Exam

CC 101 Final Exam

University

50 Qs

Test 2

Test 2

Assessment

Quiz

Computers

University

Practice Problem

Easy

Created by

Gabe Vandzura

Used 8+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

49 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is this a valid array definition?
int table[5] = {2,45};

T

F

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When an array name is used without brackets and subscript, it is seen as the value of the first element in the array.

T

F

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. Array - tableA 

  5          9             11          2               1             4
 
Array - tableB 

  5          9             11          2               1             4
 
If (tableA == tableB)
    cout <<"Both arrays are identical";
Will the above if statement display - "Both arrays are identical"?

T

F

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. int item[5] = {2, 4, 6, 8, 10};
    int *itemPtr = item + 1;       <==== Is this valid?

T

F

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. int score[5]= {60, 70, 80, 90, 100};
    int tempScore[5];
    The statement below will copy all the items in the array score into the array tempScore.
                                    tempScore = score;

T

F

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. int score[3] = {60, 70, 80};
    Using the above declaration, the cout statement below will display all the items in the array score.
                            cout << score ;

T

F

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. Assuming  teamScore is an array of  int values and  count is an int variable, both the following statements will do the same action.
    1.        cout << teamScore[count] << endl;
    2.        cout << *(teamScore + count) << endl;

T

F

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?