Versioning
Python
PyCharm
This & That
100

Name the two Git commands to switch branches!

git checkout

git switch

100

Which character can be used as a thousands separator in Python?

 _ (underscore)

100

For what do we need pip?

To manage libraries/packages.

100

Which language do we use for Wiki pages?

Markdown (md)

200

Which folder should NEVER be copied when you want to copy files/folders from working copy/working tree?

.git folder, because it contains the complete repository (commits, remote repository address, …) and just the working tree should be copied


200

What does the break-statement do?

Exits the whole loop prematurely

200

What can you compare using PyCharm?

- files

- folders

- marked text with clipboard

200

Name the three founders of Apple Computer!

- Steve Jobs

- Steve Wozniak

- Ronald Wayne

300

Name the "Golden Rule" of commit! 

- One topic, one commit

- Only commit related changes!

300

How do you create multiline comments in Python?

<p><code>"""<br>multiline<br>comment<br>"""</code><br>or<br><code>'''<br>multiline<br>comment<br>'''</code></p>

300

What is the "git checkout <hash> <file>" pendant in PyCharm?

"Get Revision..." on a file

300

What is the name of the new Tesla Pick-up?

Cybertruck

400

How often can you clone a repository?

Until your hard drive breaks :)

400

List two classes of control structures in Python with example!

- Loops (for, while)

- Conditions (if, if-else, if-elif-else, match case)

- function call

400

Which different terminals can be opened in PyCharm (here)?

- GitBash

- PowerShell

- Comand Prompt

400

Car model from "Back to the future"

DeLorean

500

How can I delete my local changes in Git Bash?

git reset --hard

Deletes all of your local changes!!!!! 

This includes staged and not staged changes,
It resets to HEAD of your working copy.

500

How is Python typed?

Python is dynamically typed

500

Name at least two super cool shortcuts for PyCharm (Team Talos opinion)!

- double shift: search everywhere

- ctrl + e: open recent files

- ctrl + alt + L: execute Black

- ctrl + shift + UP/DOWN

500

Which computer company was founded by Steve Jobs after his leave of Apple?

NeXT Computer Inc.

M
e
n
u