علم البيانات | DS2 Quizes – Telegram
علم البيانات | DS2 Quizes
966 subscribers
96 photos
2 videos
14 files
110 links
"قناة علمية متخصصة في مجال علم البيانات، قناة خاصة بالاختبارات MCQ ."
القناة العامة: @Computer_DS_1
النقاشات: @Computer_DS1
قناة الاختبارات: @Computer_DS_2
بوت التواصل والمشاركات : @DS_Combot
Download Telegram
Which of the following accesses the seventh element stored in array?
Anonymous Quiz
6%
array;
6%
array(7);
36%
array[7];
52%
array[6];
What will be the output of the following C++ program?
#include<iostream>
using namespace std; int fun(int x = 0, int y = 0, int z) { return (x + y + z); } int main() { cout << fun(10); return 0; }
Anonymous Quiz
33%
10
7%
0
8%
Segmentation fault
52%
Error
🫡2
Which is more effective while calling the functions?
Anonymous Quiz
8%
call by object
6%
call by pointer
80%
call by reference
6%
Call by value
What will be the output of the following C++ program?
#include <stdio.h>
#include <iostream> using namespace std; int main() { int array[] = {10, 20, 30}; cout << -2[array]; return 0; }
Anonymous Quiz
2%
-15
39%
-30
46%
compile time error
12%
garbage value
🤔2👍1
What will be used when terminating a structure?
Anonymous Quiz
11%
:
24%
}
3%
;;
62%
;
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;
}
What is the scope of the variable declared in the user defined function?
Anonymous Quiz
5%
whole program
17%
the main function
17%
header section
61%
only inside the {} block
👍2🤔1
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); }
Anonymous Quiz
2%
-5
62%
5
22%
0
14%
10
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; }
Anonymous Quiz
7%
Ghorab
10%
Musa
80%
Dr. Musa Ghorab
3%
Dr.
كل هذه الأسئلة من نماذج سابقة للدكتور #موسى_غراب
1
أسئلة في مادة #أساسيات_علم_البيانات
SOON
👇👇
Which programming language is commonly used for Data Science tasks?
Anonymous Quiz
13%
Java
53%
Python
33%
C++
3%
JavaScript
Which step in the Data Science process involves understanding and preparing the data for analysis?
Anonymous Quiz
38%
Data Collection
25%
Data Visualization
22%
Data Cleaning
16%
Model Building
What is the term for a data point that falls far from the rest of the data in a dataset?
Anonymous Quiz
21%
Median
14%
Mean
50%
Outlier
14%
Variance
Which of the following is NOT a type of machine learning algorithm commonly used in Data Science?
Anonymous Quiz
8%
Linear Regression
32%
K-Means Clustering
24%
Decision Trees
36%
Object-Oriented Programming
Which technology is often used to process and analyze large-scale data sets in Data Science?
Anonymous Quiz
28%
Hadoop
28%
SQL
31%
Python
14%
HTML
Which of the following is NOT a key skill required for a Data Scientist?
Anonymous Quiz
56%
Storytelling
12%
Database Administration
20%
Machine Learning
12%
Data Visualization