Versioning / Tools
Python
PyCharm / Wiki
This and that
100

What does the command "git config" do?

Configure git 

(e.g. set user and mail)

100

What is the correct file extension for Python files?

.py

100

Origin of the word Wiki?

It comes from Hawaii and means fast.

100

Is Ada a programming language?

Yes

200

What are "Merge conflicts"?

Merge conflicts occur when competing changes are made to the same line of a file, or when one person edits a file and another person deletes the same file.

200

Given is:
a = [1, 2, 3, 3, 5, 4, 5, 4]

Simple command to check how often the 4 occurs?

a.count(4)

200

Where are scratch files saved?

locally in PyCharm 

200

What shall we do with the drunken sailor?

???

300

How to search for the history of a specific file?

git log <file_path>

300

What is an interpreter?

An interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program.

300

Who will be responsible for our Wiki in the future?

YOU



300

Who is this guy?

Richard Matthew Stallman 

Stallman launched the GNU Project in September 1983 to write a Unix-like computer operating system composed entirely of free software. With this, he also launched the free software movement (check FSF -Free Software Foundation) .

https://en.wikipedia.org/wiki/Richard_Stallman 

400

List six git commands.

...

400

How to eliminate the element "Mango" from the following list?

a = ["Apple", "Mango", "Pear"]

Please provide two simple solutions.
Hint: By value and by position

a.remove("Mango")
and
del(a[1])

400

How to save files in PyCharm?

Not at all, it's saved automatically.

400

On which computer was the WWW invented?

NeXTcube

500

How to find deleted text in git?

git log -S "<text>" --oneline

500

What is the result of:

a = [1, 2, 3, 4, 5]
b = [5, 6, 7, 8, 9]
a.append(b)
print(a)

[1, 2, 3, 4, 5, [5, 6, 7, 8, 9]]

500


PYTHON


Given is:
a = ["Apple", "Mango", "Pear"]

How to add a "Peach" between "Mango" and "Pear"?

a.insert(2, "Peach")

500

What is a “Numbers station”?

A numbers station is a shortwave radio station characterized by broadcasts of formatted numbers, which are believed to be addressed to intelligence officers operating in foreign countries.