Upload Button Icon Add office photos
Engaged Employer

i

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

CitiusTech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CitiusTech Senior Software Engineer Interview Questions and Answers

Updated 24 Jun 2025

23 Interview questions

A Senior Software Engineer was asked 5mo ago
Q. What are the basics of automation testing compared to manual testing?
Ans. 

Manual testing ensures software quality by identifying bugs before automation is implemented.

  • Manual testing involves executing test cases without automation tools.

  • It is useful for exploratory testing, where testers explore the application.

  • Example: A tester manually checks a login feature by entering various credentials.

  • Manual testing is crucial for usability testing to assess user experience.

  • Regression testing can...

A Senior Software Engineer was asked 6mo ago
Q. What is the internal working of a hashmap?
Ans. 

A hashmap is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

  • Hashmap uses a hash function to determine the index of the key-value pair in the underlying array.

  • Collisions can occur when two keys hash to the same index, which is resolved using techniques like chaining or open addressing.

  • Hashmap typically has an underlying array where each element is a l...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked 6mo ago
Q. What design patterns have you worked with?
Ans. 

I have worked with design patterns such as Singleton, Factory, Observer, and Strategy.

  • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

  • Factory pattern creates objects without specifying the exact class of object that will be created.

  • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notif...

A Senior Software Engineer was asked 6mo ago
Q. What are the SOLID principles in software engineering?
Ans. 

SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

  • Single Responsibility Principle (SRP) - A class should have only one reason to change.

  • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

  • Liskov Substitution Principle (LSP) - Objects of a superclass should ...

A Senior Software Engineer was asked 6mo ago
Q. Design a Least Recently Used (LRU) cache.
Ans. 

LRU cache is a data structure that stores the most recently used items and removes the least recently used items when full.

  • Use a doubly linked list to keep track of the order of items based on their usage.

  • Use a hashmap to quickly access items in the cache.

  • When an item is accessed, move it to the front of the linked list to mark it as the most recently used.

A Senior Software Engineer was asked 9mo ago
Q. What is React Native?
Ans. 

React Native is a framework for building mobile applications using JavaScript and React.

  • Allows developers to write code once and deploy it on both iOS and Android platforms

  • Utilizes native components for better performance and user experience

  • Supports hot reloading for faster development iterations

A Senior Software Engineer was asked 9mo ago
Q. What is useEffect?
Ans. 

useEffect is a hook in React that allows functional components to perform side effects.

  • useEffect is used to perform side effects in functional components

  • It runs after every render by default

  • It can be used to fetch data, subscribe to events, update the DOM, etc.

  • It can take a second argument which is an array of dependencies to control when the effect runs

Are these interview questions helpful?
A Senior Software Engineer was asked 12mo ago
Q. What message types have you worked with?
Ans. 

I have worked on various message types including JSON, XML, SOAP, and REST.

  • JSON - Used for data interchange between systems.

  • XML - Used for defining document structures.

  • SOAP - Used for communication between applications.

  • REST - Used for building APIs and web services.

A Senior Software Engineer was asked
Q. Have you worked with JUnit test cases previously?
Ans. 

Junit test cases should always be re-run to ensure code quality and prevent regression.

  • Junit test cases should be run after every code change.

  • Test cases should cover all possible scenarios and edge cases.

  • Test cases should be automated to save time and ensure consistency.

  • Test cases should be reviewed and updated regularly.

  • Regression testing should be performed to ensure new changes do not break existing functionali...

A Senior Software Engineer was asked
Q. What is a null value in JavaScript?
Ans. 

Null value in JavaScript represents absence of any object value.

  • Null is a primitive value in JavaScript.

  • It is assigned to a variable to indicate that it has no value.

  • It is different from undefined, which means a variable has been declared but not assigned a value.

  • Null is falsy in JavaScript, meaning it is considered false in a boolean context.

  • Null can be used to clear the value of an object property.

CitiusTech Senior Software Engineer Interview Experiences

48 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Ans. 

    A hashmap is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hashmap uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when two keys hash to the same index, which is resolved using techniques like chaining or open addressing.

    • Hashmap typically has an underlying array where each element is a linked...

  • Answered by AI
  • Q2. Design a Least Recently Used (LRU) cache.
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and removes the least recently used items when full.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hashmap to quickly access items in the cache.

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be re...

  • Answered by AI
  • Q2. What design patterns have you worked with?
  • Ans. 

    I have worked with design patterns such as Singleton, Factory, Observer, and Strategy.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified a...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql join Window function
  • Q2. Manual testing Basic automat
Round 2 - Technical 

(2 Questions)

  • Q1. Sql question on joins
  • Q2. Manual testing question basick of automat
  • Ans. 

    Manual testing ensures software quality by identifying bugs before automation is implemented.

    • Manual testing involves executing test cases without automation tools.

    • It is useful for exploratory testing, where testers explore the application.

    • Example: A tester manually checks a login feature by entering various credentials.

    • Manual testing is crucial for usability testing to assess user experience.

    • Regression testing can be d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has a positive atmosphere, but some team leaders exhibit egotistical behavior.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Basic of c# and use
  • Q2. Abstract vs interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Answered by AI
  • Q3. Design pattern description
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Object oriented programming
  • Q2. Solid principle
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Where does messageID come in hl7 message?
  • Q2. What all message type you have worked on.
  • Ans. 

    I have worked on various message types including JSON, XML, SOAP, and REST.

    • JSON - Used for data interchange between systems.

    • XML - Used for defining document structures.

    • SOAP - Used for communication between applications.

    • REST - Used for building APIs and web services.

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

(1 Question)

  • Q1. What is the radiology workflow.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Design pattern - theory and practical examples
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Examples include Singleton, Factory, Observer, and Strategy patterns.

    • Singleton pattern ensures a class has only one instance.

    • Factory pattern creates objects without specifying the exact class.

    • Observer pattern defines a one-to-many dependency between objects.

    • Strategy pattern define...

  • Answered by AI
  • Q2. Overloading and virtual function

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is react native
  • Ans. 

    React Native is a framework for building mobile applications using JavaScript and React.

    • Allows developers to write code once and deploy it on both iOS and Android platforms

    • Utilizes native components for better performance and user experience

    • Supports hot reloading for faster development iterations

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

    useEffect is a hook in React that allows functional components to perform side effects.

    • useEffect is used to perform side effects in functional components

    • It runs after every render by default

    • It can be used to fetch data, subscribe to events, update the DOM, etc.

    • It can take a second argument which is an array of dependencies to control when the effect runs

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What design patter followed in your last project
  • Ans. 

    In my last project, we followed the MVC design pattern.

    • Model-View-Controller pattern separates data, presentation, and user interaction

    • Model represents data, View displays data, Controller handles user input and updates model

    • Example: Using AngularJS for front-end (View), Node.js for back-end (Controller), and MongoDB for database (Model)

  • Answered by AI
  • Q2. Comfortable with uk time
  • Ans. 

    Yes, I am comfortable with UK time as I have experience working with teams in different time zones.

    • Have experience working with teams in different time zones

    • Flexible with working hours to accommodate UK time

    • Comfortable using tools like Slack or email to communicate asynchronously

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Ask about family
  • Q2. Strength and weekness

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Manual Testing
  • Q2. Real time experience
  • Ans. 

    I have 5 years of real-time experience working on high-traffic web applications.

    • Developed real-time chat feature using WebSockets for instant messaging

    • Optimized database queries to handle real-time data updates efficiently

    • Implemented real-time analytics dashboard for monitoring user activity

    • Worked on real-time bidding system for online advertising platform

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Manual testing related questions
  • Q2. Automation testing related questions
Round 2 - HR 

(2 Questions)

  • Q1. SQL Query for second highest salary
  • Ans. 

    Use a subquery to find the second highest salary in a table.

    • Use a subquery to select the maximum salary from the table.

    • Then use another subquery to select the maximum salary that is less than the maximum salary found in the first subquery.

  • Answered by AI
  • Q2. Other personal discussion

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to HL7
  • Q2. Questions related to FHIR

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about CitiusTech?
Ask anonymously on communities.

CitiusTech Interview FAQs

How many rounds are there in CitiusTech Senior Software Engineer interview?
CitiusTech interview process usually has 2-3 rounds. The most common rounds in the CitiusTech interview process are Technical, HR and Resume Shortlist.
How to prepare for CitiusTech Senior Software Engineer 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 CitiusTech. The most common topics and skills that interviewers at CitiusTech expect are SQL, Agile, Java, Application Development and Python.
What are the top questions asked in CitiusTech Senior Software Engineer interview?

Some of the top questions asked at the CitiusTech Senior Software Engineer interview -

  1. What if array get assign with null does it still has array len...read more
  2. What is manual testing? What is SDLC/STLC? What is Agile, scrum? What are agile...read more
  3. How do I see SQL sessions? If we want to store temporary data inside stored pro...read more
How long is the CitiusTech Senior Software Engineer interview process?

The duration of CitiusTech Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 43 interview experiences

Difficulty level

Easy 17%
Moderate 75%
Hard 8%

Duration

Less than 2 weeks 68%
2-4 weeks 32%
View more
CitiusTech Senior Software Engineer Salary
based on 2.7k salaries
₹5.9 L/yr - ₹21 L/yr
26% less than the average Senior Software Engineer Salary in India
View more details

CitiusTech Senior Software Engineer Reviews and Ratings

based on 344 reviews

3.3/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.2

Salary

3.0

Job security

3.4

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 344 Reviews and Ratings
Senior Software Engineer
2.7k salaries
unlock blur

₹5.9 L/yr - ₹21 L/yr

Technical Lead
2.1k salaries
unlock blur

₹7.5 L/yr - ₹28 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3 L/yr - ₹11.1 L/yr

Technical Lead 1
391 salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Technical Lead 2
332 salaries
unlock blur

₹8 L/yr - ₹27.5 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.8
Compare

Capgemini

3.7
Compare

Xoriant

4.1
Compare

HTC Global Services

3.5
Compare
write
Share an Interview