Cuestionario sobre Estructuras en C++

Cuestionario sobre Estructuras en C++

11th Grade

15 Qs

quiz-placeholder

Similar activities

Administración BD 5to

Administración BD 5to

11th Grade

16 Qs

CUESTIONARIO SQL

CUESTIONARIO SQL

1st - 12th Grade

10 Qs

Condicionales simples y compuestas

Condicionales simples y compuestas

9th - 12th Grade

10 Qs

Repaso - Diseño y Contenido de tu Sitio Web

Repaso - Diseño y Contenido de tu Sitio Web

9th - 12th Grade

15 Qs

EXAMEN FINAL V SEMESTRE

EXAMEN FINAL V SEMESTRE

11th Grade

20 Qs

Modelos de Datos: Conceptos Clave

Modelos de Datos: Conceptos Clave

11th Grade

20 Qs

SQL

SQL

11th Grade

20 Qs

Cuestionario sobre Sistemas Operativos

Cuestionario sobre Sistemas Operativos

10th Grade - University

17 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?