1
Fork 0

Nuovi appunti

This commit is contained in:
Steffo 2018-04-23 09:41:45 +02:00
parent 989f87261c
commit efa93dfa80
2 changed files with 38 additions and 4 deletions

View file

@ -39,9 +39,9 @@ Per determinare il costo di un prodotto, ho bisogno di tre elementi:
2. Le voci di costo che voglio determinare 2. Le voci di costo che voglio determinare
3. Dati sui costi ottenuti in precedenza da un prodotto simile 3. Dati sui costi ottenuti in precedenza da un prodotto simile
### Dati sui costi precedenti (non ho troppo capito) ### Dati sui costi precedenti
- **Costi storici**: vengono rilevati i costi "istantanei" del prodotto - **Costi storici**: vengono rilevati i costi solo quando il prodotto è già stato fatto
- **Costi standard**: viene stabilito un valore sul costo, e in seguito si misura se si è riusciti a stare sotto il costo previsto - **Costi standard**: viene stabilito in anticipo il costo confrontando le spese di realizzazione di prodotti simili
- **Costi normalizzati**: vengono usati entrambi gli altri due metodi, applicando quello più utile - **Costi normalizzati**: vengono usati entrambi gli altri due metodi, applicando quello più utile
Con l'`Informatica`, è possibile rilevare i costi in modo molto più dettagliato. Con l'`Informatica`, è possibile rilevare i costi in modo molto più dettagliato.
@ -50,3 +50,13 @@ I sistemi che gestiscono questi rilevamenti sono detti **ERP**.
### Voci di costo da determinare ### Voci di costo da determinare
- **Direct costing**: il costo considerato è il costo pieno industriale; i costi di periodo vengono trascurati - **Direct costing**: il costo considerato è il costo pieno industriale; i costi di periodo vengono trascurati
- **Full costing**: il costo considerato è il costo pieno aziendale; sono inclusi tutti i costi, anche quelli di periodo - **Full costing**: il costo considerato è il costo pieno aziendale; sono inclusi tutti i costi, anche quelli di periodo
- **Cycle costing**: vengono considerate come costo anche le spese di smaltimento
## Il portafoglio applicativo
Il **portafoglio applicativo** è composto dai software che hanno accesso al database dell'ERP.
Non è obbligatorio che tutti gli appartenenti a un'azienda utilizzino tutti gli stessi software.
I software del portafoglio possono essere inseriti in tre categorie:
- **Portafoglio direzionale**: supporto alla pianificazione e alle risorse dell'azienda
- **Portafoglio istituzionale**: supporto amministrativo, risorse umane, contabilità
- **Portafoglio operativo**:; supporto ai processi primari

24
inglese/domande1.md Normal file
View file

@ -0,0 +1,24 @@
# Sum up in 10 lines how the Internet developed
The Internet originally was a decentralized military network called
ARPANET that interconnected military sites across the USA.
Its development began in the 1960s, during the Cold War, in order to have a functioning communications network even if one of the nodes got taken down by a Russian attack.
The network was later connected to all the universities in the US, thanks to the new TCP/IP protocol suite.
The network kept expanding: multiple countries joined it, and thanks to the creation of the World Wide Web by Tim Berners-Lee a whole world of new opportunities was opened and led to the spread of the Internet in both homes and companies.
---
# Sum up in 10 lines how the Internet works
The Internet is composed of millions of devices called routers whose task is
directing the data towards its destination.
This task is fulfilled by the IP protocol through a technique called "packet
switching": the data to be sent is split in multiple fragments of the same size
("packets"), and a source address and a destination address is added to each
packet, in order to allow the routers to find a path in the network towards the
destination and allow the receiving device to answer the message.
This packet switching can be seen clearly when you watch a video on the Internet.
You can see that the video loads in blocks around 5-6 seconds long: those blocks
are the packets that have reached your device and have been stored in the memory
of your computer.