Upload Button Icon Add office photos

Ivitesse Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Ivitesse Technologies Python Developer Interview Questions and Answers

Updated 14 Mar 2022

Ivitesse Technologies Python Developer Interview Experiences

1 interview found

Round 1 - One-on-one 

(2 Questions)

  • Q1. Prime number question
  • Q2. Iterating through the values of a given dictionary
  • Ans. 

    Iterating through a dictionary in Python to access its values.

    • Use a for loop to iterate through the keys of the dictionary.

    • Access the values using the keys.

    • Use the values() method to directly iterate through the values.

    • Use the items() method to iterate through both keys and values.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a really good experience of the interview experience with ivitesse technology and the difficulty level was up to the mark.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ivitesse Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Python Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Explain the logic of a program to reverse a given string word by ... read more
asked in Cognizant
Q2. What is the difference between a variable and an object?
asked in TCS
Q3. 1. Difference between tuple and a list? 2. What are decorators? 3 ... read more
Q4. How do you convert a .txt file to a .csv file using Python?
asked in Accenture
Q5. Write a program to print a string in reverse without using built- ... read more

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic programming concepts, OOPs & logical questions
  • Q2. Particular technology related and basic array programming

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process was very smooth

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Drill Down,Drill through
  • Q2. Dax functions like date add,date diff,time Intelligence
  • Q3. Import direct query

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very nice.If u are confident u can easily crack the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What projects have you worked on?
  • Ans. 

    I have worked on various software projects, including web applications, mobile apps, and backend systems using diverse technologies.

    • E-commerce Platform: Developed a full-stack e-commerce application using Java Spring Boot for the backend and React for the frontend, implementing features like user authentication and payment processing.

    • Mobile App Development: Created a cross-platform mobile application using Flutter that...

  • Answered by AI
  • Q2. Write a program to print a horizontal pattern of digits as star columns?

I applied via LinkedIn

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 

They asked five problems. We need to solve atleast three problems out of five.

Round 3 - Aptitude Test 

They asked ten questions related to reasoning and quantitative aptitude.We need to solve atleast 7 out of 10.

Round 4 - Technical 

(2 Questions)

  • Q1. They asked questions based on your project which you mentioned in your resume and skills.
  • Q2. They asked about your personality related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge about coding and technical knowledge
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Based on the project need to complete the task!

Round 3 - Technical 

(1 Question)

  • Q1. General Python Questions, working project-based questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The first round was an aptitude test. There were 30 questions with 1 marks for each.

Round 2 - Coding Test 

After being selected from the first round the second round was the Coding test there were 6 sets and 1 set had 3 questions. they told me to do it in an online compiler without an internet connection.

Round 3 - Technical 

(1 Question)

  • Q1. After being selected from the coding test. They took technical interviews and asked very basic questions like oops and all but they were doing cross-questioning.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

30min Pseudo Code,Ratio and Proportion

Round 2 - Coding Test 

1 hour Array,HashMap

Round 3 - Technical 

(4 Questions)

  • Q1. Write a program a string is Anagram or not
  • Ans. 

    Program to check if a string is an Anagram or not

    • Create a function that takes in two strings as input

    • Sort the characters in both strings and compare if they are equal

    • Return true if they are anagrams, false otherwise

  • Answered by AI
  • Q2. How to connect mongodb with database
  • Ans. 

    To connect MongoDB with a database, you need to use the MongoDB URI and a MongoDB client library.

    • Use the MongoDB URI to specify the connection details such as host, port, username, password, and database name

    • Install a MongoDB client library like Mongoose for Node.js or pymongo for Python

    • Use the client library to establish a connection to the MongoDB database and perform CRUD operations

  • Answered by AI
  • Q3. What is event listener
  • Ans. 

    An event listener is a function that waits for a specific event to occur and then triggers a response.

    • Event listeners are commonly used in web development to handle user interactions like clicks, keypresses, etc.

    • They are attached to specific elements and listen for events to occur on those elements.

    • Once the event occurs, the listener executes a callback function to respond to the event.

    • Example: Adding a click event lis...

  • Answered by AI
  • Q4. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. How to reverse a string without using extra space
  • Ans. 

    Use two pointers to swap characters in place

    • Initialize two pointers, one at the beginning of the string and one at the end

    • Swap characters at the two pointers and move them towards each other until they meet or cross

    • Repeat the process until the entire string is reversed

  • Answered by AI
  • Q2. Find a number that not present in array in O(N) time complexity array contain only 0 to n numbers
  • Ans. 

    Use bitwise XOR operation to find the missing number in O(N) time complexity.

    • Iterate through the array and XOR all the elements with their indices and the array length.

    • The missing number will be the result of XORing all the elements with their indices and the array length.

  • Answered by AI
  • Q3. Why should you join this company
  • Q4. How many interview have you give previously and why you get rejected

Skills evaluated in this interview

Ivitesse Technologies Interview FAQs

How many rounds are there in Ivitesse Technologies Python Developer interview?
Ivitesse Technologies interview process usually has 1 rounds. The most common rounds in the Ivitesse Technologies interview process are One-on-one Round.
What are the top questions asked in Ivitesse Technologies Python Developer interview?

Some of the top questions asked at the Ivitesse Technologies Python Developer interview -

  1. Iterating through the values of a given diction...read more
  2. prime number quest...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

kipi.ai Interview Questions
4.1
 • 58 Interviews
QualiZeal Interview Questions
4.3
 • 56 Interviews
Affine Interview Questions
3.3
 • 51 Interviews
View all
Team Lead
6 salaries
unlock blur

₹3.7 L/yr - ₹5 L/yr

Qa Automation Testing Engineer
5 salaries
unlock blur

₹4.6 L/yr - ₹8.8 L/yr

HR Executive
5 salaries
unlock blur

₹1.3 L/yr - ₹3.7 L/yr

Application Support Engineer
5 salaries
unlock blur

₹2.7 L/yr - ₹4.3 L/yr

QA Automation Engineer
5 salaries
unlock blur

₹8 L/yr - ₹9 L/yr

Explore more salaries
Compare Ivitesse Technologies with

Medcode

4.4
Compare

Cyfuture

3.0
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare
write
Share an Interview