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 ث
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 (×)