logo

Crowdly

Browser

Додати до Chrome

Introduction to Bioinformatics (P-ITBIO-0009)

Шукаєте відповіді та рішення тестів для Introduction to Bioinformatics (P-ITBIO-0009)? Перегляньте нашу велику колекцію перевірених відповідей для Introduction to Bioinformatics (P-ITBIO-0009) в moodle.ppke.hu.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

Question #29: What gets printed?

```python

def print_header(str):

print("+++" + str + "+++")

my_number = 1

my_text = "some info"

print_header("{} and {}".format(my_number, my_text))

```
Переглянути це питання

Question #28: What gets printed?

```python

def addItem(listParam):

listParam += [1] mylist = [1, 2, 3, 4] 

addItem(mylist) 

print(len(mylist))

```
Переглянути це питання

Question #26: What gets printed?

```python

names1 = ['Alpha', 'Bravo', 'Charlie', 'Delta']

names2 = names1

names3 = names1[:]

names2[0] = 'Echo'

names3[1] = 'Foxtrot'

my_sum = 0

for ls in (names1, names2, names3):

if ls[0] == 'Echo': my_sum += 10 if ls[1] == 'Foxtrot': my_sum += 1 

print(my_sum)

```

Переглянути це питання

Question #27: What does the following code do?

```python

def a(b, c, d): pass

```
0%
0%
0%
0%
Переглянути це питання

Question #19: What is the output of the below program?

```python

a = [1,"text",3,None,3+4j, {}, (),[],]

print(len(a))

```
Переглянути це питання

Question #25: What gets printed?

```python

names = ['Alpha', 'Bravo', 'Charlie', 'Delta']

print(names[-1][3])

```
Переглянути це питання
Question #18: Which numbers are printed?

```python

for i in range(3):

print(i) 

for i in range(-2,4):

print(i) ```
Переглянути це питання

Question #17: What gets printed?

```python

x = True

y = False

z = False

if not x or y:

print(1) 

elif not (x or not y) and z:

print(2) 

elif not x or (y or not z) and x:

print(3) 

else:

print(4) ```
Переглянути це питання

Question #20: What gets printed?

```python

name = "bio informatics"

print(name[4:8])

```
Переглянути це питання

Question #16: What gets printed?

```python

x = True

y = False

z = True

if not x or y:

print(1) elif not x or not y and z:

print(2) elif not x or y or not y and x:

print(3) 

else:

print(4)```
0%
0%
0%
0%
Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на moodle.ppke.hu?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome