Upload Button Icon Add office photos

Filter interviews by

Infotech Python Developer Interview Questions, Process, and Tips

Updated 5 Oct 2021

Infotech Python Developer Interview Experiences

1 interview found

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

Interview Questionnaire 

12 Questions

  • Q1. What is python
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is an interpreted language, which means it does not need to be compiled before running.

    • It has a large standard library that provides many useful modules and functions.

    • Python supports multiple programming paradigms, including procedural, object-oriented, and functional programming.

    • It is widely used in web development, data analys...

  • Answered by AI
  • Q2. What is reang
  • Ans. 

    reang is not a recognized term in Python development.

    • reang is not a Python keyword, module, or function.

    • There is no known reference or documentation for reang in Python.

    • It is possible that reang is a typo or a mispronunciation of another term.

  • Answered by AI
  • Q3. What is while loop
  • Ans. 

    A while loop is a control flow statement that allows code to be executed repeatedly based on a condition.

    • The loop continues until the condition becomes false

    • The condition is checked before each iteration

    • The loop body must include a way to modify the condition to avoid an infinite loop

  • Answered by AI
  • Q4. What is nested loop
  • Ans. 

    A nested loop is a loop inside another loop. It allows iterating over multiple levels of data structures.

    • Nested loops are used when we need to perform repetitive tasks within repetitive tasks.

    • The inner loop is executed for each iteration of the outer loop.

    • Nested loops can be used to iterate over multi-dimensional arrays or nested data structures.

    • Example: Printing a multiplication table using nested loops.

  • Answered by AI
  • Q5. What is for loop
  • Ans. 

    A for loop is a control flow statement that iterates over a sequence of elements and executes a block of code for each element.

    • A for loop is used to iterate over a sequence such as a list, tuple, or string.

    • It consists of an initialization, condition, and increment/decrement statement.

    • The loop continues until the condition is false.

    • The code block inside the loop is executed for each element in the sequence.

    • Example: for

  • Answered by AI
  • Q6. What is keyword
  • Ans. 

    A keyword is a reserved word in a programming language that has a specific meaning and cannot be used as a variable name.

    • Keywords are used to define the syntax and structure of a programming language.

    • They cannot be used as variable names or identifiers.

    • Examples of keywords in Python include 'if', 'else', 'for', 'while', 'def', 'class', and 'import'.

  • Answered by AI
  • Q7. What is function
  • Ans. 

    A function is a block of code that performs a specific task and can be called multiple times throughout a program.

    • Functions are defined using the 'def' keyword followed by the function name and parentheses.

    • Functions can take arguments (inputs) and return values (outputs).

    • Functions can be called multiple times throughout a program, making code more efficient and modular.

    • Example: def add_numbers(x, y): return x + y

    • Exampl

  • Answered by AI
  • Q8. What is data type
  • Ans. 

    Data type is a classification of data based on the type of value it holds.

    • Data type determines the operations that can be performed on the data

    • Examples of data types include integers, strings, booleans, and floats

    • Data types can be static or dynamic depending on the programming language

  • Answered by AI
  • Q9. What is pep?
  • Ans. 

    PEP stands for Python Enhancement Proposal, which is a design document providing information or describing a new feature for Python.

    • PEP is used to propose and discuss new features or changes in Python

    • PEP is maintained by the Python community

    • PEP is assigned a number and categorized based on its type

    • Examples of PEPs include PEP 8 (Style Guide for Python Code) and PEP 20 (The Zen of Python)

  • Answered by AI
  • Q10. What is the difference between list and tuples in python?
  • Ans. 

    Lists are mutable while tuples are immutable in Python.

    • Lists use square brackets [] while tuples use parentheses ().

    • Elements in a list can be added, removed, or modified while tuples cannot be modified.

    • Lists are used for collections of homogeneous items while tuples are used for heterogeneous items.

    • Lists are generally used for large collections of data while tuples are used for smaller collections or for data that shou...

  • Answered by AI
  • Q11. What is lambda functions is python
  • Ans. 

    Lambda functions are anonymous functions that can be defined in a single line of code.

    • 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
  • Q12. What is the definition between python Arrays and list
  • Ans. 

    Arrays are homogeneous data structures while lists are heterogeneous data structures in Python.

    • Arrays are fixed in size while lists are dynamic.

    • Arrays can only contain elements of the same data type while lists can contain elements of different data types.

    • Arrays are faster and more memory-efficient for numerical operations.

    • Lists have more built-in functions and are more versatile for general-purpose programming.

    • Example...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - What are tuples in python

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python questions
  • Q2. SQL join query and update query
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Other basic questions

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Assignment 

Two to three rounds are there 1. Coding
2. L1
3. L2

Round 2 - Coding Test 

Test from normal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared from basic.
Then focus on project explanation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Project architecture
  • Q3. Sns vs SQS architecture
  • Ans. 

    SNS is a pub/sub messaging service while SQS is a message queue service in AWS architecture.

    • SNS allows for push notifications to multiple subscribers, while SQS is used for decoupling services and handling asynchronous tasks.

    • SNS is used for real-time messaging and event-driven architecture, while SQS is used for reliable message processing and scaling.

    • SNS supports multiple message delivery protocols like HTTP, HTTPS, E...

  • Answered by AI
  • Q4. S3 file parking and triggers
  • Q5. Explain Eventbridge
  • Ans. 

    Eventbridge is a serverless event bus service provided by AWS for connecting applications using events.

    • Eventbridge allows different AWS services, SaaS applications, and custom applications to communicate with each other through events.

    • It simplifies the process of building event-driven architectures by decoupling producers and consumers of events.

    • Eventbridge can be used to trigger automated workflows, connect different ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via campus placement at Vimal Jyothi Engineering College, Kannur and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding and debugging questions
  • Q2. Aptitude questions based on the technical part
Round 2 - English Assessment 

(1 Question)

  • Q1. Checking our reading writing listening speaking skills
Round 3 - HR 

(1 Question)

  • Q1. Asked questions about oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly interview process
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write a code for star pattern

Round 2 - Group Discussion 

Basic coding question

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Tell me something about company
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 May 2023. There were 2 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. She asking Work experience related and expected CTC etc.
  • Q2. Your resume is shortlisted then call back you.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python questions
  • Q2. SQL join query and update query
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Other basic questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid Sudoku leetcode problem
  • Q2. Generate Parentheses leetcode problem
  • Ans. 

    Generate all valid combinations of parentheses for given n pairs

    • Use backtracking to generate all valid combinations of parentheses

    • Keep track of the number of open and close parentheses used

    • Add open parenthesis if there are remaining open parentheses, add close parenthesis if there are more open than close parentheses

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. How you will scale your existing in use database? What are the types of scaling? How flask handles multiple requests?
  • Ans. 

    Scaling a database involves horizontal or vertical scaling, with types including sharding, replication, and partitioning. Flask handles multiple requests using a WSGI server like Gunicorn.

    • Types of scaling include horizontal scaling (adding more servers), vertical scaling (upgrading server resources), sharding (splitting data across multiple servers), replication (copying data to multiple servers), and partitioning (div...

  • Answered by AI
Contribute & help others!
anonymous
You can choose to be anonymous

Infotech Interview FAQs

How to prepare for Infotech Python Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infotech. The most common topics and skills that interviewers at Infotech expect are Django, Javascript, MySQL, Python and AWS.
What are the top questions asked in Infotech Python Developer interview?

Some of the top questions asked at the Infotech Python Developer interview -

  1. What is the definition between python Arrays and l...read more
  2. What is the difference between list and tuples in pytho...read more
  3. What is pyth...read more

Tell us how to improve this page.

Infotech Python Developer Salary
based on 5 salaries
₹2 L/yr - ₹6.8 L/yr
42% less than the average Python Developer Salary in India
View more details
Software Engineer
30 salaries
unlock blur

₹2 L/yr - ₹8.6 L/yr

Software Developer
26 salaries
unlock blur

₹1.4 L/yr - ₹6.5 L/yr

Desktop Support Engineer
14 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Softwaretest Engineer
13 salaries
unlock blur

₹1.8 L/yr - ₹9.4 L/yr

GIS Engineer
12 salaries
unlock blur

₹1 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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