Tipos De Datos Flashcards

1
Q

Tipos de datos

A

Información agregada a la variable que permite almacenar datos especificos

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Cuandos hay y cuales son

A

Int
Float
Double
Alfanuméricos char
String
Void
Booleano

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Int

A

Almacena enteros

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Float

A

Decimales de máximo .7777777 digitos

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Double

A

Decimales de hasta 15 dígitos. .11111111111115

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Alfanumericos

A

Char (‘a’, ‘1’, ‘@’) solo cabe uno

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

String

A

Cadenas de números o letras (“hola mundo”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Vacío o void

A

No retorna ningún dato

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Booleano

A

True o false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Variables

A

Unidades asignadas para el almacenamiento de datos

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Reglas de variables

A

—no ser ambiguos
—no puede contener espacios
—no usar guión medio
—no iniciar con números o caracteres especiales
—no acentos
—no usar nombres de dato en inglés (int) para nombrar varjable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Como escribir una variable

A
  1. Tipo de dato
  2. Nombre de la variable
  3. Operador de asignación (=)
  4. Valor asignado
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Tipos de variables

A

Numéricas
Alfanuméricos
De trabajo
Acumulativa
Iterativa

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Diferencia entre variable iterativa y acumulativa

A

En la acumulativa el número sumado puede valer lo que sea (n), en iterativa el número es fijo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

V numerica

A

Cualquier número, dec, negativo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

V Alfanumerica

A

Números letras y @
Dato = “56#edad”

17
Q

V de trabajo

A

Operaciones aritméticas
VALOR = (SQRT (A+B*C)

18
Q

Acumulativa

A

Cambia de valor con operaciones
SUMA = SUMA + N
N = 5. 15, 43
SUMA = 0 + 5
SUMA = 5 + 15
SUMA = 20 + 43
SUMA = 63