logo

Crowdly

Browser

Add to Chrome

M122 (OI) - Automatizzare dei processi attraverso un linguaggio di script

Looking for M122 (OI) - Automatizzare dei processi attraverso un linguaggio di script test answers and solutions? Browse our comprehensive collection of verified answers for M122 (OI) - Automatizzare dei processi attraverso un linguaggio di script at moodle.edu.ti.ch.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Quale di queste opzioni è il modo corretto per definire una funzione in Python?

View this question

Quale sarà l'output del seguente codice?

def test(a, b=3):

    return a * b

print(test(4))

View this question

Cosa fa la funzione mistero(n)?

def mistero(n):

    for i in range(1, 11):

        print(n * i)

View this question

Quale delle seguenti strutture è un ciclo in Python?

View this question

Quale delle seguenti condizioni può portare a un loop infinito?

0%
View this question

Quale sarà l'output del seguente codice?

def test(a=5, b=10):

    if a > b:

        return a - b

    elif a == b:

        return "Uguali"

    else:

        return b - a

print(test(5))

View this question

Quali delle seguenti affermazioni su break e continue sono corrette?

View this question

Cosa viene stampato dal seguente codice?

testo = "Programmazione"

print(testo[3])
View this question

Cosa viene stampato dal seguente codice?

testo = "Programmazione"

print(testo[-1])
View this question
View this question

Want instant access to all verified answers on moodle.edu.ti.ch?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome