Files
2025-11-04 12:15:43 +01:00

7.2 KiB
Raw Permalink Blame History

title, short_desc, tags, timestamp, path, public, update, editor, uuid, feature
title short_desc tags timestamp path public update editor uuid feature
Fragen - Note Umfrage Fragen für die Organisations Vorlesung
Note
Chart
Vorlesung
Uni
Work
22.10.2025 - 21:33 true true markdown 1761161623050 thumbnails/external/89b30361e78c63dafa937dce92b1f550.svg

ifn-logo

Fragen

Invote.de

!invote_qr_code.png

Alle Angaben in Prozent(%)


1. Sind alle eingeloggt?

  • Funktioniert!
  • Gib mir noch kurz Zeit..
Values n=34
Ja 100
Nein 0
^table1
type: bar
id: table1
layout: rows
width: 80%
beginAtZero: true

2. Freitags 15 Uhr ist eine super Vorlesungszeit (1 absolut gar nicht, 5 super, ich liebe es).

  • 1
  • 2
  • 3
  • 4
  • 5
Values n=33
1 39
2 30
3 15
4 9
5 6
^table2
type: bar
id: table2
layout: rows
width: 80%
beginAtZero: true

3. Ich bin im ...

  • Bachelor
  • Master
Values n=34
Bachelor 88
Master 12
^table3
type: pie
id: table3
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

4. Ich studiere ...

  • Medienwissenschaften B.A.
  • Medienwissenschaften M.A.
  • Irgendwas mit Ingeneurwissenschaften
  • Irgendwas mit Naturwissenschaften
  • Psychologie
  • Was anderes...
Values n=33
Medienwissenschaften B.A. 82
Medienwissenschaften M.A. 0
Irgendwas mit Ingeneurwissenschaften 12
Irgendwas mit Naturwissenschaften 3
Psychologie 0
Was anderes... 3
^table4
type: pie
id: table4
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

5. Ich studiere im ...

  • 1./2. Semester
  • 3./4. Semester
  • 5./6. Semester
  • 7./8. Semester
  • 9+ Semester
Values n=34
1/2 3
3/4 74
5/6 12
7/8 3
9+ 9
^table5
type: pie
id: table5
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

6. Ich kenne bereits die Programmiersprache ...

  • C
  • Brainf**k
  • JavaScript
  • Modula-2
  • HTML (HyperText Markup Language)
  • Delphi Pascal
  • Keine...
Values n=34
C 9
Brainf**k 0
JavaScript 12
Modula-2 0
HTML 15
Delphi Pascal 0
Keine... 65
^table6
type: pie
id: table6
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

7. Mit welcher Programmiersprache werden wir in dieser Vorlesung arbeiten?

  • JavaScript
  • π-thon
  • R
  • Go
  • Fortran 77
Values n=32
JavaScript 13
π-thon 84
R 0
Go 3
Fortran 77 0
^table7
type: pie
id: table7
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

8. Wie heißt der/die Erfinder*in von Python?

  • Guido van Rossum (BDFL benevolent dictator for life)
  • Niklaus Wirth (Schweizer Informatiker)
  • Augusta Ada King, Countess of Lovelace (Entwicklete den ersten theoretischen mechanischen Computer zusammmen mit Charles Babbage und schrieb dafür das erste Program)
  • Alan Mathison Turing (10.9.2009 erst Entschuldigt, MI6, etc.)
  • Katherine Johnson (Afro Amerikanische NASA Wissenschaftlerin, berechnete Flugbahnen)
Values n=33
Guido van Rossum 24
Niklaus Wirth 36
Ada Lovelace 15
Alan Turing 15
Katherine Johnson 9
^table8
type: bar
id: table8
layout: rows
width: 80%
beginAtZero: true

9. Welchen Output gibt folgender Code?

Summe von 1-100 = 5050

count = 0
for i in range(100):
	count = count + i
print(count)
  • 7
  • 550
  • 5.050
  • 10.000
  • 1, 1, 2, 3, 5, 8, 13, 21, ...
Values n=34
7 3
550 3
5.050 15
10.000 18
1, 1, 2, 3, 5, 8, 13, 21, .. 62
^table9
type: pie
id: table9
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true

10. Welchen Output gibt folgender Code?

Mein Fehler hab die Antworten nicht richtig geupdated

message = "π-thon macht Spaß"
print(message[0:6])
  • 0xcaffe
  • ' Spaß'
  • 'macht '
  • 'ß apm'
  • 'π-thon'
Values n=
0xcaffe 0
Spaß 0
macht 0
ß apm 0
π-thon 0
^table10
type: bar
id: table10
layout: rows
width: 80%
beginAtZero: true

11. Welchen Output gibt folgender Code?

List Comprehension der quadrierten Zahlen

print([n*n for n in range(1,6)])
  • [1,2,3,4,5]
  • [2,4,8,16,32]
  • [1,4,9,16,25]
Values n=32
[1,2,3,4,5] 31
[2,4,8,16,32] 34
[1,4,9,16,25] 34
^table11
type: bar
id: table11
layout: rows
width: 80%
beginAtZero: true

12. Welchen Output gibt folgender Code?

Technisch gesehen ist hier alles richtig

[] + {}
  • "[object Object]"
  • Das ist Javascript...
  • TypeError: can only concatenate list (not "dict") to list
Values n=33
[object Object] 21
Das ist JavaScript... 21
TypeError 58
^table12
type: bar
id: table12
layout: rows
width: 80%
beginAtZero: true

13. Welchen Output gibt folgender Code?

Ramanujan's Formula


\frac{1}{\pi} = \frac{2\sqrt 2}{9801} \cdot \sum^\infty_{k=0} \frac{(4k)!(1103+26390k)}{(k!)^4(396)^{4k}}
from math import sqrt, factorial

def a_calculation(k: int) -> float:
	factor = (2*sqrt(2))/9801
	summation = 0
	for i in range(k):
		nominator = factorial(4*i) * (1103+26390*i)
		denominator = factorial(i)**4 * 396**(4*k)
		summation += nominator / denominator
	return factor * summation

print(a_calculation(30)**-1)
  • 1/π
  • 1/e
  • π
Values n=33
1/π 30
1/e 27
π 42
^table13
type: pie
id: table13
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true