select the best choice among all :
Q. What will be the output?
int x = 0, y = 1, sum = 0, n = 5; for (int i = 0; i < n; i++) { sum = x + y; x = y; y = sum; cout << sum << " "; }
Q. What will be the output?
int x = 0, y = 1, sum = 0, n = 5; for (int i = 0; i < n; i++) { sum = x + y; x = y; y = sum; cout << sum << " "; }
Anonymous Quiz
58%
A) 1 2 3 5 8
29%
B) 1 1 2 3 5
6%
C) 2 3 5 8 13
6%
D) 1 3 5 8 13
select the best choice among all :
Q. What will be the output?
int num = 123; int sum = 0; while (num > 0) { sum += num % 10; num /= 10; } cout << "Sum of digits: " << sum << endl;
Q. What will be the output?
int num = 123; int sum = 0; while (num > 0) { sum += num % 10; num /= 10; } cout << "Sum of digits: " << sum << endl;
Anonymous Quiz
46%
A) Sum of digits: 6
15%
B) Sum of digits: 5
8%
C) Sum of digits: 4
31%
D) Sum of digits: 3
select the best choice among all :
Q) What will be the output?
int num = 1234; int rev = 0; while (num != 0) { int remainder = num % 10; rev = rev * 10 + remainder; num /= 10; } cout << "Reversed Number: " << rev << endl;
Q) What will be the output?
int num = 1234; int rev = 0; while (num != 0) { int remainder = num % 10; rev = rev * 10 + remainder; num /= 10; } cout << "Reversed Number: " << rev << endl;
Anonymous Quiz
64%
A) Reversed Number: 4321
24%
B) Reversed Number: 1234
6%
C) Reversed Number: 3412
6%
D) Reversed Number: 4123
👍1
select the best choice among all :
Q) What will be the output?
int i = 1, j = 5; while (i < j) { i++; j--; } cout << "i: " << i << ", j: " << j << endl;
Q) What will be the output?
int i = 1, j = 5; while (i < j) { i++; j--; } cout << "i: " << i << ", j: " << j << endl;
Anonymous Quiz
13%
A) i: 5, j: 5
46%
B) i: 3, j: 3
19%
C) i: 4, j: 2
22%
D) i: 1, j: 5
select the best choice among all :
in the last program in image
8. What will be the output?
in the last program in image
8. What will be the output?
Anonymous Quiz
45%
A) 153 is an Armstrong number.
32%
B) 153 is not an Armstrong number.
20%
C) Error
3%
D) 153
🎲 اختبار 'إختبار أساسيات برمجة بإستخدام سي بلس بلس'
إختبار أساسيات برمجة بإستخدام سي بلس بلس. 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) C++ is a low-level programming language.
Q) C++ is a low-level programming language.
Anonymous Quiz
24%
True (√)
76%
False (×)
❤1
true or false (√ or ×)
Q) A programming language's syntax does not need to follow any predefined rules.
Q) A programming language's syntax does not need to follow any predefined rules.
Anonymous Quiz
19%
True (√)
81%
False (×)
true or false (√ or ×)
Q) In the C++ language, a program typically starts with the main function.
Q) In the C++ language, a program typically starts with the main function.
Anonymous Quiz
79%
True (√)
21%
False (×)
🔥1
true or false (√ or ×)
Q) The assembly language uses binary code to replace machine language instructions.
Q) The assembly language uses binary code to replace machine language instructions.
Anonymous Quiz
57%
True (√)
43%
False (×)
true or false (√ or ×)
Q) Translators like assemblers and compilers are necessary to run programs on computers.
Q) Translators like assemblers and compilers are necessary to run programs on computers.
Anonymous Quiz
89%
True (√)
11%
False (×)
select the best choice among all :
Q) What does the following code print?
int a = 5; cout << ++a;
Q) What does the following code print?
int a = 5; cout << ++a;
Anonymous Quiz
5%
A) 4
18%
B) 5
77%
C) 6
Q) What the output?
int n = 10;
int prev = 0, current = 1, next; cout << "Fibonacci sequence: "<< prev << " " << current << " "; for(int i = 1; i <= n - 2; ++i) { next = prev + current; cout << next << " "; prev = current; current = next;}
int n = 10;
int prev = 0, current = 1, next; cout << "Fibonacci sequence: "<< prev << " " << current << " "; for(int i = 1; i <= n - 2; ++i) { next = prev + current; cout << next << " "; prev = current; current = next;}
Anonymous Quiz
47%
A) Fibonacci sequence: 0 1 1 2 3 5 8 13 21 34
22%
B) Fibonacci sequence: 0 1 1 2 3 5 8 13 21 33
24%
C) Fibonacci sequence: 0 1 2 3 5 8 13 21 34
7%
D) Fibonacci sequence: 0 1 1 3 6 10 15 21 28
👎6❤1
select the best choice among all :
Q) What does the following code print?
int n = 100, sum = 0, i = 1; do { sum += i; i++; } while (i <= n); cout << "Sum of numbers from 1 to " << n << " is " << sum << endl;
Q) What does the following code print?
int n = 100, sum = 0, i = 1; do { sum += i; i++; } while (i <= n); cout << "Sum of numbers from 1 to " << n << " is " << sum << endl;
Anonymous Quiz
16%
A) Sum of numbers from 1 to 100 is 5000
65%
B) Sum of numbers from 1 to 100 is 5050
10%
C) Sum of numbers from 1 to 100 is 505
9%
D) Sum of numbers from 1 to 100 is 2500
Q) What the output?
int number = 6;
int sum = 0; for (int i = 1; i < number; ++i) { if (number % i == 0) { sum += i; }} if (sum == number) cout << number << " is perfect." << endl; else cout << number << " is not perfect." << endl;
int number = 6;
int sum = 0; for (int i = 1; i < number; ++i) { if (number % i == 0) { sum += i; }} if (sum == number) cout << number << " is perfect." << endl; else cout << number << " is not perfect." << endl;
Anonymous Quiz
56%
A) 6 is a perfect.
25%
B) 6 is not a perfect.
15%
C) Error
5%
D) 0
select the best choice among all :
Q) What does the following code print?
int num = 9; int i = 1; while (i <= 10) { cout << num << " x " << i << " = " << num * i << endl; i++; }
Q) What does the following code print?
int num = 9; int i = 1; while (i <= 10) { cout << num << " x " << i << " = " << num * i << endl; i++; }
Anonymous Quiz
9%
A) Multiplication table of 5 up to 10
57%
B) Multiplication table of 9 up to 10
9%
C) Multiplication table of 10 up to 9
25%
D) Nothing
Q) What does the following code print?
int n = 5;
int factorial = 1; int i = 1; while (i <n) { factorial *= i; i++; } cout << "Factorial of " << n << " is " << factorial << endl;
int n = 5;
int factorial = 1; int i = 1; while (i <n) { factorial *= i; i++; } cout << "Factorial of " << n << " is " << factorial << endl;
Anonymous Quiz
17%
A) Factorial of 5 is 5
38%
B) Factorial of 5 is 120
10%
C) Factorial of 5 is 60
36%
D) Factorial of 5 is 24
select the best choice among all :
Q) What does the last code (in image) print?
Q) What does the last code (in image) print?
Anonymous Quiz
52%
A) 12321 is a palindrome.
16%
B) 12321 is not a palindrome.
24%
C) Error
8%
D) 321
🎲 اختبار 'إختبار أساسيات برمجة بإستخدام سي بلس بلس 2️⃣'
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 12 سؤالًا · ⏱ 45 ث
إختبار أساسيات برمجة بإستخدام سي بلس بلس. Eng. Hazem F. Al-Huthaifi قناة علوم البيانات : @Computer_DS_1 التعليم لمن اراد والشهادة للجميع
🖊 12 سؤالًا · ⏱ 45 ث