logo

Crowdly

Browser

Add to Chrome

Questions Bank (1398367 total)

Estimate the complexity of the following function in terms of the input integer n:

def mystery(n: int) -> None:

result = 0

for i in range(10000000):

j = n

while j > 2:

result += i

j /= 2

return result

0%
0%
0%
100%
View this question

 

Which of the following molecules act as building blocks (monomers) of polypeptides?

0%
0%
0%
0%
View this question

Can Bubble Sort be made incremental?

0%
0%
View this question

Is Selection Sort Stable?

0%
100%
View this question

Given that there are n items in a list to sort, what's the maximum number of swaps for Bubble Sort per iteration?

0%
0%
0%
0%
View this question

Given an algorithm taking a collection of n items (each item being of fixed size) as input, with respect to what should its complexity be analysed?

0%
0%
100%
View this question

Яка функція використовується для передачі даних до шаблону у Django?

View this question

Що робить команда python manage.py migrate?

0%
0%
0%
0%
View this question

Як у шаблоні вимкнути автоматичне екранування HTML-символів?

0%
0%
0%
0%
View this question

Як зареєструвати модель користувача в адмін панелі Django?

View this question