Está en la página 1de 5

SERVICIO NACIONAL DE ADIESTRAMIENTO EN TRABAJO INDUSTRIAL

PLAN DE TRABAJO
DEL ESTUDIANTE
TRABAJO FINAL DEL CURSO

1. INFORMACIÓN GENERAL

Apellidos y Nombres: Laura Centeno Yhon Aldair ID: 001367384


Dirección Zonal/CFP:
Carrera: Ingeniería De Software Con Inteligencia Artificial Semestre: III
Curso/ Mód. Formativo BASE Y ESTRUCTURA DE DATOS II
Tema del Trabajo: TRABAJO FINAL

2. PLANIFICACIÓN DEL TRABAJO

N° ACTIVIDADES/ ENTREGABLES CRONOGRAMA/ FECHA DE ENTREGA


1
2
3
4
5
6

3. PREGUNTAS GUIA
Durante la investigación de estudio, debes obtener las respuestas a las siguientes interrogantes:

Nº PREGUNTAS

1
Identificar tipo de entidades

2
Identificar atributos

3
Aplicar convenciones de nomenclatura

4
Identificar relaciones

5
Asignar claves

2
TRABAJO FINAL DEL CURSO

HOJA DE RESPUESTAS A LAS PREGUNTAS GUÍA

1. Identificar tipo de entidades


1. FACTURA
2. CLIENTE
3. PRODUCTO

2. Identificar atributos
FACTURAS
(
nro_serie char(3) not null,
nro_factura char(7) not null,
ruc_factura char(11) not null,
idcliente char(5) not null,
fecha date not null,
guia_remision char(5) null,
subtotal float not null,
igv float not null,
total float not null,
primary key(nro_serie,nro_factura)
);
CLIENTES
(
idcliente char(5) primary key,
nombres varchar(20) not null,
paterno varchar(20) not null,
materno varchar(20) not null,
direccion varchar(100) not null,
ruc_cliente char(11) not null
);
PRODUCTOS
(
idproducto char(5) primary key,
descripcion varchar(30) not null,
precio float not null
);
FACTURADETALLES
(
nro_serie char(3) not null,
nro_factura char(7) not null,
idproducto char(5) not null,
cantidad int not null,
precio float not null,
subtotal float not null,
primary key(nro_serie,nro_factura,idproducto)
);

3
TRABAJO FINAL DEL CURSO

3. Aplicar convenciones de nomenclatura


En programación de computadoras, la convención de nombres o convención de nomenclatura es un
conjunto de reglas para la elección de la secuencia de caracteres que se utilice para los identificadores que
denoten variables, tipos, funciones y otras entidades en el código fuente y la documentación.

4. Identificar relaciones
Factura Y Cliente Hay Una Relacion
Entre Factura Y Factura De Detalle Hay Una Relacion
Entre Producto Y Factura De Detalle Hay Una Relacion
Tenemos 3 Relciones
5. Asignar claves
 primary key(nro_serie,nro_factura)
 idcliente char(5) primary key,
 idproducto char(5) primary key,
 primary key(nro_serie,nro_factura,idproducto)

4
TRABAJO FINAL DEL CURSO

También podría gustarte