change page format

I got the feedback that people don't want to see the answer right below
the question in visible state.
This commit is contained in:
abregman 2019-10-11 00:57:21 +03:00
parent 61d6ca4565
commit 08cbeb2ca8
2 changed files with 425 additions and 200 deletions

622
README.md
View File

@ -6,7 +6,7 @@
:information_source:  This repository contains interview questions on various DevOps related topics :information_source:  This repository contains interview questions on various DevOps related topics
:bar_chart:  There are currently **111** interview questions :bar_chart:  There are currently **112** interview questions
:warning:  Some answers might be only partial and shouldn't be used as they are in interviews :warning:  Some answers might be only partial and shouldn't be used as they are in interviews
@ -34,18 +34,38 @@
## DevOps ## DevOps
###### beginner #### :baby: Beginner
* What is Continuous Integration? <details>
* What is Continuous Deployment? <summary><b>What is Continuous Integration?</b></summary><br>
* What is Continuous Delivery? </details>
* What DevOps helps us to achieve? <details>
* What do you consider as best practices for CI/CD? <summary><b>What is Continuous Deployment?</b></summary><br>
* What are the anti-patterns of DevOps? </details>
* Which DevOps tools you consider as top tools? Which tools have you worked with? <details>
* What systems and/or tools are you using for the following?: <summary><b>What is Continuous Delivery?</b></summary><br>
</details>
<details>
<summary><b>What DevOps helps us to achieve?</b></summary><br>
</details>
<details>
<summary><b>What do you consider as best practices for CI/CD?</b></summary><br>
</details>
<details>
<summary><b>What are the anti-patterns of DevOps?</b></summary><br>
</details>
<details>
<summary><b>Which DevOps tools you consider as top tools? Which tools have you worked with?</b></summary><br>
</details>
<details>
<summary><b>What systems and/or tools are you using for the following?:
* CI/CD * CI/CD
* Provisioning infrastructure * Provisioning infrastructure
@ -54,116 +74,227 @@
* Logging * Logging
* Code review * Code review
* Code coverage * Code coverage
* Tests * Tests</b></summary><br>
</details>
* What is the difference between SQL and NoSQL? <details>
* What the difference between VPN and VPS? <summary><b>What is the difference between SQL and NoSQL?</b></summary><br>
* What is the difference between SSH and SSL? </details>
* What scripting language are you familiar with? why specifically this one? <details>
* Describe some of the scripts you have written. What are they used for? how long did it take you to write them? <summary><b>What the difference between VPN and VPS?</b></summary><br>
* How long do you think it would take you to learn another language? </details>
##### Intermediate <details>
<summary><b>What is the difference between SSH and SSL?</b></summary><br>
</details>
* Tell me how you perform plan capacity for your CI/CD resources (e.g. servers, storage, etc.) <details>
* How would you structure/implement CD for an application which depends on several other applications? <summary><b>What scripting language are you familiar with? why specifically this one?</b></summary><br>
* How do you manage dependencies? </details>
* Explain what are design patterns. Which design patterns are you familar with? <details>
<summary><b>Describe some of the scripts you have written. What are they used for? how long did it take you to write them?</b></summary><br>
</details>
##### advanced <details>
<summary><b>How long do you think it would take you to learn another language?</b></summary><br>
</details>
* How do you measure your CI/CD quality? Are there any metrics you are using? #### :star: Advanced
* What is a configuration drift? What problems is it causing?
``` <details>
Configuration drift happens when in an environment of servers with the exact same configuration and softwares a certain server <summary><b>Tell me how you perform plan capacity for your CI/CD resources (e.g. servers, storage, etc.)</b></summary><br>
or servers are being appied with updates or configuration which other servers don't get and over time these servers become </details>
<details>
<summary><b>How would you structure/implement CD for an application which depends on several other applications?</b></summary><br>
</details>
<details>
<summary><b>How do you manage dependencies?</b></summary><br>
</details>
<details>
<summary><b>Explain what are design patterns. Which design patterns are you familar with?</b></summary><br>
</details>
<details>
<summary><b>How do you measure your CI/CD quality? Are there any metrics you are using?</b></summary><br>
</details>
<details>
<summary><b>What is a configuration drift? What problems is it causing?</b></summary><br>
Configuration drift happens when in an environment of servers with the exact same configuration and software, a certain server
or servers are being applied with updates or configuration which other servers don't get and over time these servers become
slightly different than all others. slightly different than all others.
This situtation might lead to bugs which hard to identify and reproduce. This situation might lead to bugs which hard to identify and reproduce.
``` </details>
* How to deal with configuration drift? <details>
* In what scenarios would you prefer to use SQL? <summary><b>How to deal with configuration drift?</b></summary><br>
* In what scenarios would you prefer to use NoSQL? </details>
<details>
<summary><b>In what scenarios would you prefer to use SQL?</b></summary><br>
</details>
<details>
<summary><b>In what scenarios would you prefer to use NoSQL?</b></summary><br>
</details>
## Jenkins ## Jenkins
###### beginner #### :baby: Beginner
* Explain what is Jenkins and what is it used for <details>
* Explain each of the following in the context of nodes: <summary><b>Explain what is Jenkins and what is it used for</b></summary><br>
</details>
<details>
<summary><b>Explain each of the following in the context of nodes:
* Master * Master
* Slave * Slave
* Executor * Executor
* Agent * Agent
* Label * Label</b></summary><br>
* Explain each of the following in context of jobs: </details>
<details>
<summary><b>Explain each of the following in context of jobs:
* Job * Job
* Build * Build
* Test * Test
* Artifacts * Artifacts</b></summary><br>
* Explain the architecture of Jenkins </details>
* What are the different ways to trigger a build?
* How do you start a build automatically upon a change in a certain repository? <details>
* What is a plugin? <summary><b>Explain the architecture of Jenkins</b></summary><br>
* What plugins are you using in Jenkins? Which do you consider to most useful? </details>
* Installation questions
<details>
<summary><b>What are the different ways to trigger a build?</b></summary><br>
</details>
<details>
<summary><b>How do you start a build automatically upon a change in a certain repository?</b></summary><br>
</details>
<details>
<summary><b>What is a plugin?</b></summary><br>
</details>
<details>
<summary><b>What plugins are you using in Jenkins? Which do you consider to most useful?</b></summary><br>
</details>
<details>
<summary><b>Installation questions</b></summary><br>
* How to install Jenkins? * How to install Jenkins?
* How to install a plugin? * How to install a plugin?
* How to install an agent? * How to install an agent?
* Explain CI/CD and how you implemented in Jenkins </details>
###### Intermediate <details>
<summary><b>Explain CI/CD and how you implemented in Jenkins</b></summary><br>
</details>
* What type of jobs there are? what is the advantage of each type?
* What ways are you familiar with to notify users on build results?
* How to secure Jenkins?
###### Advanced <details>
<summary><b>What type of jobs there are? what is the advantage of each type?</b></summary><br>
</details>
* Write a script to remove all the jobs which include the string "REMOVE_ME" <details>
<summary><b>What ways are you familiar with to notify users on build results?</b></summary><br>
</details>
<details>
<summary><b>How to secure Jenkins?</b></summary><br>
</details>
#### :star: Advanced
<details>
<summary><b>Write a script to remove all the jobs which include the string "REMOVE_ME"</b></summary><br>
</details>
## AWS ## AWS
###### Global Infrastructure #### Global Infrastructure
- Explain the following <details>
<summary><b>Explain the following
- Availability zone - Availability zone
- Region - Region
- Edge location - Edge location</b></summary><br>
</details>
###### S3 - beginner #### :baby: S3 - Beginner
<details>
<summary><b>Explain what is S3 and what is it used for</b></summary><br>
</details>
* Explain what is S3 and what is it used for <details>
* What is a bucket? <summary><b>What is a bucket?</b></summary><br>
* True or False? a bucket name must be globally unique </details>
* What objects in S3 consists of?
* Another way to ask it: explain key, value, version id and metadata in context of objects
* Explain data consistency
* Can you host dynamic websites on s3? what about static websites?
* What security measures have you taken in context of S3?
###### CloudFront <details>
<summary><b>True or False? a bucket name must be globally unique</b></summary><br>
</details>
* Explain what is CloudFront and what is it used for <details>
* Explain the following <summary><b>What objects in S3 consists of?
* Another way to ask it: explain key, value, version id and metadata in context of objects</b></summary><br>
</details>
<details>
<summary><b>Explain data consistency</b></summary><br>
</details>
<details>
<summary><b>Can you host dynamic websites on s3? what about static websites?</b></summary><br>
</details>
<details>
<summary><b>What security measures have you taken in context of S3?</b></summary><br>
</details>
#### CloudFront
<details>
<summary><b>Explain what is CloudFront and what is it used for</b></summary><br>
</details>
<details>
<summary><b>Explain the following
* Origin * Origin
* Edge location * Edge location
* Distribution * Distribution</b></summary><br>
* What delivery methods available for the user with CDN? </details>
* True or False? object are cached for the life of TTL
<details>
<summary><b>What delivery methods available for the user with CDN?</b></summary><br>
</details>
<details>
<summary><b>True or False? object are cached for the life of TTL</b></summary><br>
</details>
###### EC2 - beginner #### :baby: EC2 - Beginner
* What type of instances have you created? <details>
* How to increase RAM for a given EC2 instance? <summary><b>What type of instances have you created?</b></summary><br>
</details>
<details>
<summary><b>How to increase RAM for a given EC2 instance?</b></summary><br>
</details>
## Network ## Network
@ -173,106 +304,132 @@ Network questions can be found [here](https://github.com/bregman-arie/computer-n
## Linux ## Linux
##### beginner #### :baby: Beginner
* Explain what each of the following commands does and given an example on how to use it <details>
<summary><b>Explain what each of the following commands does and given an example on how to use it
* ls * ls
* rm * rm
* rmdir (can you achieve the same result by using `rm`?) * rmdir (can you achieve the same result by using `rm`?)
* grep * grep
* wc * wc
* df * df</b></summary><br>
</details>
* How to make sure a service will start on a OS of your choice? <details>
<summary><b>How to make sure a service will start on a OS of your choice?</b></summary><br>
</details>
* How do you schedule tasks periodically? <details>
<summary><b>How do you schedule tasks periodically?</b></summary><br>
</details>
* How to change the permissions of a file? <details>
<summary><b>How to change the permissions of a file?</b></summary><br>
</details>
* What does the following permissions mean?: <details>
<summary><b>What does the following permissions mean?:
* 777 * 777
* 644 * 644
* 750 * 750</b></summary><br>
</details>
* How to add a new user to the system without providing him the ability to log-in into the system? <details>
<summary><b>How to add a new user to the system without providing him the ability to log-in into the system?</b></summary><br>
</details>
* What commands are you using for troubleshooting issues? specifically: <details>
<summary><b>What commands are you using for troubleshooting issues? specifically:
* Disk issues * Disk issues
* Memory, CPU issues * Memory, CPU issues
* Networking issues * Networking issues</b></summary><br>
</details>
* What is the difference between Linux and Unix? <details>
<summary><b>What is the difference between Linux and Unix?</b></summary><br>
</details>
* What is a Linux kernel module and how do you load a new module? <details>
<summary><b>What is a Linux kernel module and how do you load a new module?</b></summary><br>
</details>
* What is KVM? <details>
<summary><b>What is KVM?</b></summary><br>
</details>
* Explain what would be the result of each command: <details>
<summary><b>Explain what would be the result of each command:
```
echo $0 echo $0
echo $? echo $?
echo $$ echo $$
echo $@ echo $@
echo $# echo $#</b></summary><br>
``` </details>
* How to grep two strings? <details>
<summary><b>How to grep two strings?</b></summary><br>
</details>
* What is the different between a soft link and hard link? <details>
<summary><b>What is the different between a soft link and hard link?</b></summary><br>
```
hard link is the same file, using the same inode. hard link is the same file, using the same inode.
soft link is a shortcut to another file, using a different inode. soft link is a shortcut to another file, using a different inode.
soft links can be created between different file systems while soft links can be created between different file systems while
hard link can be created only within the same file system. hard link can be created only within the same file system.
``` </details>
<details>
<summary><b>How to run a process in the background and why to do that in the first place?</b></summary><br>
* How to run a process in the background and why to do that in the first place?
```
You can achieve that by specifying & at end of the command. You can achieve that by specifying & at end of the command.
As to Why? since some commands/processes can take a lot of time to finish As to Why? since some commands/processes can take a lot of time to finish
execution or run forever execution or run forever
``` </details>
<details>
<summary><b>What signal is used when you run 'kill <process id>'?</b></summary><br>
* What signal is used when you run 'kill <process id>'?
```
The default signal is SIGTERM (15). This signal kills The default signal is SIGTERM (15). This signal kills
process gracefully which means it allows it to save current process gracefully which means it allows it to save current
state configuration. state configuration.
``` </details>
<details>
<summary><b>What signals are you familiar with?</b></summary><br>
* What signals are you familiar with?
```
SIGTERM - default signal for terminating a process SIGTERM - default signal for terminating a process
SIGHUP - common usage is for reloading configuration SIGHUP - common usage is for reloading configuration
SIGKILL - a signal which cannot caught or ignored SIGKILL - a signal which cannot caught or ignored
To view all available signals run `kill -l` To view all available signals run `kill -l`
``` </details>
* In what state a process in Linux can be? <details>
<summary><b>In what state a process in Linux can be?</b></summary><br>
```
Ready Ready
Running Running
Blocked Blocked
Terminated Terminated
Zombie Zombie
``` </details>
## Ansible ## Ansible
* Describe each of the following components in Ansible, including the relationship between them: <details>
<summary><b>Describe each of the following components in Ansible, including the relationship between them:
* Task * Task
* Module * Module
* Play * Play
* Playbook * Playbook
* Role * Role</b></summary><br>
```
Task a call to a specific Ansible module Task a call to a specific Ansible module
Module the actual unit of code executed by Ansible on your own host or a remote host. Modules are indexed by category (database, file, network, …) and also referred as task plugins. Module the actual unit of code executed by Ansible on your own host or a remote host. Modules are indexed by category (database, file, network, …) and also referred as task plugins.
@ -281,11 +438,14 @@ Play One or more tasks executed on a given host(s)
Playbook One or more plays. Each play can be executed on the same or different hosts Playbook One or more plays. Each play can be executed on the same or different hosts
Role Ansible roles allows you to group resources based on certain functionality/service such that they can be easily reused. In a role, you have directories for variables, defaults, files, templates, handlers, tasks, and metadata. You can then use the role by simply specifying it in your playbook. Role Ansible roles allows you to group resources based on certain functionality/service such that they can be easily reused. In a role, you have directories for variables, defaults, files, templates, handlers, tasks, and metadata. You can then use the role by simply specifying it in your playbook.
``` </details>
* You want to run Ansible playbook only on specific minor version of your OS, how would you achieve that? <details>
<summary><b>You want to run Ansible playbook only on specific minor version of your OS, how would you achieve that?</b></summary><br>
</details>
* Write a task to create the directory /tmp/new_directory <details>
<summary><b>Write a task to create the directory /tmp/new_directory</b></summary><br>
``` ```
- name: Create a new directory - name: Create a new directory
@ -293,8 +453,10 @@ Role Ansible roles allows you to group resources based on certain functional
path: "/tmp/new_directory" path: "/tmp/new_directory"
state: directory state: directory
``` ```
</details>
* What would be the result of the following play? <details>
<summary><b>What would be the result of the following play?</b></summary><br>
``` ```
--- ---
@ -307,11 +469,11 @@ Role Ansible roles allows you to group resources based on certain functional
msg: "It's me, {{ ansible_hostname }}" msg: "It's me, {{ ansible_hostname }}"
``` ```
```
When given a written code, always inspect it thoroughly. If your answer is “this will fail” then you are right. We are using a fact (ansible_hostname), which is a gathered piece of information from the host we are running on. But in this case, we disabled facts gathering (gather_facts: no) so the variable would be undefined which will result in failure. When given a written code, always inspect it thoroughly. If your answer is “this will fail” then you are right. We are using a fact (ansible_hostname), which is a gathered piece of information from the host we are running on. But in this case, we disabled facts gathering (gather_facts: no) so the variable would be undefined which will result in failure.
``` </details>
* Write a playbook to install zlib and vim on all hosts if the file /tmp/mario exists on the system. <details>
<summary><b>Write a playbook to install zlib and vim on all hosts if the file /tmp/mario exists on the system.</b></summary><br>
``` ```
--- ---
@ -335,8 +497,10 @@ When given a written code, always inspect it thoroughly. If your answer is “th
with_items: "{{ package_list }}" with_items: "{{ package_list }}"
when: mario_f.stat.exists when: mario_f.stat.exists
``` ```
</details>
* Write a playbook to deploy the file /tmp/system_info on all hosts except for controllers group, with the following content <details>
<summary><b>Write a playbook to deploy the file /tmp/system_info on all hosts except for controllers group, with the following content</b></summary><br>
``` ```
I'm <HOSTNAME> and my operating system is <OS> I'm <HOSTNAME> and my operating system is <OS>
@ -363,105 +527,137 @@ The content of the system_info.j2 template
# {{ ansible_managed }} # {{ ansible_managed }}
I'm {{ ansible_hostname }} and my operating system is {{ ansible_distribution } I'm {{ ansible_hostname }} and my operating system is {{ ansible_distribution }
``` ```
</details>
## Terraform ## Terraform
##### Beginner #### :baby: Beginner
* Can you explain what is Terraform? How it works? <details>
* What benefits infrastructure-as-code has? <summary><b>Can you explain what is Terraform? How it works?</b></summary><br>
</details>
<details>
<summary><b>What benefits infrastructure-as-code has?</b></summary><br>
```
- fully automated process of provisoning, modifying and deleting your infrastructure - fully automated process of provisoning, modifying and deleting your infrastructure
- version control for your infrastructure which allows you to quickly rollback to previous versions - version control for your infrastructure which allows you to quickly rollback to previous versions
- valide infrastructure quoality and stability with automated tests and code reviews - valide infrastructure quoality and stability with automated tests and code reviews
- makes infrastructure tasks less reptitive - makes infrastructure tasks less reptitive
``` </details>
* Why Terraform and not other technologies? (e.g. Ansible, Puppet, CloufFormation) <details>
<summary><b>Why Terraform and not other technologies? (e.g. Ansible, Puppet, CloufFormation)</b></summary><br>
</details>
## Containers ## Containers
* How containers different from VMs? <details>
* In which scenarios would you use containers and in which you would prefer to use VMs? <summary><b>How containers different from VMs?</b></summary><br>
</details>
<details>
<summary><b>In which scenarios would you use containers and in which you would prefer to use VMs?</b></summary><br>
</details>
## Docker ## Docker
* What happens when you run `docker run hello-world`? <details>
<summary><b>What happens when you run `docker run hello-world`?</b></summary><br>
```
Docker CLI passes your request to Docker daemon. Docker CLI passes your request to Docker daemon.
Docker daemon downloads the image from Docker Hub Docker daemon downloads the image from Docker Hub
Docker daemon creates a new container by using the image it downloaded Docker daemon creates a new container by using the image it downloaded
Docker daemon redirects output from container to Docker CLI which redirects it to the standard output Docker daemon redirects output from container to Docker CLI which redirects it to the standard output
``` </details>
* How do you run a container? <details>
<summary><b>How do you run a container?</b></summary><br>
</details>
* What do you see when you run `docker ps`? <details>
<summary><b>What do you see when you run `docker ps`?</b></summary><br>
</details>
* What `docker commit` does? when will you use it? <details>
<summary><b>What `docker commit` does? when will you use it?</b></summary><br>
</details>
* Explain what is Dockerfile used for and the content of the following Dockerfile <details>
<summary><b>How would you transfer data from one container into another?</b></summary><br>
</details>
``` <details>
FROM registry.access.redhat.com/rhel7/rhel <summary><b>What is the difference between ADD and COPY in Dockerfile?</b></summary><br>
</details>
RUN yum -y install httpd && yum -y update; yum clean all <details>
<summary><b>What is the difference between CMD and RUN in Dockerfile?</b></summary><br>
</details>
EXPOSE 80 <details>
ENTRYPOINT [ "/usr/sbin/httpd" ] <summary><b>Explain what is Docker compose and what is it used for</b></summary><br>
CMD [ "-D", "FOREGROUND" ] </details>
```
Answer: <details>
<summary><b>What are the differences between Docker compose, Docker swarm and Kuberenets?</b></summary><br>
</details>
``` <details>
Use the image 'rhel7/rhel' from the registry 'registry.access.redhat.com` to run httpd. <summary><b>Explain Docker interlock</b></summary><br>
Befor running it, install the httpd package, update all packages and expose port 80. </details>
```
* How would you transfer data from one container into another? <details>
<summary><b>What is the difference between Docker Hub and Docker cloud?</b></summary><br>
* What is the difference between ADD and COPY in Dockerfile?
* What is the difference between CMD and RUN in Dockerfile?
* Explain what is Docker compose and what is it used for
* What are the differences between Docker compose, Docker swarm and Kuberenets?
* Explain Docker interlock
* What is the difference between Docker Hub and Docker cloud?
```
Docker Hub is a native Docker registry service which allows you to run pull Docker Hub is a native Docker registry service which allows you to run pull
and push commands to install and deploy Docker images from the Docker Hub. and push commands to install and deploy Docker images from the Docker Hub.
Docker Cloud is built on top of the Docker Hub so Docker Cloud provides Docker Cloud is built on top of the Docker Hub so Docker Cloud provides
you with more options/features compared to Docker Hub. One example is you with more options/features compared to Docker Hub. One example is
Swarm management which means you can create new swarms in Docker Cloud. Swarm management which means you can create new swarms in Docker Cloud.
``` </details>
## Kubernetes ## Kubernetes
* What is Kubernetes? <details>
* Why Docker isn't enough? Why do we need Kubernetes? <summary><b>What is Kubernetes?</b></summary><br>
* Describe the architecture of Kuberenets </details>
* How do you monitor your Kuberenets?
* What is kubectl? How do you use it? <details>
* What is kubconfig? What do you use it for? <summary><b>Why Docker isn't enough? Why do we need Kubernetes?</b></summary><br>
* How do you create users? </details>
<details>
<summary><b>Describe the architecture of Kuberenets</b></summary><br>
</details>
<details>
<summary><b>How do you monitor your Kuberenets?</b></summary><br>
</details>
<details>
<summary><b>What is kubectl? How do you use it?</b></summary><br>
</details>
<details>
<summary><b>What is kubconfig? What do you use it for?</b></summary><br>
</details>
<details>
<summary><b>How do you create users?</b></summary><br>
</details>
## Python ## Python
##### beginner #### :baby: Beginner
* What data type supported in Python and which of them are mutable? <details>
What function can you use to show that a certain data type is mutable? <summary><b>What data type supported in Python and which of them are mutable?
What function can you use to show that a certain data type is mutable?</b></summary><br>
```
The mutable data types are: The mutable data types are:
List List
@ -476,11 +672,11 @@ The immutable data types are:
Tuple Tuple
The id function can be used to check if a given variable is mutable or not. The id function can be used to check if a given variable is mutable or not.
``` </details>
* What is PEP8? Give an example of 5 style guidelines <details>
<summary><b>What is PEP8? Give an example of 5 style guidelines</b></summary><br>
```
PEP8 is a list of coding conventions and style guidelines for Python PEP8 is a list of coding conventions and style guidelines for Python
5 style guidelines: 5 style guidelines:
@ -490,62 +686,68 @@ PEP8 is a list of coding conventions and style guidelines for Python
3. Use commas when making a tuple of one element 3. Use commas when making a tuple of one element
4. Use spaces (and not tabs) for indentation 4. Use spaces (and not tabs) for indentation
5. Use 4 spaces per indentation level 5. Use 4 spaces per indentation level
``` </details>
* Write a program which will revert a string (e.g. pizza -> azzip) <details>
<summary><b>Write a program which will revert a string (e.g. pizza -> azzip)</b></summary><br>
``` ```
Shortest way is str[::-1] Shortest way is str[::-1]
"Classic" way: "Classic" way:
``` ```
</details>
##### Intermediate <details>
<summary><b>What _ is used for in Python?</b></summary><br>
* What _ is used for in Python?
```
1. Translation lookup in i18n 1. Translation lookup in i18n
2. Hold the result of the last executed expression or statement 2. Hold the result of the last executed expression or statement
3. As a general purpose "throwaway" variable name. For example: x, y, _ = get_data() (x and y are used but since we don't care about third variable, we "threw it away"). 3. As a general purpose "throwaway" variable name. For example: x, y, _ = get_data() (x and y are used but since we don't care about third variable, we "threw it away").
``` </details>
* Sort a list of lists by the second item of each nested list <details>
<summary><b>Sort a list of lists by the second item of each nested list</b></summary><br>
``` ```
li = [[1, 4], [2, 1], [3, 9], [4, 2], [4, 5]] li = [[1, 4], [2, 1], [3, 9], [4, 2], [4, 5]]
sorted(x, key=lambda l: l[1]) sorted(x, key=lambda l: l[1])
``` ```
</details>
* You have the following lists: [{'name': 'Mario', 'food': ['mushrooms', 'goombas']}, {'name': 'Luigi', 'food': ['mushrooms', 'turtles']}] <details>
Extract all type of foods. Final output should be: {'mushrooms', 'goombas', 'turtles'} <summary><b>You have the following lists: [{'name': 'Mario', 'food': ['mushrooms', 'goombas']}, {'name': 'Luigi', 'food': ['mushrooms', 'turtles']}]
Extract all type of foods. Final output should be: {'mushrooms', 'goombas', 'turtles'}</b></summary><br>
``` ```
set([food for bro in x for food in bro['food']]) set([food for bro in x for food in bro['food']])
``` ```
</details>
## Prometheus ## Prometheus
* Describe the following Prometheus components: <details>
<summary><b>Describe the following Prometheus components:
- Prometheus server - Prometheus server
- Push Gateway - Push Gateway
- Alert Manager - Alert Manager</b></summary><br>
```
Prometheus server responsible for scraping the storing the data Prometheus server responsible for scraping the storing the data
Push gateway is used for short-lived jobs Push gateway is used for short-lived jobs
Alert manager is responsible for alerts ;) Alert manager is responsible for alerts ;)
``` </details>
* What is an exporter? What is it used for? <details>
<summary><b>What is an exporter? What is it used for?</b></summary><br>
</details>
## Git ## Git
###### beginner #### :baby: Beginner
<details> <details>
<summary>What is the difference between `git pull` and `git fetch`?</summary> <summary><b>What is the difference between `git pull` and `git fetch`?</b></summary><br>
Shortly, git pull = git fetch + git merge Shortly, git pull = git fetch + git merge
@ -557,8 +759,7 @@ a separate branch in your local repository
</details> </details>
<details> <details>
<summary>Explain the following: `git directory`, `working directory` and `staging area` <summary><b>Explain the following: <code>git directory`</code>, <code>`working directory`</code> and <code>staging area</code></b></summary><br>
</summary>
The Git directory is where Git stores the metadata and object database for your project. This is the most important part of Git, and it is what is copied when you clone a repository from another computer. The Git directory is where Git stores the metadata and object database for your project. This is the most important part of Git, and it is what is copied when you clone a repository from another computer.
@ -568,20 +769,41 @@ The staging area is a simple file, generally contained in your Git directory, th
This answer taken from [git-scm.com](https://git-scm.com/book/en/v1/Getting-Started-Git-Basics#_the_three_states) This answer taken from [git-scm.com](https://git-scm.com/book/en/v1/Getting-Started-Git-Basics#_the_three_states)
</details> </details>
<details> <details>
<summary>How do you resolve git conflicts?</summary> <summary><b>How to resolve git merge conflicts?</b></summary><br>
<p>
First, you open the files which are in conflict and identify what are the conflicts.
Next, based on what is accepted in your company or team, you either discuss with your
colleagues on the conflicts or resolve them by yourself
After resolving the conflicts, you add the files with `git add <file_name>`
Finally, you run `git rebase --continue`
</p>
</details>
<details>
<summary><b>What is the difference between `git reset` and `git revert`?</b></summary><br>
<p>
`git revert` creates a new commit which undoes the changes from last commit.
`git reset` depends on the usage, can modify the index or change the commit which the branch head
is currently pointing at.
</p>
</details>
<details>
<summary><b>In what situations are you using `git rebase`?</b></summary><br>
</details> </details>
<details> <details>
<summary>What is the difference between `git reset` and `git reverse`?</summary> <summary><b>What branching strategies are you familiar with</b></summary><br>?
</details> </details>
#### :star: Advanced
<details> <details>
<summary>In what situations are you using `git rebase`?</summary> <summary><b>Explain Git octopus merge</b></summary><br>
</details>
<details>
<summary>What branching strategies are you familiar with?</summary>
</details>
<details>
<summary>Explain octopus strategy</summary>
</details> </details>
## Scenarios ## Scenarios

3
scripts/count_questions.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cat README.md | grep \<\/summary\> | wc -l