Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nitor Infotech, an Ascendion company Team. If you also belong to the team, you can get access from here

Nitor Infotech, an Ascendion company Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nitor Infotech, an Ascendion company Python Software Developer Interview Questions and Answers

Updated 8 Apr 2024

Nitor Infotech, an Ascendion company Python Software Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Submitted but no feedback

Round 2 - Technical 

(1 Question)

  • Q1. Again schedule 3 round
Round 3 - Technical 

(1 Question)

  • Q1. No feedback even all questions are answered correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Given almost 3 round, technical all of them even coding test but they didn't respond back, even if you are not selected need to respond

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Shifts the zeros to right
  • Ans. 

    Shift all zeros in an array to the right while maintaining the order of non-zero elements.

    • Iterate through the array and move all non-zero elements to the front of the array.

    • Fill the remaining elements with zeros.

    • Maintain the relative order of non-zero elements.

  • Answered by AI
  • Q2. What is decorator?
  • Ans. 

    A decorator is a design pattern in Python that allows adding new functionality to an existing object without modifying its structure.

    • Decorators are denoted by the @ symbol followed by the decorator function name.

    • They are commonly used to modify or extend the behavior of functions or methods.

    • Decorators can be used for logging, timing, authentication, caching, etc.

    • Example: @staticmethod, @classmethod, @property

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer expecting same answer what he have in his mind

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

They will test your coding ability on first round, for me they kept test on hacker earth.

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - SQL Assessment 

(1 Question)

  • Q1. SQL database questions
Round 2 - Technical 

(3 Questions)

  • Q1. About Selenium Xpath
  • Q2. About Pytest fixtures
  • Q3. SQL distinct and count
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Difference between List and Array
  • Ans. 

    List is a built-in Python data structure that can hold elements of different data types, while Array is a data structure from the NumPy library that can hold elements of the same data type.

    • List is a dynamic array that can grow or shrink in size, while Array has a fixed size.

    • List can hold elements of different data types, while Array can only hold elements of the same data type.

    • List is a part of Python's standard librar...

  • Answered by AI
  • Q2. Types of renderer classes in DRF
  • Ans. 

    DRF provides JSON, BrowsableAPI, TemplateHTML, and AdminRenderer classes for rendering responses.

    • JSONRenderer: Renders data in JSON format.

    • BrowsableAPIRenderer: Renders data in a browsable HTML format with forms for interacting with the API.

    • TemplateHTMLRenderer: Renders data using a specified template in HTML format.

    • AdminRenderer: Renders data in a format suitable for Django admin interface.

  • Answered by AI
  • Q3. What is Method Resolution Order?
  • Ans. 

    Method Resolution Order (MRO) is the order in which classes are searched for a method or attribute in Python.

    • MRO is determined by the C3 linearization algorithm in Python.

    • It follows a depth-first left-to-right traversal of the class hierarchy.

    • MRO is important in multiple inheritance scenarios to resolve method conflicts.

    • Example: class A: pass class B(A): pass class C(A): pass class D(B, C)

  • Answered by AI
  • Q4. Difference between class method and static method.
  • Ans. 

    Class method is bound to the class itself, while static method is not bound to any specific instance or class.

    • Class method takes 'cls' as the first parameter, allowing access to class variables and methods.

    • Static method does not take any special parameters and does not have access to class or instance variables.

    • Class method can be called on both the class and instances of the class.

    • Static method is mainly used for util...

  • Answered by AI
  • Q5. What are transactions in SQL?
  • Ans. 

    Transactions in SQL are a way to ensure data integrity by grouping multiple SQL statements into a single unit of work.

    • Transactions help maintain the ACID properties (Atomicity, Consistency, Isolation, Durability) of a database.

    • They allow multiple SQL statements to be executed as a single unit, either all succeeding or all failing.

    • Transactions can be started with BEGIN TRANSACTION, COMMIT to save changes, or ROLLBACK to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Company organized a F2F interview instead of going virtual. The interviewer was a bit rude and I answered nearly 80% of the questions. HR told me to leave as I would be contacted via the agency. Till today no feedback was passed on. Poor hiring ethics of the company.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Past project related questions
  • Q2. Python and sql queries
Round 2 - Coding Test 

Waiting for l2 round

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

Simple python programming concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Basic System design of inter service communication in transactional systems.
  • Ans. 

    Inter service communication in transactional systems involves designing a reliable and efficient way for services to communicate and exchange data.

    • Use asynchronous messaging systems like RabbitMQ or Kafka to decouple services and ensure reliable message delivery.

    • Implement RESTful APIs for synchronous communication between services, using HTTP methods like GET, POST, PUT, DELETE.

    • Consider using gRPC for high-performance,...

  • Answered by AI
  • Q2. Loading and processing a file with huge data volume
  • Ans. 

    Use pandas library for efficient loading and processing of large files in Python.

    • Use pandas read_csv() function with chunksize parameter to load large files in chunks.

    • Optimize memory usage by specifying data types for columns in read_csv() function.

    • Use pandas DataFrame methods like groupby(), merge(), and apply() for efficient data processing.

    • Consider using Dask library for parallel processing of large datasets.

    • Use gen...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Simple logical question like sorting and some list based question
Round 2 - Coding Test 

Prepare coding with some therotical question

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The base was the tests conducted before the interview. The test included Python programming MCQs with pseudo codes. Interview was focused on communication skill and client interactions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with python pseudo codes problems in depth. Brush up on aptitude concepts for the test.
For interview, focus on communication skills. Also include previous achievements or appreciation from client interactions.

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

Interview Questionnaire 

3 Questions

  • Q1. 1. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions without changing their source code.

    • Decorators are denoted by the '@' symbol followed by the decorator function name.

    • They can be used to add functionality to a function, such as logging or timing.

    • Decorators can also be used to modify the behavior of a class or method.

    • They are commonly used in web frameworks like Flask and Django.

    • Examples of built-in de...

  • Answered by AI
  • Q2. 2. What is Namespace in Python
  • Ans. 

    Namespace is a container that holds identifiers (names) used to avoid naming conflicts.

    • Namespace is created at different moments and has different lifetimes.

    • Python implements namespaces as dictionaries.

    • There are four types of namespaces in Python: built-in, global, local, and non-local.

    • Namespaces can be accessed using the dot (.) operator.

    • Example: 'import math' creates a namespace 'math' that contains all the functions

  • Answered by AI
  • Q3. Write Algorithm for Soduku
  • Ans. 

    Algorithm to solve Sudoku puzzle

    • Create a 9x9 grid to represent the puzzle

    • Fill in known numbers

    • For each empty cell, try numbers 1-9 until a valid number is found

    • Backtrack if no valid number can be found

    • Repeat until all cells are filled

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about Soduku before appearing for interview

Skills evaluated in this interview

Nitor Infotech, an Ascendion company Interview FAQs

How many rounds are there in Nitor Infotech, an Ascendion company Python Software Developer interview?
Nitor Infotech, an Ascendion company interview process usually has 3 rounds. The most common rounds in the Nitor Infotech, an Ascendion company interview process are Technical and Coding Test.
How to prepare for Nitor Infotech, an Ascendion company Python Software 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 Nitor Infotech, an Ascendion company. The most common topics and skills that interviewers at Nitor Infotech, an Ascendion company expect are Python and SQL.
What are the top questions asked in Nitor Infotech, an Ascendion company Python Software Developer interview?

Some of the top questions asked at the Nitor Infotech, an Ascendion company Python Software Developer interview -

  1. No feedback even all questions are answered correc...read more
  2. Again schedule 3 ro...read more

Tell us how to improve this page.

Nitor Infotech, an Ascendion company Python Software Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Senior Software Engineer
253 salaries
unlock blur

₹6 L/yr - ₹22.2 L/yr

Software Engineer
229 salaries
unlock blur

₹2.8 L/yr - ₹13.5 L/yr

Lead Engineer
105 salaries
unlock blur

₹8 L/yr - ₹31 L/yr

Software Developer
53 salaries
unlock blur

₹2.4 L/yr - ₹10.6 L/yr

Software Engineer Trainee
35 salaries
unlock blur

₹2.5 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Nitor Infotech, an Ascendion company with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

LTIMindtree

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