C++ Puntatori

Quiz
•
Computers
•
University
•
Hard
Andrea Prete
Used 438+ times
FREE Resource
9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int x = 1;
int *px = &x;
cout << px;
Stampa 1
Stampa l'indirizzo di x
Errore di compilazione
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int x = 1;
int *px = &x;
cout << *px;
Stampa 1
Stampa l'indirizzo di x
Errore di compilazione
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int x = 1;
int *px = &x;
x++;
cout << *px;
Stampa 1
Stampa 2
Stampa l'indirizzo di x
Errore di compilazione
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int x = 1;
int *px = &x;
(*px)++;
cout << x;
Stampa 1
Stampa 2
Stampa l'indirizzo di x
Errore di compilazione
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int i=1, j=10;
int *p = &i;
int *q = &j;
q = p;
i++;
cout << *q;
1
2
10
11
Errore di compilazione
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int i=1, j=10;
int *p = &i;
int *q = &j;
*q = *p;
i++;
cout << *q;
1
2
10
11
Errore di compilazione
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int i=1, j=10;
int *p = &i;
int *q = &j;
i++;
*q = *p;
cout << *q;
1
2
10
11
Errore di compilazione
8.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
y = {1, 2, 3}
y = {2, 3, 4}
Errore di compilazione
Imprevedibile
9.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
y = {1, 2, 3}
y = {2, 3, 4}
Errore di compilazione
Imprevedibile
Similar Resources on Wayground
10 questions
FOP - CHAPTER 3

Quiz
•
University
10 questions
Informatika x

Quiz
•
University
9 questions
Lenguaje de Programación C++. Parte 1.

Quiz
•
University
10 questions
Visita de Maristas 2024

Quiz
•
University
10 questions
C++ vs Python: A Quiz Introduction

Quiz
•
11th Grade - University
10 questions
C - Pointers

Quiz
•
University
10 questions
CSC126_Chapter4_Part1

Quiz
•
University
11 questions
Programming I Quiz 1

Quiz
•
University
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade