Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What will be the output of the following C++ program?
#include <stdio.h>
#include<iostream>
using namespace std;
int array1[] = {1200, 200, 2300, 1230, 1543};
int array2[] = {12, 14, 16, 18, 20};
int temp, result = 0;
int main()
{
for (temp = 0; temp < 5; temp++)
{
result += array1[temp];
}
for (temp = 0; temp < 4; temp++)
{
result += array2[temp];
}
cout << result;
return 0;
}
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
علم البيانات | DS2 Quizes
What will be the output of the following C++ program? #include <stdio.h> #include<iostream> using namespace std; int array1[] = {1200, 200, 2300, 1230, 1543}; int array2[] = {12, 14, 16, 18, 20}; int temp, result = 0; int main() { for (temp…
What will be the output of the following C++ program?
Anonymous Quiz
10%
6522
23%
12200
48%
6533
18%
6553
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What is the scope of the variable declared in the user defined function?
Anonymous Quiz
8%
whole program
19%
the main function
12%
header section
61%
only inside the {} block
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is important in a function?
Anonymous Quiz
7%
Function name
6%
Return type
33%
Both return type and function name
54%
The return type, function name and parameter list
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What will be the output of the following C++ program?
#include <iostream>
using namespace std; int fun(int=0, int = 0); int main() { cout << fun(5); return 0; } int fun(int x, int y) { return (x+y); }
#include <iostream>
using namespace std; int fun(int=0, int = 0); int main() { cout << fun(5); return 0; } int fun(int x, int y) { return (x+y); }
Anonymous Quiz
6%
-5
66%
5
17%
0
12%
10
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What's the output of the following code?
#include <iostream>
using namespace std; int main(int argc, char *argv[]) { char s0[4]={'D','r','.'}; char s1[5]="Musa"; char s2[7]={"Ghorab"}; cout << s0 << " " << s1 << " " << s2 << "\n"; return 0; }
#include <iostream>
using namespace std; int main(int argc, char *argv[]) { char s0[4]={'D','r','.'}; char s1[5]="Musa"; char s2[7]={"Ghorab"}; cout << s0 << " " << s1 << " " << s2 << "\n"; return 0; }
Anonymous Quiz
4%
Ghorab
5%
Musa
88%
Dr. Musa Ghorab
3%
Dr.
Forwarded from تَــــــقـــــنـِــ💻ــــيــُّـــون _ جامعة مصراته
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct syntax of including a user defined header files in C++?
Anonymous Quiz
48%
#include <userdefined.h>
33%
#include "userdefined.h"
10%
<include> "userdefined"
10%
Both
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
....... are like miniature programs and are called modules.
Anonymous Quiz
13%
Arrays
45%
Functions
17%
Pointers
25%
All of above
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is NOT a type of function?
Anonymous Quiz
15%
Main function
16%
Value-returning function
6%
Void function
63%
Parameterized function
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is NOT a type of formal parameter?
Anonymous Quiz
14%
Value parameter
18%
Reference parameter
35%
Constant parameter
33%
Default parameter
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct way to define a function prototype?
Anonymous Quiz
13%
functionName();
44%
functionType functionName(formal parameter list);
7%
return functionName;
35%
functionType functionName(formal parameter list) { function body }
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct way to call a value-returning function?
Anonymous Quiz
11%
functionName();
30%
functionType functionName(actual parameter list);
29%
return functionName;
30%
functionName(actual parameter list);
👏1
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct way to define a void function?
Anonymous Quiz
9%
functionName();
69%
void functionName(formal parameter list);
8%
functionName(formal parameter list);
15%
All of above
👏1
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct way to call a void function?
Anonymous Quiz
7%
int x= functionName();
34%
void functionName(actual parameter list);
44%
functionName(actual parameter list);
15%
cout<<functionName(actual parameter list);
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
int myFunction(int x, int y = 10) {
return x + y;
}
int main() {
int a = 5;
int b = myFunction(a, 20);
cout << b << endl;
return 0;
}Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What is the output of the following code?
int myFunction(int x, int y = 10) {
return x + y; } int main() { int a = 5; int b = myFunction(a, 20); cout << b << endl; return 0; }
int myFunction(int x, int y = 10) {
return x + y; } int main() { int a = 5; int b = myFunction(a, 20); cout << b << endl; return 0; }
Anonymous Quiz
5%
5
7%
10
72%
25
16%
Error
❤1
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
Which of the following is the correct way to define a function with value parameters?
Anonymous Quiz
19%
int sum(int &x);
57%
int sum(int x);
8%
int sum(const int x);
17%
None of the above
🌚1
Forwarded from علم البيانات | DS2 Quizes (𝙴𝚗𝚐. 𝙷𝚊𝚣𝚎𝚖 𝙵. 𝙰𝚕-𝙷𝚞𝚝𝚑𝚊𝚒𝚏𝚒)
What is the output of the following code?
void myFunction(int x, int y) {
x = x + y;
}
int main() {
int a = 5;
int b = 10;
myFunction(a, b);
cout << a << endl;
return 0;
}