Elementos Programas Flashcards

1
Q

Elementos de Programas

A

ID
Palabras Reservadas
Valores Constantes

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

Estructura Programas

A

Bibliotecas
Datos
Variables
Constantes

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

ID

A
_
a
no números
no espacios blanco
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Palabras Reservadas

A

Usadas por compilador, IDE o lenguaje

while, int, main, float, etc

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

Valores Constantes

A

Usados por programas

float, int, string, char

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

Bibliotecas

A
Contienen funciones y clases que hacen diferentes acciones
#include
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Estructura Programa General

A
Bibliotecas
namespace;
Variables y Constantes Globales
Funciones
main
{
        instrucciones o comandos;
        return: 0;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Tipos Datos

A
Enteros - ( -1 )
Reales - ( 3.14 )
Texto - ( "hola" )
Caracteres - ( 'a' )
Boolean - ( true )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly