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 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

Qual'è l'output del seguente codice?

x = 5

y = 10

z = x > 3 and y < 15 or x == 0

print(z)

View this question

Quale sarà l'output del seguente codice?

x = 3

y = 6

if x * 2 == y:

    print("A")

elif x + y == 9:

    print("B")

else:

    print("C")

View this question
View this question

Cosa restituisce l'espressione 10 > 5 and 5 < 3 ?

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