Deck 8: Arrays

ملء الشاشة (f)
exit full mode
سؤال
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 2 4 6 8 10 B) 4 3 2 1 0 C) 8 6 4 2 0 D) 10 8 6 4 2 <div style=padding-top: 35px>

A) 2 4 6 8 10
B) 4 3 2 1 0
C) 8 6 4 2 0
D) 10 8 6 4 2
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
The one place where C++ allows aggregate operations on arrays is the input and output of C-strings.
سؤال
Suppose list is a one dimensional array of size 25, wherein each component is of type int.Further, suppose that sum is an int variable.The following for loop correctly finds the sum of the elements of list.
Suppose list is a one dimensional array of size 25, wherein each component is of type int.Further, suppose that sum is an int variable.The following for loop correctly finds the sum of the elements of list.  <div style=padding-top: 35px>
سؤال
When you pass an array as a parameter, the base address of the actual array is passed to the formal parameter.
سؤال
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 0 5 10 15 20 B) 5 10 15 20 0 C) 5 10 15 20 20 D) Code results in index out-of-bounds <div style=padding-top: 35px>

A) 0 5 10 15 20
B) 5 10 15 20 0
C) 5 10 15 20 20
D) Code results in index out-of-bounds
سؤال
Assume you have the following declaration char nameList[100];.Which of the following ranges is valid for the index of the array nameList?

A) 0 through 99
B) 0 through 100
C) 1 through 100
D) 1 through 101
سؤال
Assume you have the following declaration double salesData[1000];.Which of the following ranges is valid for the index of the array salesData?

A) 0 through 999
B) 0 through 1000
C) 1 through 1001
D) 1 through 1000
سؤال
If an array index goes out of bounds, the program always terminates in an error.
سؤال
The statement int list[25]; declares list to be an array of 26 components, since the array index starts at 0.
سؤال
Assume you have the following declaration int beta[50];.Which of the following is a valid element of beta?

A) beta['2']
B) beta['50']
C) beta[0]
D) beta[50]
سؤال
All components of an array are of the same data type.
سؤال
In a two-dimensional array, the elements are arranged in a table form.
سؤال
Given the declaration int list[20]; the statement list[12] = list[5] + list[7]; updates the content of the twelfth component of the array list.
سؤال
What is the value of alpha[2] after the following code executes? <strong>What is the value of alpha[2] after the following code executes?  </strong> A) 1 B) 4 C) 5 D) 6 <div style=padding-top: 35px>

A) 1
B) 4
C) 5
D) 6
سؤال
Arrays can be passed as parameters to a function by value, but it is faster to pass them by reference.
سؤال
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 0 1 2 3 4 B) 0 5 10 15 C) 0 5 10 15 20 D) 5 10 15 20 <div style=padding-top: 35px>

A) 0 1 2 3 4
B) 0 5 10 15
C) 0 5 10 15 20
D) 5 10 15 20
سؤال
Which of the following statements declares alpha to be an array of 25 components of the type int?

A) int alpha[25];
B) int array alpha[25];
C) int alpha[2][5];
D) int array alpha[25][25];
سؤال
Suppose that sales is an array of 50 components of type double.Which of the following correctly initializes the array sales?

A) for (int 1 = 1; j <= 49; j++)
Sales[j] = 0;
B) for (int j = 1; j <= 50; j++)
Sales[j] = 0;
C) for (int j = 0; j <= 49; j++)
Sales[j] = 0.0;
D) for (int j = 0; j <= 50; j++)
Sales[j] = 0.0;
سؤال
Suppose that list is an array of 10 components of type int.Which of the following codes correctly outputs all the elements of list?

A) for (int j = 1; j < 10; j++)
Cout << list[j] << " ";
Cout << endl;
B) for (int j = 0; j <= 9; j++)
Cout << list[j] << " ";
Cout << endl;
C) for (int j = 1; j < 11; j++)
Cout << list[j] << " ";
Cout << endl;
D) for (int j = 1; j <= 10; j++)
Cout << list[j] << " ";
Cout << endl;
سؤال
The array index can be any integer less than the array size.
سؤال
Consider the following statement: int alpha[25][10];.Which of the following statements about alpha is true?

A) Rows of alpha are numbered 0...24 and columns are numbered 0...9.
B) Rows of alpha are numbered 0...24 and columns are numbered 1...10.
C) Rows of alpha are numbered 1...24 and columns are numbered 0...9.
D) Rows of alpha are numbered 1...25 and columns are numbered 1...10.
سؤال
Which of the following correctly declares name to be a character array and stores "William" in it?

A) char name[6] = "William";
B) char name[7] = "William";
C) char name[8] = "William";
D) char name[8] = 'William';
سؤال
Consider the following declaration: int alpha[5] = {3, 5, 7, 9, 11};.Which of the following is equivalent to this statement?

A) int alpha[] = {3, 5, 7, 9, 11};
B) int alpha[] = {3 5 7 9 11};
C) int alpha[5] = [3, 5, 7, 9, 11];
D) int alpha[] = (3, 5, 7, 9, 11);
سؤال
Consider the following declaration:char charArray[51]; char discard;
Assume that the input is:Hello There!
How are you?
What is the value of discard after the following statements execute?
<strong>Consider the following declaration:char charArray[51]; char discard; Assume that the input is:Hello There! How are you? What is the value of discard after the following statements execute?  </strong> A) discard = ' ' (Space) B) discard = '!' C) discard = '\n' D) discard = '\0' <div style=padding-top: 35px>

A) discard = ' ' (Space)
B) discard = '!'
C) discard = '\n'
D) discard = '\0'
سؤال
Given the following declaration: <strong>Given the following declaration:   which of the following correctly finds the sum of the elements of the fifth row of sale?</strong> A) sum = 0; For(j = 0; j < 7; j++) Sum = sum + sale[5][j]; B) sum = 0; For(j = 0; j < 7; j++) Sum = sum + sale[4][j]; C) sum = 0; For(j = 0; j < 10; j++) Sum = sum + sale[5][j]; D) sum = 0; For(j = 0; j < 10; j++) Sum = sum + sale[4][j]; <div style=padding-top: 35px> which of the following correctly finds the sum of the elements of the fifth row of sale?

A) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[5][j];
B) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[4][j];
C) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[5][j];
D) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[4][j];
سؤال
Which of the following correctly declares and initializes alpha to be an array of four rows and three columns with the component type int?

A) int alpha[4][3] = {{0,1,2} {1,2,3} {2,3,4} {3,4,5}};
B) int alpha[4][3] = {0,1,2; 1,2,3; 2,3,4; 3,4,5};
C) int alpha[4][3] = {0,1,2: 1,2,3: 2,3,4: 3,4,5};
D) int alpha[4][3] = {{0,1,2}, {1,2,3}, {2,3,4}, {3,4,5}};
سؤال
Consider the following statement: double alpha[10][5];.The number of components of alpha is ____.

A) 15
B) 50
C) 100
D) 150
سؤال
The form of the for loop shown below is called a(n) ____________________ for loop.
for (dataType identifier : arrayName)
statements
سؤال
Consider the statement int list[10][8];.Which of the following about list is true?

A) list has 10 rows and 8 columns.
B) list has 8 rows and 10 columns.
C) list has a total of 18 components.
D) list has a total of 108 components.
سؤال
Suppose that gamma is an array of 50 components of type int and j is an int variable.Which of the following for loops sets the index of gamma out of bounds?

A) for (j = 0; j <= 49; j++)
Cout << gamma[j] << " ";
B) for (j = 1; j < 50; j++)
Cout << gamma[j] << " ";
C) for (j = 0; j <= 50; j++)
Cout << gamma[j] << " ";
D) for (j = 0; j <= 48; j++)
Cout << gamma[j] << " ";
سؤال
For a list of length n, the ____________________ sort makes exactly (n(n - 1))/2 key comparisons and 3(n - 1) item assignments.
سؤال
In C++, the null character is represented as ____.

A) '\0'
B) "\0"
C) '0'
D) "0"
سؤال
A collection of a fixed number of elements (called components) arranged in n dimensions (n >= 1) is called a(n) ____.

A) matrix
B) vector
C) n-dimensional array
D) parallel array
سؤال
Given the following declaration:int j; int sum;
Double sale[10][7];
Which of the following correctly finds the sum of the elements of the fourth column of sale?

A) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][3];
B) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][4];
C) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][4];
D) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][3];
سؤال
In row order form, the ____.

A) first row is stored first
B) first row is stored last
C) first column is stored first
D) first column is stored last
سؤال
After the following statements execute, what are the contents of matrix? <strong>After the following statements execute, what are the contents of matrix?  </strong> A) 0 0 1 1 2 2 B) 0 1 2 3 4 5 C) 0 1 1 2 2 3 D) 1 1 2 2 3 3 <div style=padding-top: 35px>

A) 0 0
1 1
2 2
B) 0 1
2 3
4 5
C) 0 1
1 2
2 3
D) 1 1
2 2
3 3
سؤال
Consider the following declaration: char str[15];.Which of the following statements stores "Blue Sky" into str?

A) str = "Blue Sky";
B) str[15] = "Blue Sky";
C) strcpy(str, "Blue Sky");
D) strcpy("Blue Sky");
سؤال
In a(n) ____________________ data type, each data item is a collection of other data items.
سؤال
The word ____________________ is used before the array declaration in a function heading to prevent the function from modifying the array.
سؤال
The ____________________ of an array is the address (that is, the memory location) of the first array component.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/40
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 8: Arrays
1
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 2 4 6 8 10 B) 4 3 2 1 0 C) 8 6 4 2 0 D) 10 8 6 4 2

A) 2 4 6 8 10
B) 4 3 2 1 0
C) 8 6 4 2 0
D) 10 8 6 4 2
D
2
The one place where C++ allows aggregate operations on arrays is the input and output of C-strings.
True
3
Suppose list is a one dimensional array of size 25, wherein each component is of type int.Further, suppose that sum is an int variable.The following for loop correctly finds the sum of the elements of list.
Suppose list is a one dimensional array of size 25, wherein each component is of type int.Further, suppose that sum is an int variable.The following for loop correctly finds the sum of the elements of list.
False
4
When you pass an array as a parameter, the base address of the actual array is passed to the formal parameter.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
5
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 0 5 10 15 20 B) 5 10 15 20 0 C) 5 10 15 20 20 D) Code results in index out-of-bounds

A) 0 5 10 15 20
B) 5 10 15 20 0
C) 5 10 15 20 20
D) Code results in index out-of-bounds
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
6
Assume you have the following declaration char nameList[100];.Which of the following ranges is valid for the index of the array nameList?

A) 0 through 99
B) 0 through 100
C) 1 through 100
D) 1 through 101
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
7
Assume you have the following declaration double salesData[1000];.Which of the following ranges is valid for the index of the array salesData?

A) 0 through 999
B) 0 through 1000
C) 1 through 1001
D) 1 through 1000
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
8
If an array index goes out of bounds, the program always terminates in an error.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
9
The statement int list[25]; declares list to be an array of 26 components, since the array index starts at 0.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
10
Assume you have the following declaration int beta[50];.Which of the following is a valid element of beta?

A) beta['2']
B) beta['50']
C) beta[0]
D) beta[50]
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
11
All components of an array are of the same data type.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
12
In a two-dimensional array, the elements are arranged in a table form.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
13
Given the declaration int list[20]; the statement list[12] = list[5] + list[7]; updates the content of the twelfth component of the array list.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
14
What is the value of alpha[2] after the following code executes? <strong>What is the value of alpha[2] after the following code executes?  </strong> A) 1 B) 4 C) 5 D) 6

A) 1
B) 4
C) 5
D) 6
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
15
Arrays can be passed as parameters to a function by value, but it is faster to pass them by reference.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
16
What is the output of the following C++ code? <strong>What is the output of the following C++ code?  </strong> A) 0 1 2 3 4 B) 0 5 10 15 C) 0 5 10 15 20 D) 5 10 15 20

A) 0 1 2 3 4
B) 0 5 10 15
C) 0 5 10 15 20
D) 5 10 15 20
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
17
Which of the following statements declares alpha to be an array of 25 components of the type int?

A) int alpha[25];
B) int array alpha[25];
C) int alpha[2][5];
D) int array alpha[25][25];
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
18
Suppose that sales is an array of 50 components of type double.Which of the following correctly initializes the array sales?

A) for (int 1 = 1; j <= 49; j++)
Sales[j] = 0;
B) for (int j = 1; j <= 50; j++)
Sales[j] = 0;
C) for (int j = 0; j <= 49; j++)
Sales[j] = 0.0;
D) for (int j = 0; j <= 50; j++)
Sales[j] = 0.0;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
19
Suppose that list is an array of 10 components of type int.Which of the following codes correctly outputs all the elements of list?

A) for (int j = 1; j < 10; j++)
Cout << list[j] << " ";
Cout << endl;
B) for (int j = 0; j <= 9; j++)
Cout << list[j] << " ";
Cout << endl;
C) for (int j = 1; j < 11; j++)
Cout << list[j] << " ";
Cout << endl;
D) for (int j = 1; j <= 10; j++)
Cout << list[j] << " ";
Cout << endl;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
20
The array index can be any integer less than the array size.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
21
Consider the following statement: int alpha[25][10];.Which of the following statements about alpha is true?

A) Rows of alpha are numbered 0...24 and columns are numbered 0...9.
B) Rows of alpha are numbered 0...24 and columns are numbered 1...10.
C) Rows of alpha are numbered 1...24 and columns are numbered 0...9.
D) Rows of alpha are numbered 1...25 and columns are numbered 1...10.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
22
Which of the following correctly declares name to be a character array and stores "William" in it?

A) char name[6] = "William";
B) char name[7] = "William";
C) char name[8] = "William";
D) char name[8] = 'William';
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
23
Consider the following declaration: int alpha[5] = {3, 5, 7, 9, 11};.Which of the following is equivalent to this statement?

A) int alpha[] = {3, 5, 7, 9, 11};
B) int alpha[] = {3 5 7 9 11};
C) int alpha[5] = [3, 5, 7, 9, 11];
D) int alpha[] = (3, 5, 7, 9, 11);
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
24
Consider the following declaration:char charArray[51]; char discard;
Assume that the input is:Hello There!
How are you?
What is the value of discard after the following statements execute?
<strong>Consider the following declaration:char charArray[51]; char discard; Assume that the input is:Hello There! How are you? What is the value of discard after the following statements execute?  </strong> A) discard = ' ' (Space) B) discard = '!' C) discard = '\n' D) discard = '\0'

A) discard = ' ' (Space)
B) discard = '!'
C) discard = '\n'
D) discard = '\0'
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
25
Given the following declaration: <strong>Given the following declaration:   which of the following correctly finds the sum of the elements of the fifth row of sale?</strong> A) sum = 0; For(j = 0; j < 7; j++) Sum = sum + sale[5][j]; B) sum = 0; For(j = 0; j < 7; j++) Sum = sum + sale[4][j]; C) sum = 0; For(j = 0; j < 10; j++) Sum = sum + sale[5][j]; D) sum = 0; For(j = 0; j < 10; j++) Sum = sum + sale[4][j]; which of the following correctly finds the sum of the elements of the fifth row of sale?

A) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[5][j];
B) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[4][j];
C) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[5][j];
D) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[4][j];
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
26
Which of the following correctly declares and initializes alpha to be an array of four rows and three columns with the component type int?

A) int alpha[4][3] = {{0,1,2} {1,2,3} {2,3,4} {3,4,5}};
B) int alpha[4][3] = {0,1,2; 1,2,3; 2,3,4; 3,4,5};
C) int alpha[4][3] = {0,1,2: 1,2,3: 2,3,4: 3,4,5};
D) int alpha[4][3] = {{0,1,2}, {1,2,3}, {2,3,4}, {3,4,5}};
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
27
Consider the following statement: double alpha[10][5];.The number of components of alpha is ____.

A) 15
B) 50
C) 100
D) 150
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
28
The form of the for loop shown below is called a(n) ____________________ for loop.
for (dataType identifier : arrayName)
statements
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
29
Consider the statement int list[10][8];.Which of the following about list is true?

A) list has 10 rows and 8 columns.
B) list has 8 rows and 10 columns.
C) list has a total of 18 components.
D) list has a total of 108 components.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
30
Suppose that gamma is an array of 50 components of type int and j is an int variable.Which of the following for loops sets the index of gamma out of bounds?

A) for (j = 0; j <= 49; j++)
Cout << gamma[j] << " ";
B) for (j = 1; j < 50; j++)
Cout << gamma[j] << " ";
C) for (j = 0; j <= 50; j++)
Cout << gamma[j] << " ";
D) for (j = 0; j <= 48; j++)
Cout << gamma[j] << " ";
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
31
For a list of length n, the ____________________ sort makes exactly (n(n - 1))/2 key comparisons and 3(n - 1) item assignments.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
32
In C++, the null character is represented as ____.

A) '\0'
B) "\0"
C) '0'
D) "0"
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
33
A collection of a fixed number of elements (called components) arranged in n dimensions (n >= 1) is called a(n) ____.

A) matrix
B) vector
C) n-dimensional array
D) parallel array
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
34
Given the following declaration:int j; int sum;
Double sale[10][7];
Which of the following correctly finds the sum of the elements of the fourth column of sale?

A) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][3];
B) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][4];
C) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][4];
D) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][3];
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
35
In row order form, the ____.

A) first row is stored first
B) first row is stored last
C) first column is stored first
D) first column is stored last
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
36
After the following statements execute, what are the contents of matrix? <strong>After the following statements execute, what are the contents of matrix?  </strong> A) 0 0 1 1 2 2 B) 0 1 2 3 4 5 C) 0 1 1 2 2 3 D) 1 1 2 2 3 3

A) 0 0
1 1
2 2
B) 0 1
2 3
4 5
C) 0 1
1 2
2 3
D) 1 1
2 2
3 3
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
37
Consider the following declaration: char str[15];.Which of the following statements stores "Blue Sky" into str?

A) str = "Blue Sky";
B) str[15] = "Blue Sky";
C) strcpy(str, "Blue Sky");
D) strcpy("Blue Sky");
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
38
In a(n) ____________________ data type, each data item is a collection of other data items.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
39
The word ____________________ is used before the array declaration in a function heading to prevent the function from modifying the array.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
40
The ____________________ of an array is the address (that is, the memory location) of the first array component.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 40 في هذه المجموعة.