Area INGLESE — Lingua inglese (B1)
Comprensione di testi tecnici in inglese relativi all'informatica e alla PA digitale. Livello richiesto: B1 CEFR.
10 domande disponibili in questa area — Pratica solo questa area →
Domande del paniere
What does 'stakeholder' mean in a project management context?
Spiegazione
✅ B. A 'stakeholder' is anyone with an interest in the project: sponsors, users, team members, regulators, affected communities. ❌ A: the budget holder is the sponsor or PMO, a subset of stakeholders. ❌ C: the supervisor may be a stakeholder but it's not the definition. ❌ D: a tester is a team role, not the meaning of stakeholder.
In IT, 'to deploy' means:
Spiegazione
✅ B. 'Deploy' = rilasciare e installare il software nell'ambiente di destinazione (produzione, test, cloud). ❌ A: design is 'to architect' or 'to design'. ❌ C: documentation is 'to document'. ❌ D: vulnerability testing is 'to pen-test' or 'to assess'.
Choose the correct sentence:
Spiegazione
✅ B. First conditional (real possibility): If + present simple → will + infinitive. 'Lose' (not 'loose') is the correct spelling. ❌ A: 'loose' is an adjective (lento/allentato); the verb is 'lose'. ❌ C: 'will fail' in the if-clause is incorrect in first conditional. ❌ D: mixing past simple with 'will' creates an incorrect conditional form.
What does 'compliance' mean in a regulatory context?
Spiegazione
✅ B. 'Compliance' = conformità alle leggi, regolamenti, standard (es. GDPR compliance, NIS2 compliance). ❌ A: 'compression' refers to data size reduction. ❌ C: compliance is not a network protocol. ❌ D: 'compiling' is the technical process of code compilation — unrelated.
A 'legacy system' in IT refers to:
Spiegazione
✅ B. 'Legacy system' = sistema obsoleto ancora in uso (es. applicativi COBOL del 1980 ancora attivi in banche o PA). Difficile da mantenere, aggiornare e integrare con architetture moderne. ❌ A: il contrario di legacy. ❌ C: license management system è un'altra cosa. ❌ D: un backup system ha una funzione specifica diversa.
What does 'throughput' mean in computer networks?
Spiegazione
Throughput is the actual data transfer rate achieved in practice, which is always lower than the theoretical bandwidth due to overhead and congestion. Bandwidth is the theoretical max. Latency is the travel time.
In software development, 'technical debt' refers to:
Spiegazione
Technical debt (Ward Cunningham's metaphor) is the future cost of rework caused by taking shortcuts — like financial debt, it accumulates 'interest' (increasing cost to fix later).
What is the primary purpose of an API Gateway in a microservices architecture?
Spiegazione
An API Gateway is a reverse proxy handling cross-cutting concerns: authentication/authorization, SSL termination, rate limiting, request routing, load balancing, caching, and logging.
What does 'idempotent' mean in REST API design?
Spiegazione
Idempotency: calling the same API endpoint multiple times with the same parameters produces the same result as calling it once. GET, PUT, DELETE are idempotent; POST typically is not.
In IT security, what is a 'zero-day vulnerability'?
Spiegazione
A zero-day vulnerability is unknown to the vendor or the public, so there is no patch available. It's extremely dangerous because defenders have 'zero days' to prepare before attackers can exploit it.