🎲 اختبار 'إختبار أساسيات برمجة بإستخدام سي بلس بلس 2️⃣'
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 12 سؤالًا · ⏱ 45 ث
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 12 سؤالًا · ⏱ 45 ث
true or false (√ or ×)
Q) High-level languages require programmers to concentrate on hardware details.
Q) High-level languages require programmers to concentrate on hardware details.
Anonymous Quiz
60%
True (√)
40%
False (×)
🥰1
true or false (√ or ×)
Q) A computer program consists of a set of ordered instructions.
Q) A computer program consists of a set of ordered instructions.
Anonymous Quiz
92%
True (√)
8%
False (×)
true or false (√ or ×)
Q) The output statement in C++ uses is cout.
Q) The output statement in C++ uses is cout.
Anonymous Quiz
93%
True (√)
7%
False (×)
true or false (√ or ×)
Q) The main() function is the starting point of a C++ program.
Q) The main() function is the starting point of a C++ program.
Anonymous Quiz
84%
True (√)
16%
False (×)
true or false (√ or ×)
Q) An interpreter translates and executes each line of the source program.
Q) An interpreter translates and executes each line of the source program.
Anonymous Quiz
83%
True (√)
18%
False (×)
select the best choice among all :
Q) What does the goto statement do?
Q) What does the goto statement do?
Anonymous Quiz
39%
A) Moves to the next iteration of a loop
40%
B) Transfers control to another part of the program
7%
C) Ends the program
14%
D) Skips over a specific line of code
select the best choice among all :
Q) In a for loop, which of the following is executed only once at the beginning?
Q) In a for loop, which of the following is executed only once at the beginning?
Anonymous Quiz
64%
A) Initialization
14%
B) Condition check
5%
C) Increment/Decrement
18%
D) Loop body
true or false (√ or ×)
Q) Which type of loop checks the condition before executing the loop body?
Q) Which type of loop checks the condition before executing the loop body?
Anonymous Quiz
25%
A) for-loop
37%
B) while-loop
22%
C) do-while loop
15%
D) All of the above
👎3
select the best choice among all :
Q)In C++, what is the correct syntax to declare a switch statement?
Q)In C++, what is the correct syntax to declare a switch statement?
Anonymous Quiz
78%
A) switch(variable) { case value: ... }
8%
B) switch { variable: ... }
11%
C) switch() { case value; ... }
3%
D) switch: { variable case value }
select the best choice among all :
Q) What is the size of a Boolean variable in C++?
Q) What is the size of a Boolean variable in C++?
Anonymous Quiz
27%
A) 1 bit
45%
B) 1 byte
18%
C) 4 bytes
10%
D) 2 bytes
select the best choice among all :
Q) What will be the output of the following?
int x = 3, y = 5; cout << x + y << endl;
Q) What will be the output of the following?
int x = 3, y = 5; cout << x + y << endl;
Anonymous Quiz
6%
A) 35
94%
B) 8
1%
C) 53
select the best choice among all :
Q) What will be the output of the following?
int a = 2, b = 3, result = 1, power = b; while (power != 0) { result *= a; power--; } cout << a << " raised to the power of " << b << " is: " << result << endl;
Q) What will be the output of the following?
int a = 2, b = 3, result = 1, power = b; while (power != 0) { result *= a; power--; } cout << a << " raised to the power of " << b << " is: " << result << endl;
Anonymous Quiz
25%
A) 2 raised to the power of 3 is: 6
49%
B) 2 raised to the power of 3 is: 8
13%
C) 2 raised to the power of 3 is: 9
12%
D) Error
select the best choice among all :
Q) What will be the output of the following?
int n = 5; int sum = 0; for (int i = 1; i <= n; i++) { sum += i * i; } cout << "Sum of squares from 1 to " << n << " is: " << sum << endl;
Q) What will be the output of the following?
int n = 5; int sum = 0; for (int i = 1; i <= n; i++) { sum += i * i; } cout << "Sum of squares from 1 to " << n << " is: " << sum << endl;
Anonymous Quiz
19%
A) Sum of squares from 1 to 5 is: 25
15%
B) Sum of squares from 1 to 5 is: 30
61%
C) Sum of squares from 1 to 5 is: 55
5%
D) Sum of squares from 1 to 5 is: 15
select the best choice among all :
Q) What will be the output of the following?
int n = 10, a = 0, b = 1, nextTerm; for (int i = 1; i <= n; ++i) { cout << a << " "; nextTerm = a + b; a = b; b = nextTerm; }
Q) What will be the output of the following?
int n = 10, a = 0, b = 1, nextTerm; for (int i = 1; i <= n; ++i) { cout << a << " "; nextTerm = a + b; a = b; b = nextTerm; }
Anonymous Quiz
53%
A) 0 1 1 2 3 5 8 13 21 34
20%
B) 1 1 2 3 5 8 13 21 34
22%
C) 1 2 3 5 8 13 21 34 55
5%
D) 1 2 4 8 16 32
select the best choice among all :
Q) What will be the output of the following?
int n = 10, sum = 0; for (int i = 1; i <= n; i++) { if (i % 2 == 0) sum += i; } cout << "Sum of even numbers between 1 and " << n << " is: " << sum << endl;
Q) What will be the output of the following?
int n = 10, sum = 0; for (int i = 1; i <= n; i++) { if (i % 2 == 0) sum += i; } cout << "Sum of even numbers between 1 and " << n << " is: " << sum << endl;
Anonymous Quiz
21%
A) Sum of even numbers between 1 and 10 is: 20
60%
B) Sum of even numbers between 1 and 10 is: 30
15%
C) Sum of even numbers between 1 and 10 is: 25
4%
D) Sum of even numbers between 1 and 10 is: 15
select the best choice among all :
Q) What will be the output of the following?
int n = 5, sum = 0; for (int i = 1; i < n; ++i) { sum += i * (i + 1); } cout << "Sum of products of consecutive integers from 1 to " << n << " is: " << sum << endl;
Q) What will be the output of the following?
int n = 5, sum = 0; for (int i = 1; i < n; ++i) { sum += i * (i + 1); } cout << "Sum of products of consecutive integers from 1 to " << n << " is: " << sum << endl;
Anonymous Quiz
34%
A) Sum of products of consecutive integers from 1 to 5 is: 55
11%
B) Sum of products of consecutive integers from 1 to 5 is: 45
48%
C) Sum of products of consecutive integers from 1 to 5 is: 40
6%
D) Sum of products of consecutive integers from 1 to 5 is: 35
🎲 اختبار 'إختبار أساسيات برمجة بإستخدام سي بلس بلس 3️⃣'
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 16 سؤالًا · ⏱ 45 ث
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 16 سؤالًا · ⏱ 45 ث
select the best choice among all :
Q) What's the following code output?
int numbers[5] = {10, 20, 30, 40, 50}; for (int i = 0; i < 5; i++) { if(i%2==0) numbers[i] - = 2; else numbers[i] += 5; numbers[i] *= 2; cout << numbers[i] << " "; }
Q) What's the following code output?
int numbers[5] = {10, 20, 30, 40, 50}; for (int i = 0; i < 5; i++) { if(i%2==0) numbers[i] - = 2; else numbers[i] += 5; numbers[i] *= 2; cout << numbers[i] << " "; }
Anonymous Quiz
27%
A) 16 46 56 80 110
15%
B) 16 50 58 90 98
42%
C)16 50 56 90 96
15%
D) 16 50 56 90 96 110
select the best choice among all :
Q) What does the following code output?
int arr[4] = {1, 3, 5, 7}; arr[3] = 10; for (int i = 1; i < 4; i++) { arr[i] *= 2; cout << arr[i] << " "; }
Q) What does the following code output?
int arr[4] = {1, 3, 5, 7}; arr[3] = 10; for (int i = 1; i < 4; i++) { arr[i] *= 2; cout << arr[i] << " "; }
Anonymous Quiz
17%
A) 1 3 5 7
18%
B) 1 6 10 20
22%
C) 1 6 10 14
43%
D) 6 10 20
select the best choice among all :
Q) What is the size of the following array?
int numbers[5] = {10, 20, 30, 40, 5}
Q) What is the size of the following array?
int numbers[5] = {10, 20, 30, 40, 5}
Anonymous Quiz
40%
A) 5 byte
45%
B) 20 byte
5%
C) 20 bit
10%
D) 5 bit