Upload Button Icon Add office photos

Filter interviews by

OrangeSiri Interview Questions and Answers

Updated 8 Jan 2025

OrangeSiri Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

I was given a shared assignment file and instructed to complete it within 45 minutes; however, it was actually a three-hour-long Django project.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you describe an experience in which you felt most proud of yourself?
  • Q2. It was one coding question: how do you find the duplicates in an array?

Jr Python Developer Interview Questions asked at other Companies

Q1. Alice has n candies, where each candy is a different type. She wants to split them equally with her brother, Bob. The Doctor advised Alice to only eat n?2 of the candies she has. Return the maximum number of unique candy types Alice can hav... read more
View answer (1)

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Difference between Lag & Lead with an example
  • Q2. Example explaining Rank,Dense_Rank,Row_Number
  • Q3. Business question around customer funneling.
  • Q4. Some technical questions around marketing campaigns(utm_source,campaign_id,etc.)
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions around customer funneling(Ideal and non-ideal)
  • Q2. Some other business related problems and situational questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural and resume basaed questions with some situational questions.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR had taken all my documents and confirmed that she will close the offer within 2-3 days but even after 1 week and multiple follow-ups she started ignoring my mails and messages and did not give any update.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
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 Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is runtime polymorphism, and can you provide a code example to illustrate it?
  • Q2. Streams in java
  • Q3. How do we create threads in Java, and how do we invoke them?
  • Q4. What is a Rest Template and how is it used?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Round 1 -> 3 easy coding questions (I did all three)
round2 -> 2 coding questions (1 was leetcode's trapping rainwater problem) (Did 1.5)

Round 2 - Technical 

(2 Questions)

  • Q1. SQL query was asked on joins etc
  • Q2. What are Microservcies, solid principles, a pattern printing question, oops concepts
Round 3 - Technical 

(2 Questions)

  • Q1. Designing dbms for a college website
  • Ans. 

    Designing a DBMS for a college website involves creating tables for students, courses, faculty, and more.

    • Create tables for students, courses, faculty, departments, etc.

    • Establish relationships between tables using foreign keys.

    • Include attributes like student ID, course ID, faculty ID, etc.

    • Implement normalization to reduce redundancy and improve data integrity.

    • Consider implementing views for complex queries or reports.

  • Answered by AI
  • Q2. Implement debouncing, create a nodejs server with a get / post api, a puzzle, javascript questions like clousers, let / var / const, event loop, output based questions etc.
  • Ans. 

    Implement debouncing, create a nodejs server with get/post api, and answer JavaScript questions.

    • Implement debouncing by using setTimeout and clearTimeout to limit the number of times a function is called.

    • Create a nodejs server with Express framework to handle get and post requests.

    • Answer JavaScript questions on closures, let/var/const, event loop, and output based questions.

    • Provide examples for each concept to demonstr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - :) Be good at SQL.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is CICD ?
  • Ans. 

    CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.

    • Automates the process of integrating code changes into a shared repository

    • Automatically builds and tests the code to ensure it is functional

    • Automatically deploys the code to production or staging environments

    • Helps in detecting and fixing integration err

  • Answered by AI
  • Q2. How to create image out of running container ?
  • Ans. 

    To create an image out of a running container, you can use the 'docker commit' command.

    • Use 'docker commit' command to create an image from a running container

    • Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

    • Example: docker commit container_id repository_name:tag

  • Answered by AI
  • Q3. What is the difference between docker add and copy command?
  • Ans. 

    Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.

    • Docker add command can fetch files from URLs and add them to the image

    • Copy command copies files from the host machine to the image

    • Add command can also automatically extract compressed files during the build process

    • Copy command is more commonly used for copying local files

  • Answered by AI
  • Q4. What is freestyle project and pipeline ?
  • Ans. 

    A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.

    • Freestyle project in Jenkins allows users to configure build process manually

    • Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code

    • Freestyle projects are more ...

  • Answered by AI
  • Q5. What is the difference between docker swarm and docker compose ?
  • Ans. 

    Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.

    • Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.

    • Docker Compose is a tool for defining and running multi-container Docker applications.

    • Docker Swarm is used for scaling and managing a cluster of...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the project you worked can you plz explain?
  • Q2. What is VPC ?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.

    • Allows organizations to have control over their virtual network environment

    • Enables customization of network configuration

    • Provides security by allowing isolation of resources

    • Can connect to on-premises data centers or other VPCs using VPN or Direct Connect

  • Answered by AI
  • Q3. What is CICD pipeline and its stages ?
  • Ans. 

    CICD pipeline is a process that automates the building, testing, and deployment of software.

    • Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.

    • Continuous Testing - automated tests are run to ensure code quality.

    • Continuous Deployment - code changes are automatically deployed to production.

    • Stages include: build, test, deploy, and monitor.

    • Tools like Jenkins, GitLab, and

  • Answered by AI
  • Q4. VPC peering concept ?
  • Ans. 

    VPC peering allows connecting two VPCs to communicate using private IP addresses.

    • VPC peering enables instances in different VPCs to communicate as if they are within the same network.

    • Traffic between peered VPCs stays within the private IP space and does not traverse the internet.

    • VPC peering does not involve a gateway, VPN, or direct connection.

    • Both VPCs must have non-overlapping IP ranges for successful peering.

    • Example...

  • Answered by AI
  • Q5. Whole concept of VPC , subnet and route table and NAT gateway ?
  • Ans. 

    VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.

    • VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.

    • Subnets are subdivisions...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basics Quesestions?

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined but Toxic environment , Don't get Technical support they work for Product and doesn't have any proper documentation Not good at all .

Skills evaluated in this interview

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 Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to inside sales and linkedin sales navigator
  • Q2. Regarding how you send cold emails how you structured your email and validation of emails
Round 2 - One-on-one 

(1 Question)

  • Q1. Same as above but little more deep question related to outbound sales like how you approach relevant prospects how you maintain your database

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have proper knowledge about what you have did in past related to your job duties and responsibilities
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Symbiosis Centre For Management and HRD (SCMHRD)

Round 1 - Aptitude Test 

Gamification round Game gamification

Round 2 - Group Discussion 

Data analytics related topic

Round 3 - Technical 

(1 Question)

  • Q1. Data data data related
Round 4 - Technical 

(1 Question)

  • Q1. Case study related questions
Round 5 - HR 

(1 Question)

  • Q1. Hr related questions culture fit questions
Round 6 - Technical 

(1 Question)

  • Q1. Supply chain related questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. 1st Technical round : Difference between Epic and User story.
  • Ans. 

    An Epic is a large body of work that can be broken down into smaller tasks called User Stories.

    • Epic is a high-level requirement that is too large to be completed in a single iteration.

    • User Story is a small, specific piece of work that can be completed in a single iteration.

    • Epics are usually broken down into multiple User Stories for implementation.

    • User Stories are more detailed and focused compared to Epics.

    • Example: Ep...

  • Answered by AI
  • Q2. Test cases of Data grid.
  • Ans. 

    Test cases for data grid involve verifying data display, sorting, filtering, pagination, editing, and deleting functionalities.

    • Verify data is displayed correctly in the grid

    • Test sorting functionality by sorting columns in ascending and descending order

    • Test filtering functionality by applying filters and checking if data is displayed correctly

    • Test pagination by navigating through multiple pages of data

    • Test editing funct...

  • Answered by AI
  • Q3. How to test a website on different devices?
  • Ans. 

    To test a website on different devices, use responsive design testing tools, emulators, physical devices, and browser developer tools.

    • Use responsive design testing tools like BrowserStack or Responsinator to simulate different screen sizes.

    • Utilize emulators like Android Studio's emulator or Xcode's simulator to test on various mobile devices.

    • Test on physical devices to ensure accurate performance and user experience.

    • Us...

  • Answered by AI
  • Q4. Have you ever meet your client.
  • Ans. 

    Yes, I have met with clients in previous roles to discuss project requirements and gather feedback.

    • I have met with clients to understand their requirements and expectations for the project.

    • I have conducted meetings to gather feedback on the testing process and results.

    • Building a good relationship with clients is important for successful project delivery.

  • Answered by AI
Round 2 - Assignment 

Write testcases for a profile page that has option to change: name, email, phone number, address etc.

Round 3 - Technical 

(1 Question)

  • Q1. Severity, priority, scenario based questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. CEO round : general problem solving questions.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding test was really good it was easier to tackle the problem and writting code for it.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What is the major project you have worked on, and can you provide an explanation of it?
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL ques and concept

OrangeSiri Interview FAQs

How to prepare for OrangeSiri 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 OrangeSiri. The most common topics and skills that interviewers at OrangeSiri expect are Python, Project Management, Java, Django and Flask.

Tell us how to improve this page.

People are getting interviews through

based on 1 OrangeSiri interview
Job Portal
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

MAQ Software Interview Questions
2.0
 • 94 Interviews
Apisero Interview Questions
4.3
 • 72 Interviews
Webkul Software Interview Questions
3.7
 • 50 Interviews
View all

OrangeSiri Reviews and Ratings

based on 2 reviews

2.5/5

Rating in categories

2.5

Skill development

2.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 2 Reviews and Ratings
Compare OrangeSiri with

Tekwissen

4.9
Compare

Collabera Technologies

3.5
Compare

Softenger

4.2
Compare

XcelServ Solutions

4.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