Programação

Get Started. It's Free
or sign up with your email address
Programação by Mind Map: Programação

1. JAVASCRIPT

1.1. OUTPUT

1.1.1. document.write

1.1.2. document.getElementById("element").innerHTML

1.1.3. window.alert

1.1.4. console.log()

1.2. INPUT

1.2.1. window.prompt

1.2.2. eventos

1.2.2.1. onclick

1.2.2.2. onload

1.2.2.3. onhover

1.2.2.4. onmouseout

1.2.2.5. form

1.2.2.5.1. submit

1.2.2.5.2. action

1.2.3. form html

1.3. Linguagem de script

1.3.1. html

1.3.1.1. body

1.3.1.2. head

1.3.1.3. ...

1.3.2. tag script

1.4. Variáveis

1.4.1. Variáveis Dinâmicas

1.4.2. tipos

1.4.2.1. var - global

1.4.2.2. let - local

1.4.2.3. const - não altera

1.4.3. Tipos

1.4.3.1. string

1.4.3.2. float

1.4.3.3. int

1.4.3.4. boolean

1.4.3.5. arrays

1.4.3.5.1. var idades[17,19,17,18,18,19]

1.5. Funções

1.5.1. function nome_funcao{...}

1.5.2. Incorporadas

1.5.2.1. parseInt() - converte para número

1.5.2.2. round

1.5.2.3. tofixed

1.5.3. return

1.5.3.1. true

1.5.3.2. false

1.6. Intruções

1.6.1. if

1.6.2. for

1.6.3. switch

1.6.4. while

2. C

2.1. Bibliotecas (includes)

2.1.1. iostream

2.1.1.1. cin e cout

2.1.2. locale.h

2.1.2.1. setlocale(LC_ALL,"portuguese")

2.1.3. math.h

2.1.3.1. pow - expoente

2.1.4. string.h

2.1.4.1. strcpy - copiar strings

2.1.4.2. strcmp - comprar string

2.1.4.3. strlen - tamanho da string

2.1.4.4. strcat - concatenar strings

2.2. Fases Programa

2.2.1. Variáveis

2.2.2. Input

2.2.3. Cálculos

2.2.4. Output

2.3. main() - função principal

2.4. Variáveis

2.4.1. int

2.4.2. float

2.4.3. char

2.4.4. string

2.4.4.1. char[tamanho]

2.4.5. Array

2.4.5.1. tipo_dados nome_array[tamanho_array]

2.4.5.2. Acesso

2.4.5.2.1. nome_array[0] - primeira posição

2.4.5.2.2. nome_array[1] - segunda posição

2.4.5.2.3. ...

2.4.6. bool

2.5. Entrada/Saída

2.5.1. cout - enviar dados para ecrâ

2.5.2. cin - capturar dados do teclado

2.6. Operadores

2.6.1. Atribuição =

2.6.2. Relacionais

2.6.2.1. >

2.6.2.2. <

2.6.2.3. ==

2.6.2.4. !=

2.6.3. Aritméticos

2.6.3.1. +

2.6.3.2. -

2.6.3.3. /

2.6.3.4. *

2.6.3.5. %

2.7. Instruções

2.7.1. Condicionais

2.7.1.1. if

2.7.1.2. case

2.7.2. Ciclos

2.7.2.1. for

2.7.2.2. while

2.7.2.3. do... while

3. PHP

3.1. script - HTML

3.1.1. <?php

3.1.2. ?>

3.2. input

3.2.1. Form html

3.2.2. Base de Dados

3.2.3. Parâmetros

3.2.3.1. Método GET

3.2.3.2. Método POST

3.3. output

3.3.1. echo

3.3.2. Base de Dados

3.3.3. smtp - mail

3.4. Instruções

3.4.1. Condicionais

3.4.1.1. if

3.4.1.2. case

3.4.2. Ciclos

3.4.2.1. for

3.4.2.2. while

3.4.2.3. do... while

3.5. Variáveis

3.5.1. $nome_variavel

4. Base de Dados MySQL

4.1. Gestão

4.1.1. phpmyadmin

4.2. Comandos

4.2.1. mysqli_select_db

4.2.2. mysqli_query

4.2.2.1. Comandos SQL

4.2.2.1.1. SELECT

4.2.2.1.2. INSERT

4.2.2.1.3. UPDATE

4.2.2.1.4. DELETE

4.2.3. mysqli_num_rows

4.2.4. mysqli_fetch_array

4.3. Criar

4.3.1. nome

4.3.2. codificação

4.3.2.1. - utf8_general_ci

4.4. Tabelas

4.4.1. campos

4.4.2. Tipos de dados

4.4.2.1. int

4.4.2.2. varchar

4.4.2.3. text

4.4.2.4. date

4.4.2.5. boolean

4.4.2.6. decimal(6,2)

4.4.3. Campo chave (AI)

4.5. Relacionamentos

4.5.1. Desenhador - acesso

4.5.2. Mesmo tipo de dados

4.5.3. Mesmo tamanho

4.5.4. campos index - chaves estrangeiras