Upload Button Icon Add office photos

Filter interviews by

ONORALL Django Developer Interview Questions and Answers

Updated 22 Dec 2021

ONORALL Django Developer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Focus on drf, migration, models, serializer , authentication , orm , and celery these topics are important for interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just make your own project and learn new things on daily basis.

Interview questions from similar companies

Django Developer Interview Questions & Answers

Infosys user image yugandhar reddy k

posted on 26 Apr 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Student details in create,update ,read, delete

Round 3 - HR 

(7 Questions)

  • Q1. I will be telling answer any one questions
  • Q2. Django framework
  • Q3. MVT and MVC crud,CSV,rest framework
  • Q4. Validation,url and view
  • Q5. Python programming
  • Q6. Class, inheritance, abstract, polymorphism
  • Q7. Function,data types
Round 4 - Technical 

(1 Question)

  • Q1. Any questions I will solve

Interview Preparation Tips

Topics to prepare for Infosys Django Developer interview:
  • Django
Interview preparation tips for other job seekers - You will give any tips
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. R u interested in sales
  • Ans. 

    Yes, I am interested in sales as it allows me to understand customer needs and provide solutions.

    • I enjoy interacting with customers and understanding their requirements.

    • I am motivated by meeting sales targets and achieving success.

    • I believe in the value of building relationships with clients to drive business growth.

  • Answered by AI
  • Q2. Ready to relocation
  • Ans. 

    Yes, I am ready for relocation.

    • I am open to relocating for the right opportunity

    • I have experience moving for previous jobs

    • I am excited about the possibility of living in a new city

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

HTML CSS javascript jQuery

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Link was active for 24 hours, I took the test at night.
Difficulty was medium.
There were some MCQs on Springboot/Java along with 2 DSA questions.

  • Q1. 

    Zigzag Binary Tree Traversal Problem

    Given a binary tree, compute the zigzag level order traversal of the node values in the tree. The zigzag traversal requires traversing levels from left to right, then ...

  • Ans. 

    Applied BFS for level order traversal.
    The core logic is how to append the current level nodes in the resultList.
    If currLevel is even:
    then append the curr level node list as it is to the resultList
    else:
    reverse the curr level node list and then append to the resultList.

    Finally return the resultList.

  • Answered Anonymously
  • Q2. 

    K Closest Points to Origin Problem Statement

    Your house is located at the origin (0,0) of a 2-D plane. There are N neighbors living at different points on the plane. Your goal is to visit exactly K neighb...

  • Ans. 

    As we need to find K closest restaurants to the source (0,0), I used priority queue(MaxHeap) in python to eliminate all the farthest restaurants and have only k closest restaurants left at the end of the loop.

    I had stored the elements in priority Queue as a pair [distance, coordinates], so that at I can directly get the coordinates for the k closest restaurants to return in the result.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

Technical round (Questions on Java, Spring Boot, Microservices, Rest APIs, OOPs and Solid principals).

Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaminimum 1 year of experienceJio Private Limited interview preparation:Topics to prepare for the interview - DSA problems, Spring Boot, Java, OOPs and SOLID principles, Micro Services, Rest APIs, MySQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare core concepts of OOPs and SOLID principles with some examples.
Tip 2 : Practice DSA Medium level question (Trees, Heaps, LinkedList, Dynamic Programming, BFS-DFS, Two pointer, Backtracking)
Tip 3 : For OA round, Prepare Spring Boot core concepts (For MCQs) along with DSA.

Application resume tips for other job seekers

Tip 1 : Mention all the previous projects tasks/achievements point wise along with the Tech Stack used.
Tip 2 : Practice explaining projects which were part of your work experience and be ready for follow up questions. 
Tip 3 : Specify relevant skills and certificates in the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them.

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection ob...

  • Answered by AI
  • Q2. What is the use of bean factory
  • Ans. 

    Bean factory is used for creating and managing instances of beans in Spring framework.

    • Bean factory is responsible for creating and managing instances of beans defined in the Spring configuration file.

    • It provides a way to decouple the configuration and specification of dependencies from the actual application code.

    • Bean factory supports different scopes of beans such as singleton, prototype, request, session, etc.

    • It also...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the full-stack development. On all the questions

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. What is System.out.println?
  • Ans. 

    System.out.println is a Java statement used to print output to the console.

    • System is a class in Java's core library.

    • out is a static member of the System class.

    • println is a method of the PrintStream class.

    • It is used to print output to the console.

    • It adds a newline character at the end of the output.

  • Answered by AI
  • Q2. What is static or final method?
  • Ans. 

    Static or final method is a method that belongs to a class rather than an instance of the class.

    • Static method can be called without creating an instance of the class.

    • Final method cannot be overridden by a subclass.

    • Static and final methods can be accessed using the class name.

    • Example: Math.max() is a static method in the Math class.

    • Example: String.toUpperCase() is a final method in the String class.

  • Answered by AI
  • Q3. What is collection?
  • Ans. 

    A collection is a group of objects that can be stored, manipulated, and retrieved as a single unit.

    • Collections are used to store and manage groups of related objects.

    • Java provides several built-in collection classes such as ArrayList, LinkedList, HashSet, etc.

    • Collections can be used to perform operations like sorting, searching, filtering, and more.

    • Collections can be generic or non-generic, depending on the type of obj

  • Answered by AI
  • Q4. Add string or integer value using map?
  • Ans. 

    Yes, we can add string or integer value using map in Java.

    • We can use put() method to add values to a map.

    • For string values, we can use String as the value type.

    • For integer values, we can use Integer as the value type.

    • Example: Map map = new HashMap<>(); map.put("key", "value");

    • Example: Map map = new HashMap<>(); map.put("key", 123);

  • Answered by AI
  • Q5. What is difference between sleep or wait method?
  • Ans. 

    Sleep method pauses the thread for a specified time, while wait method pauses the thread until notified.

    • Sleep method is a static method of Thread class, while wait method is an instance method of Object class.

    • Sleep method does not release the lock on the object, while wait method releases the lock and waits for notification.

    • Sleep method can be interrupted by another thread, while wait method can only be interrupted by ...

  • Answered by AI
  • Q6. What is join in sql?
  • Ans. 

    Join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query

    • Types of join include inner join, left join, right join, and full outer join

    • Join condition is specified using ON keyword

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

    • Join can also be used with subqueries

  • Answered by AI
  • Q7. SQL queries?
  • Ans. 

    SQL queries are used to retrieve, manipulate and manage data stored in relational databases.

    • SQL stands for Structured Query Language

    • Queries can be used to retrieve specific data from tables

    • Queries can also be used to update, insert or delete data

    • Examples of SQL queries include SELECT, INSERT, UPDATE and DELETE

    • Understanding SQL is important for working with databases in Java

  • Answered by AI
  • Q8. Http or generic?
  • Q9. Spring MVC flow?
  • Q10. Abstraction vs interface?
  • Ans. 

    Abstraction is a concept of hiding implementation details while interface is a contract that defines the behavior of a class.

    • Abstraction is achieved through abstract classes and methods

    • Interface is a collection of abstract methods and constants

    • Abstraction allows for flexibility in implementation

    • Interface allows for multiple inheritance

    • Abstraction is used for code reusability

    • Interface is used for achieving polymorphism

  • Answered by AI
  • Q11. Overloading vs overriding?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a different implementation of a method inherited from its superclass.

    • Overloading is resolved at compile-time based on the method signature.

    • Overriding is resolved at runtime based on the actual object type.

    • Overloading is used to provide different ways to call a method with different parameters.

    • Overrid...

  • Answered by AI
  • Q12. Encapsulation?

Interview Preparation Tips

Interview preparation tips for other job seekers - All are depend on your luck .nothing matter how's your knowledge.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare ONORALL with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview