Cuestionario sobre Estructuras en C++

Cuestionario sobre Estructuras en C++

11th Grade

15 Qs

quiz-placeholder

Similar activities

Structuri neomogene

Structuri neomogene

9th - 12th Grade

15 Qs

Pensamiento computacional

Pensamiento computacional

9th - 12th Grade

10 Qs

Principios de programación

Principios de programación

1st - 11th Grade

20 Qs

Pseint y Tinkercad

Pseint y Tinkercad

10th Grade - University

15 Qs

Funciones

Funciones

1st - 12th Grade

11 Qs

1erPar3PROG2024-2

1erPar3PROG2024-2

9th - 12th Grade

11 Qs

Preguntas de PSeInt para Noveno

Preguntas de PSeInt para Noveno

9th Grade - University

16 Qs

Examen de robótica - Diagnóstico

Examen de robótica - Diagnóstico

11th - 12th Grade

11 Qs

Cuestionario sobre Estructuras en C++

Cuestionario sobre Estructuras en C++

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Milka /Matemáticas

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cuál es la sintaxis correcta para declarar una estructura vacía en C++?

structure { };

struct nombre { };

structure nombre { };

struct tipo nombre { };

2.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cómo se accede a un miembro de una estructura usando una variable de estructura?

variable->miembro

variable:miembro

variable.miembro

variable,miembro

3.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cuál de las siguientes es la forma correcta de declarar una variable de tipo struct?

struct nombre;

nombre variable;

variable nombre;

struct nombre variable;

4.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Qué tipo de datos pueden almacenarse dentro de una estructura?

Solo tipos básicos como int y float

Solo otros struct

Solo punteros

Cualquier tipo de dato válido en C++

5.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cuál es la sintaxis correcta para definir un miembro de una estructura dentro de un struct?

int miembro

int miembro;

int: miembro;

int miembro,

6.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cómo se pasa una estructura a una función por referencia?

void funcion(struct nombre variable)

void funcion(struct nombre* variable)

void funcion(struct nombre& variable)

void funcion(struct & variable)

7.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

¿Cuál es el nombre correcto de un tipo definido por una estructura?

struct

struct nombre_variable

nombre_variable

struct nombre

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?