martedì 19 maggio 2009

giovedì 19 febbraio 2009






Microelettronica


La Microelettronica è la scienza e la tecnologia
del controllo degli elettroni.
Questo termine oggi indica l'insieme di conoscenze pratiche e teoriche necessarie per progettare e realizzare apparati in grado di elaborare grandezze fisiche.


Le principali applicazioni sono:



  • Telecomunicazioni

  • Informatica

  • Controllo di robot e macchine industriali

  • Controllo di ascensori e impianti automatizzati

  • Diagnostica e clinica medica

  • Strumenti di misura

  • Visione artificiale

  • Veicoli stradali e ferroviari

  • Conversione dell'energia elettrica





Puoi iscriverti a questo sito cliccando sulla domanda di iscrizione:


lunedì 9 febbraio 2009

esercizo per casa 09-02-09

pagina6



Torneo amichevole



data:

squadra locale:
















NOME GIOCATORENUMERO
DIC1
DAMIANOOO2
...3
EKCE4
!!!5
LASSAPAROLA6
LASSPERDOPPO7
MOIOLE8
ICS9
POSTELE10
BELLERA11

squadra ospite:


















NOME GIOCATORENUMERO
RISORGI345
FABIO4
CON7
LA88
LETTERA69
A43
MMMMHHH2
LASSPAROLA65
TA50
DAMIANO111
IEFUMANO243










martedì 3 febbraio 2009

Pagina 5 HTML
Pagina 4 HTML
Pagina 3 HTML
Pagina 2 HTML

lunedì 2 febbraio 2009

venerdì 30 gennaio 2009

martedì 20 gennaio 2009

VERIFICA DI INFORMATICA DEL 19-01-09
Esercizio 8 :
Esercizio 7 :
Esercizio 6 :
Esercizio 5 :
Esercizio 4 :
Esercizio 3 :
Esercizio 2 :
Esercizio 1 :




martedì 13 gennaio 2009

select idStudente, idMateria, voto from voto where
voto<(select avg(voto) from voto) order by idStudente;
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto
where voto<(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto
where voto>(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto where
voto=(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) from voto;
--------------------------------------------------------------------------
select idStudente, count(voto) from voto group by idStudente;
--------------------------------------------------------------------------
select idStudente, from voto where 3>(select count(voto) from voto
group by idStudente);
--------------------------------------------------------------------------
create view numeroVoti asselect idStudente, count(voto) as voti from
voto group by idStudente;
--------------------------------------------------------------------------
select idStudente from numeroVoti where voti <3;










lunedì 12 gennaio 2009











select count(*) from studente;select count(*) from programmazione;select count(*) from modulo;select count(*) from voto;
-------------------------------------------------------------
select idStudente, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select idStudente, idMateria, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, idMateria, avg(voto) from voto, studente where studente.idStudente=voto.idStudente and voto.idStudente=8 group by voto.idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria and voto.idStudente=8 group by voto.idStudente, voto.idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome asc;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome desc;
-------------------------------------------------------------