Kuis Pointer 1
Quiz
•
Information Technology (IT)
•
University
•
Practice Problem
•
Hard
089_Gradiva undefined
Used 2+ times
FREE Resource
Enhance your content in a minute
6 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
void modify(int*& ptr) {
int local = 20;
ptr = &local;
}
int main() {
int x = 10;
int* p = &x;
modify(p);
cout << *p << endl; // Apa hasil ini?
}
20
10
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int main() {
int arr[] = {10, 20, 30, 40};
int* p = arr + 2;
cout << (p++) << " " << (++p) << endl; // Apa hasil ini?
}
30 40
40 30
30 (angka acak)
40 (angka acak)
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int main() {
int* p = nullptr;
if (p)
cout << "Not null";
else
cout << "Null";
}
Not null
Null
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int main() {
int a = 10;
int* p1 = &a;
int*& ref = p1;
int b = 20;
ref = &b;
cout << p1 << " " << ref << endl;
}
20 10
10 10
10 20
20 20
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int main() {
int x = 10;
int* p = &x;
delete p;
cout << x << endl;
}
10
Compile error
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int main() {
int arr[] = {1, 2, 3, 4, 5};
int* p = arr + 4;
cout << *(p - 2) << endl;
}
2
3
4
Undefined (nilai gajelas)
Similar Resources on Wayground
10 questions
ADBMS_Quiz_2_Section_B
Quiz
•
University
10 questions
WS&T
Quiz
•
University
10 questions
Quiz Meet 1 Mini SC Programing
Quiz
•
University
11 questions
Conceptos Básicos HTML5 y CSS3
Quiz
•
University
10 questions
5. TRANSMISION DE DATOS NIVEL DE TRANSPORTE
Quiz
•
University
10 questions
Java Quiz (Basics)
Quiz
•
University
10 questions
BD 06 SQL DDL
Quiz
•
University
10 questions
Fungsi DASPRO
Quiz
•
University
Popular Resources on Wayground
10 questions
Honoring the Significance of Veterans Day
Interactive video
•
6th - 10th Grade
9 questions
FOREST Community of Caring
Lesson
•
1st - 5th Grade
10 questions
Exploring Veterans Day: Facts and Celebrations for Kids
Interactive video
•
6th - 10th Grade
19 questions
Veterans Day
Quiz
•
5th Grade
14 questions
General Technology Use Quiz
Quiz
•
8th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
15 questions
Circuits, Light Energy, and Forces
Quiz
•
5th Grade
19 questions
Thanksgiving Trivia
Quiz
•
6th Grade
Discover more resources for Information Technology (IT)
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)
Quiz
•
8th Grade - University
7 questions
Force and Motion
Interactive video
•
4th Grade - University
9 questions
Principles of the United States Constitution
Interactive video
•
University
18 questions
Realidades 2 2A reflexivos
Quiz
•
7th Grade - University
10 questions
Dichotomous Key
Quiz
•
KG - University
25 questions
Integer Operations
Quiz
•
KG - University
7 questions
What Is Narrative Writing?
Interactive video
•
4th Grade - University
20 questions
SER vs ESTAR
Quiz
•
7th Grade - University
