Upload Button Icon Add office photos

SIPL

Compare button icon Compare button icon Compare
3.7

based on 93 Reviews

Filter interviews by

SIPL Python Developer Intern Interview Questions and Answers

Updated 17 Apr 2024

SIPL Python Developer Intern Interview Experiences

1 interview found

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

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

Round 1 - Written 

(2 Questions)

  • Q1. What is oop explain with examples
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: Creating a class 'Car' with attributes like 'color' and methods like 'drive'.

    • Example: Inheritance allows a class 'SUV' to inherit attributes and methods

  • Answered by AI
  • Q2. 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.

    • Lists are part of Python's core language, while arrays are part of the NumPy library.

    • Lists can hold elements of different data types, while arrays can only hold elements of the same data type.

    • Arrays are more efficient for numerical o...

  • Answered by AI
Round 2 - Case Study 

Machine learning linear regression

Round 3 - HR 

(1 Question)

  • Q1. Where do see in upcoming 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have a good command on basics

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Python data sql dsa automation test

Round 2 - Aptitude Test 

Number reasoning data analytucs

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 Questions of competitive programming any language of your choice and 2 MySQL queries. Total test time 2 hrs

Round 2 - One-on-one 

(3 Questions)

  • Q1. Gave a problem for SQL query
  • Q2. Gave a problem for python. She preferred Java more.
  • Q3. Asked about projects
Round 3 - HR 

(1 Question)

  • Q1. Flexible at any shift? Flexible at any location?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed before Oct 2023.

Round 1 - Aptitude Test 

All went good asked mostly regarding age and english sentances

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
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
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
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python project overview
  • Ans. 

    Python project overview

    • Describe the purpose and goals of the project

    • Explain the technologies and tools used in the project

    • Discuss the project's architecture and design

    • Highlight any challenges faced and how they were overcome

  • Answered by AI
  • Q2. CI/CD related with AWS

Skills evaluated in this interview

SIPL Interview FAQs

How many rounds are there in SIPL Python Developer Intern interview?
SIPL interview process usually has 3 rounds. The most common rounds in the SIPL interview process are HR and Case Study.
What are the top questions asked in SIPL Python Developer Intern interview?

Some of the top questions asked at the SIPL Python Developer Intern interview -

  1. What is oop explain with examp...read more
  2. Difference between list and ar...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 SIPL interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Project Manager
11 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Junior Engineer
7 salaries
unlock blur

₹2.3 L/yr - ₹3.7 L/yr

Design Engineer
7 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Cash Officer
7 salaries
unlock blur

₹1.2 L/yr - ₹3.7 L/yr

Account Assistant
7 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare SIPL with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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