Name the two Git commands to switch branches!
git checkout
git switch
Which character can be used as a thousands separator in Python?
_ (underscore)
For what do we need pip?
To manage libraries/packages.
Which language do we use for Wiki pages?
Markdown (md)
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
What does the break-statement do?
Exits the whole loop prematurely
What can you compare using PyCharm?
- files
- folders
- marked text with clipboard
Name the three founders of Apple Computer!
- Steve Jobs
- Steve Wozniak
- Ronald Wayne
Name the "Golden Rule" of commit!
- One topic, one commit
- Only commit related changes!
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>
What is the "git checkout <hash> <file>" pendant in PyCharm?
"Get Revision..." on a file
What is the name of the new Tesla Pick-up?
Cybertruck
How often can you clone a repository?
Until your hard drive breaks :)
List two classes of control structures in Python with example!
- Loops (for, while)
- Conditions (if, if-else, if-elif-else, match case)
- function call
Which different terminals can be opened in PyCharm (here)?
- GitBash
- PowerShell
- Comand Prompt
Car model from "Back to the future"
DeLorean
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.
How is Python typed?
Python is dynamically typed
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
Which computer company was founded by Steve Jobs after his leave of Apple?
NeXT Computer Inc.