Question 1 What escape sequence represents the null terminator? a. \\0 b. nullpt
ID: 3755625 • Letter: Q
Question
Question 1 What escape sequence represents the null terminator? a. b. nullptr c. d. 10 points
Question 2 What is the last legal subscript that can be used with the following array? int array[5]; 5 0 4 1 10 points
Question 3 Given: int array[10] = {1}; cout << array[4] << endl; Will it print out the value of 1? True False 5 points
Question 4 An array of string objects to hold 5 names would be declared using which statement? a. string names(5); b. String[5] names; c. None of these d. strings names5; e. string names[5]; 10 points
Question 5 The individual values contained in an array are know as _____________________ constants parts elements numbers 10 points
Question 6 To access an array element, use the array name and the element's _____________________ data type value name subscript 10 points
Question 7 Subscript numbering in C++ __________________________ begins with zero can be set at runtime can begin with a programmer-defined value varies from program to program 10 points
Question 8 A C++ array is automatically initialized to the value of zero? True False 5 points
Question 9 What function can be used to determine if a character is a punctuation character? a. isdigit b. ispunct c. ischar d. isnum 10 points
Question 10 What is the first legal subscript that can be used with the following arrary? double array1[10]; a. None of these b. 0 c. 10 d. 1 e. 9 10 points
Question 11 What include file do you need to include to use C++ style strings? a. str b. cstr c. string d. cstring
Explanation / Answer
Question 1 What escape sequence represents the null terminator?
Answer:Option: a.
What is the last legal subscript that can be used with the following array? int values[5];
Answer:Option:b) 4
Question 3 Given: int array[10] = {1}; cout << array[4] << endl; Will it print out the value of 1?
Answer: False
Explanation:
#include <iostream>
using namespace std;
int main() {
int array[10] = {1};
cout << array[4] << endl;
}
Output: 0
Question 4 An array of string objects to hold 5 names would be declared using which statement?
Answer:Option:e. string names[5];
Question 5 The individual values contained in an array are know as _____________________ constants parts elements numbers
Answer: Elements
Question 6 To access an array element, use the array name and the element's _____________________ data type value name subscript
Answer: subscript
Question 7 Subscript numbering in C++ __________________________ begins with zero can be set at runtime can begin with a programmer-defined value varies from program to program
Answer:begins with zero
Question 8 A C++ array is automatically initialized to the value of zero?
Answer:True
Question 9 What function can be used to determine if a character is a punctuation character?
Answer:Option:b. ispunct
Explanation: ispunct(ch) It Returns true if ch is a punctuation character
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.