From 64731a6bcf1b364e9460e7910f33932a8e86d18c Mon Sep 17 00:00:00 2001 From: abregman Date: Thu, 19 Dec 2019 17:47:17 +0200 Subject: [PATCH] Add a couple of questions --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e1bde3..26b79ae 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ :information_source:  This repository contains questions on various DevOps and SRE related topics -:bar_chart:  There are currently **668** questions +:bar_chart:  There are currently **672** questions :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) @@ -2511,7 +2511,7 @@ There are many other characteristics but these are the main ones that every pyth
-What data types supported in Python and which of them are mutable? How can you show that a certain data type is mutable?
+What build-in types Python has? Which of them are mutable? How can you show that a certain data type is mutable?
The mutable data types are: @@ -3049,6 +3049,10 @@ def sum(a, b): Explain mocks
+
+How do you measure execution time of small code snippets?
+
+ ##### Flask
@@ -3066,6 +3070,12 @@ def sum(a, b): #### :star: Advanced +
+What data types are you familiar with that are not Python built-in types but still provided by modules which are part of the standard library?
+ +This is a good reference https://docs.python.org/3/library/datatypes.html +
+
Explain what is a decorator
@@ -3213,6 +3223,10 @@ a = f() Explain Context Manager
+
+Tell me everything you know about concurrency in Python
+
+
Explain the Buffer Protocol
@@ -3265,6 +3279,12 @@ Logging What is the different between infrastructure monitoring and application monitoring? (methods, tools, ...)
+##### Python Geeks :) + +
+Tell me something about Python that you think most people don't know
+
+ ## Prometheus