Python django developer sollicitatievragen
119
Sollicitatievragen voor Python Django Developer gedeeld door sollicitantenMeest gestelde sollicitatievragen

# n=3 * * * @ * @ * @ * * * #n=5 * * * @ * * * @ * * * @ * * * @ * * * @ * * * somewhat similar to these !
5 antwoorden↳
I was only able to do this : * * * @ * * * @ * * @ * @ Minder
↳
Please elaborate your question.. How question pattern looks like. It's seems in single line and you printed in multiple lines... thank-you Minder
↳
n = int(input("num")) print("* " ) print("* ", end="") print("* ", end="") print("@ ", end="") print("\n") for i in range(n-2, 0, -1): m = n-1-i for j in range(i): print("* " , end="") print("@ ", end="") for k in range(m): print("* ",end="") print("\n") print(" ", end="") print(" ", end="") print("@ ", end="") print("* ", end="") print("* ") for m in range(5): if m<4: print(" ", end="") else: print("* ") Minder

Python Django Basics and Project Architecture
1 antwoorden↳
Questions are not very hard. Mostly around designing project architecture and up to mark basics. Minder

If you had to design from day zero, an horizontally scalable REST-API, which techniques would you suggest to use? How would you structure the architecture of the backend? How would you structure the DB?
1 antwoorden↳
I have mentioned that the backend application has to be stateless, so that no state information is stored with each app instance. Split everything in app layer, DB layer, cache, session db, etc. Then add a load balancer in front of you multiple app instances an you have a horizontally scalable REST API. Minder

Code review and bug fix of live code from their project.
1 antwoorden↳
Just go with the flow like you would in an office environment and it can be answered. Minder

tell me about oops concepts and how many types?
1 antwoorden↳
i give answer in detail about oops concepts.


Assume that as a result of a POSTed message you want to execute a long-running task (that normally lasts for 5 minutes). How would you implement this behavior?
1 antwoorden↳
Use an asyncronous task queue/job queue system like Celery or MRQ.

Q Make one form which takes normal registration details and deal with the majority of input data like date, numbers, string, and use validations also
1 antwoorden↳
I have to implement it within 1 hour or more. I have done it.