Upload Button Icon Add office photos

Filter interviews by

Kites Consultancy Services Jr Python Developer Interview Questions and Answers

Updated 26 Feb 2023

Kites Consultancy Services Jr Python Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Jan 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 - Aptitude Test 

First round is resume shortlisted and send round aptitude test

Round 3 - Coding Test 

They asking all concepts in python beginning to high level

Round 4 - HR 

(2 Questions)

  • Q1. They asking salary expectation and feature goal.
  • Q2. Salary expectation and long term goal,

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep preparing on your subject. Don't loose your self. Before I attended 5 interview finally I selected in this company.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Recruiter 

(1 Question)

  • Q1. Behavorial Questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is python .why python used mostly .
  • Ans. 

    Python is a high-level programming language known for its simplicity, readability, and versatility. It is widely used for web development, data analysis, artificial intelligence, and more.

    • Python is easy to learn and read, making it a great choice for beginners and experienced developers alike.

    • Python has a large standard library and many third-party packages, making it suitable for a wide range of applications.

    • Python is...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Basic in python
  • Q2. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created from an existing class.

    • Allows for code reuse and avoids redundancy

    • The new class (subclass) inherits properties and methods from the existing class (superclass)

    • Subclass can add new properties and methods or override existing ones

    • Example: A Car class can inherit properties and methods from a Vehicle class

  • Answered by AI
  • Q3. What is lamda functions
  • Ans. 

    Lambda functions are anonymous functions that can be defined without a name.

    • Lambda functions are defined using the lambda keyword.

    • They can take any number of arguments, but can only have one expression.

    • They are often used as arguments for higher-order functions.

    • Example: lambda x: x**2 defines a lambda function that squares its input.

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

    Numpy is a Python library for numerical computing with support for large, multi-dimensional arrays and matrices.

    • Numpy provides efficient mathematical operations on arrays.

    • It is widely used in scientific computing, data analysis, and machine learning.

    • Numpy arrays are homogeneous and can be indexed and sliced like lists.

    • Broadcasting allows for element-wise operations on arrays of different shapes.

    • Numpy also includes line...

  • Answered by AI
  • Q5. What is pandas
  • Ans. 

    Pandas is a Python library used for data manipulation and analysis.

    • Pandas provides data structures for efficiently storing and manipulating large datasets.

    • It offers tools for data cleaning, merging, reshaping, and visualization.

    • Pandas can handle various data formats such as CSV, Excel, SQL databases, and JSON.

    • It is widely used in data science, finance, economics, and other fields.

    • Example: df = pd.read_csv('data.csv') c

  • Answered by AI
  • Q6. How many types operators
  • Ans. 

    There are 7 types of operators in Python.

    • Arithmetic operators (+, -, *, /, %, //, **)

    • Comparison operators (==, !=, >, <, >=, <=)

    • Assignment operators (=, +=, -=, *=, /=, %=, //=, **=)

    • Logical operators (and, or, not)

    • Bitwise operators (&, |, ^, ~, <<, >>)

    • Identity operators (is, is not)

    • Membership operators (in, not in)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Little bit of English and then ask the basics in python

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a Python program that can be used to determine the best price for selling stocks?
  • Q2. Can you write a Python program to determine whether two given words are anagrams of each other without using built-in functions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Engage in these types of practices before attending the Infosys interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between list & tuple?
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List uses square brackets [], tuple uses parentheses ().

    • List elements can be changed, added, or removed, tuple elements cannot be changed.

    • Lists are used for collections of items that may need to be modified, tuples are used for fixed collections of items.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. What is namespace and its types?
  • Ans. 

    Namespace is a way to organize variables and functions in a program to avoid naming conflicts.

    • Namespace helps in avoiding naming conflicts by providing a unique space for each identifier.

    • Types of namespaces include global namespace, local namespace, built-in namespace, and module namespace.

    • Example: In Python, each module has its own namespace where all the variables and functions defined in that module reside.

  • Answered by AI
  • Q3. Write code to explain multiple inheritance
  • Ans. 

    Multiple inheritance in Python allows a class to inherit attributes and methods from more than one parent class.

    • Python supports multiple inheritance by allowing a class to inherit from multiple parent classes.

    • The order of parent classes in the inheritance list matters, as methods are searched for in the order they appear.

    • Diamond problem can occur in multiple inheritance when two parent classes have a common ancestor cl...

  • Answered by AI
  • Q4. Define lambda function and give an example?
  • Ans. 

    Lambda function is an anonymous function defined using the lambda keyword in Python.

    • Lambda functions are used for creating small, one-time use functions without a name.

    • Syntax: lambda arguments: expression

    • Example: double = lambda x: x * 2

  • Answered by AI
  • Q5. Oops concept,decorator,iterator.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write a code for reverse an integer?
  • Ans. 

    Use string manipulation to reverse an integer in Python.

    • Convert the integer to a string

    • Use string slicing to reverse the string

    • Convert the reversed string back to an integer

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Differences between docker image and container
  • Ans. 

    Docker image is a template used to create containers, while a container is a running instance of an image.

    • Docker image is read-only, while a container is a writable instance of an image.

    • Multiple containers can be created from the same image, but each container is isolated from others.

    • Containers can be started, stopped, moved, and deleted, while images are static and cannot be changed.

    • Images are used to package an appli...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

String,lists,dict and coding knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - reverse a string without using in built functions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to python web framework
  • Q2. Real time python project problem solving questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List & tuple diff
  • Q2. Pickling & unpickling

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was very easy and basic questions asked. I answered all of them correctly and also solved coding question but I got stuck in one question and interviewer told me she is done with interview. Next day, I called HR and asked her for feedback, she told me that the feedback was not positive. I'm not getting what went wrong as she told she didn't got detailed feedback just that it's not positive.

Kites Consultancy Services Interview FAQs

How many rounds are there in Kites Consultancy Services Jr Python Developer interview?
Kites Consultancy Services interview process usually has 4 rounds. The most common rounds in the Kites Consultancy Services interview process are Resume Shortlist, Aptitude Test and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Kites Consultancy Services interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Kites Consultancy Services Jr Python Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Compare Kites Consultancy Services with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview