logo

Crowdly

Browser

Add to Chrome

Questions Bank (1397995 total)

Типова телефонна розмова складається з двох етапів: початковий, завершальний.

27%
73%
View this question

View this question

What does the following print to the console.

sum = 0

counter = 0

numbers = [22, 55, 111, 555]

while numbers[counter] < 100:

sum = sum + numbers[counter]

counter = counter + 1

print(sum)

View this question

View this question
summe(int a) und Summe(int b) bezeichnen unterschiedliche Funktionen.

50%
50%
View this question

void-Funktionen müssen einen Rückgabewert haben, welcher mit return zurückgegeben wird.

0%
0%
View this question

Variablen, die lokal in einer Funktion deklariert sind, können nicht im Hauptprogramm genutzt werden.

100%
0%
View this question

What is the output of the following list function?

sampleList = [10, 20, 30, 40, 50]

sampleList.append(60)

print(sampleList)

sampleList.append(60)

print(sampleList)

View this question

View this question
В залежності від значення критерію Дарбіна-Уотсона існує три гіпотези про присутність явища автокореляції.
67%
33%
View this question