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

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. It's was basic testing questios, specific to selenium and Java.
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • A framework provides a structure for developers to build upon

    • It includes pre-written code and libraries to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include React for web development and TensorFlow for machine learning

  • Answered by AI
  • Q3. Basic java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, basically on manual testing, Selenium and Java

Skills evaluated in this interview

I applied via Referral and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I was asked about Python programming
  • Q2. My past experience job related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with technical skills

Interview Questionnaire 

1 Question

  • Q1. 3 rounds of interviews, 1. Technical: basics java & selenium & framework , 2. Technical: API and selenium questions, 3. Manager round: why you want to leave, some company-related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - work on java & framework

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Program for pattern printing ,bubble sort
  • Ans. 

    Program to print a pattern and implement bubble sort on an array of strings.

    • For pattern printing, use nested loops to print the desired pattern.

    • For bubble sort, compare adjacent elements and swap if necessary.

    • Use a loop to iterate through the array until no more swaps are needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are projects worked for latest client.
  • Q2. Reason for leaving the present company.
  • Q3. Pricing and output Determinations in SAP SD.
  • Ans. 

    Pricing and output determinations in SAP SD

    • Pricing procedure is defined in customizing and assigned to sales document type

    • Condition types are used to define pricing elements

    • Output determination is used to determine which documents are to be printed or sent electronically

    • Output types are assigned to sales document types and delivery document types

  • Answered by AI
  • Q4. Questions related to IDOC.
  • Q5. Basic controls of sales document type and item category.
  • Ans. 

    Sales document type and item category controls

    • Sales document type controls the document flow and determines the fields that are required to be filled in the sales order

    • Item category controls the item level data and determines the pricing, account assignment, and delivery relevance

    • Both controls are configured in customizing and can be assigned to different sales document types

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to your resume points.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Online questions were based on scenarios to write SQL queries. Also got few questions on Python as well for which I had only limited knowledge.

Round 2 - Technical 

(8 Questions)

  • Q1. I'm listing some of the questions here which the interviewers (2 panel resources) asked me regarding Informatica ETL, Oracle DB and I might have missed some of them. What types of indexes are used on Orac...
  • Q2. What happens if Treat source row property as "Update" at session level but at target object "Delete" is checked?
  • Ans. 

    The source row will be treated as an update, but the target object will be deleted.

    • The session level property 'Treat source row as Update' will be applied to the source row.

    • The target object will be deleted regardless of the update status of the source row.

    • This can result in data loss if the source row contains important information.

  • Answered by AI
  • Q3. What are the different types of dimension tables?
  • Ans. 

    Dimension tables are used in data warehousing to provide descriptive information about the data in fact tables.

    • Slowly changing dimensions

    • Junk dimensions

    • Degenerate dimensions

    • Role-playing dimensions

    • Bridge dimensions

  • Answered by AI
  • Q4. What schema type was used in your previous project? And explain why it was used?
  • Ans. 

    We used a relational schema in our previous project as it was suitable for the data structure and allowed for efficient querying.

    • Relational schema was used as it allowed for efficient querying of data

    • The data structure was suitable for a relational schema

    • We were able to easily join tables to retrieve necessary data

    • Examples include using SQL to query a database with multiple tables

    • Normalization was used to reduce data r

  • Answered by AI
  • Q5. Difference between Joiner and Lookup transformations?
  • Ans. 

    Joiner combines data from multiple sources based on a common key, while Lookup retrieves data from a reference table based on a matching key.

    • Joiner is used to combine data from two or more sources based on a common key column.

    • Lookup is used to retrieve data from a reference table based on a matching key column.

    • Joiner can perform inner, outer, left, and right joins, while Lookup can only perform an inner join.

    • Joiner can...

  • Answered by AI
  • Q6. Scenario: I have records in a flat file ending with ; character at the end of each them. How to load these records into DB based on this character? What property will be used in Informatica?
  • Q7. How version control happened in your previous project?
  • Ans. 

    We used Git for version control in our previous project.

    • We created a Git repository for the project.

    • All team members were added as collaborators to the repository.

    • We followed the Git flow branching model.

    • We used pull requests for code review and merging.

    • We used tags to mark important releases.

    • We regularly pushed our changes to the remote repository.

    • We used Git commands like commit, push, pull, merge, and rebase.

    • We used...

  • Answered by AI
  • Q8. Which SCD type you worked on before and explain on that?
  • Ans. 

    I have worked on SCD Type 2 before.

    • SCD Type 2 is used to track historical changes in data.

    • It creates a new record for each change and maintains a history of changes.

    • It includes start and end dates for each record.

    • Example: Tracking changes in employee salary over time.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. This round was taken by the project manager on a phone call. He asked me few basic fundamental questions related to my skills and the things which I worked on in my previous project. He also told me about ...
Round 4 - HR 

(1 Question)

  • Q1. Just F2F discussion with HR finalising on the compensation structure, learning opportunities and the organisational benefits as an employee.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're an experienced person, be confident about the things which you handled in previous project and be precise on to the point. Don't elaborate too much as the interviewers might build up questions based on that. Be strong in your technical areas of expertise. Expect scenario based questions related to your skills.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Aws vpc gateway questions, devops drawback
  • Q2. Interfaces in oops
  • Ans. 

    Interfaces define a contract for classes to implement certain methods and properties.

    • Interfaces allow for polymorphism and loose coupling.

    • Classes can implement multiple interfaces.

    • Interfaces cannot be instantiated on their own.

    • Interfaces can have default method implementations.

    • Interfaces can be used to enforce design patterns like the adapter pattern.

  • Answered by AI
  • Q3. Meta programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Not at all good experience. Looks like the structure is baffled now after pandemic hit. First of all HR people, they have so much attitude that you can't even ask them any query regarding your JD or project. Secondly there are many rounds but it all depends upon the interviewer mood only and only. Because you are not hired for a direct project, so if the interviewer is egoistic and high attitude, then it's difficult to get positive feedback even if round well all well. Disappointing experience. Suggestion would be to put right people for talent selection. If people are kept in similar way, every new candidate might have negative experience.

Interview Questionnaire 

2 Questions

  • Q1. Tell about you
  • Q2. What is computer networking
  • Ans. 

    Computer networking is the practice of connecting devices together to share resources and communicate with each other.

    • Computer networking involves the use of hardware and software to connect devices together, such as computers, printers, and servers.

    • Networking protocols, such as TCP/IP, are used to facilitate communication between devices.

    • Examples of computer networks include local area networks (LANs), wide area netwo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 round will be aptitude test and 2 nd round will be group discussion and finally there will be technical hr and general hr round

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

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.

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.2k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
GlobalLogic Interview Questions
3.6
 • 592 Interviews
UST Interview Questions
3.8
 • 517 Interviews
View all
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
27 salaries
unlock blur

₹2 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

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

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