Entradas

Mostrando entradas de marzo, 2022

Pagina web

Imagen
 Page Web Layout: It is the composicion of text,image or other elements on the pages of print and eletronic media. Part of a Web Page: Head-Company information header Nav-Main Menu Section-Setión              Article-Artículos Aside-Alternate menu Footer-footer Example: Vignettes to be used:    <html lang="es"> <Meta name="descrip"  content="descrip pagina" <Meta charset="UTF-8"> <link href ="ruta" rel="stylesheet"  type=text/css" <a href="ruta"> texto </a> <div="forma1"> <p> </p>  </div> IMPORTANT MARKUPS <html lang="ES"> this markup  is used to indicate the language and is placed after <doctype html!> HEADER MARKUPS < meta name=""   content="" -Is used to make a small description of the page  -It is to indicate the orthographic symbols that the page will recognize, UTF-8 recognizes symbols of spanish  -...

Prosoft

Imagen
 Basic Programming: -Algorithms Pseint -Python -C++ Variables-Mathematical Operations  Pseint: Programmation logic. Programmation of Lenguage .-C++ -Python 1) Data entry. 2) Process. 3) Data output. Operations to be used: Sum:                   +   a+b  7+3= 10 Subtration:                   -   a-b   7-3= 4 Multiplication:    *   a*b   10*2= 20 División:               /   a/b   12/2= 5 Mod:                     mod   a mod b   10 mod 2= 0 Div:                       div   a div b   10 div 2= 5                  15 mod 2= 1        15∟ 2        ...