New game
Download
Get Academic Plan
Share game
Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
Download the game as a Scorm, HTML, or PDF file.
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

arreglos(C++)

Quiz

(66)
Este es un test que mide los conocimientos sobre arreglos

Download the paper version to play

Recommended age: 21 years old
3411 times made

Created by

Colombia

Top 10 results

  1. 1
    Rafael
    Rafael
    00:23
    time
    100
    score
  2. 2
    ss
    ss
    00:23
    time
    100
    score
  3. 3
    00:31
    time
    100
    score
  4. 4
    luis shiguango
    luis shiguango
    00:40
    time
    100
    score
  5. 5
    00:46
    time
    100
    score
  6. 6
    00:47
    time
    100
    score
  7. 7
    00:52
    time
    100
    score
  8. 8
    01:06
    time
    100
    score
  9. 9
    01:13
    time
    100
    score
  10. 10
    01:18
    time
    100
    score
Do you want to stay in the Top 10 of this game? to identify yourself.
Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

  1. time
    score
  1. time
    score
time
score
time
score
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
 
game-icon

arreglos(C++)Online version

Este es un test que mide los conocimientos sobre arreglos

by Liesel G. Clavijo V.
1

¿Como se agrega un nuevo valor al arreglo?

2

La declaración de un arreglo de, por ejemplo, valores de notas es:

3

¿Que valor quedaría en la variable f? int main() { int f=1; int cont; int a[3] = {0,0,0} ; for (cont=1; cont <= 3; cont++) { a[cont] += f; f = a[cont]; } }

4

Para referirse a un elemento de un arreglo se deberá utilizar un índice de tipo

5

Un arreglo es...

6

¿Cual es el valor de prom? int main() { float venta[4] = {4.5, 7, 0, 8.9, 3.5} float prom; prom = (venta[1] + venta[2] + venta[4])/3;}

7

Indique la afirmación correcta de la definición: int V[20] = {52,12,31,102,....75}

8

Indique la afirmación verdadera: