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

25 Interview questions

A Senior Software Engineer was asked
Q. How do I see SQL sessions? If we want to store temporary data inside stored procedure what should we do? When should we go for temp tables? Difference between index seek and index char? Diff b/w view and ta...
Ans. 

Answers to SQL-related questions for Senior Software Engineer position

  • To see SQL sessions, use the sp_who2 stored procedure or the Activity Monitor in SQL Server Management Studio

  • To store temporary data inside a stored procedure, use table variables or temporary tables

  • Use temp tables when you need to store large amounts of data or when you need to perform complex joins or aggregations

  • Index seek is a type of index ...

A Senior Software Engineer was asked
Q. What is pipe, how to write custom pipe
Ans. 

A pipe is a feature in Angular that allows you to transform data before displaying it.

  • Pipes are used in Angular templates with the '|' symbol.

  • There are built-in pipes like 'uppercase' and 'date'.

  • Custom pipes can be created using the 'Pipe' decorator and implementing the 'PipeTransform' interface.

  • Custom pipes can take arguments to modify their behavior.

  • Pipes can be chained together to perform multiple transformatio...

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 12mo ago
Q. 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 d...

A Senior Software Engineer was asked 12mo ago
Q. What is the radiology workflow.
Ans. 

Radiology workflow involves the process of imaging, interpreting, and reporting on medical images.

  • Patient arrives for imaging appointment

  • Technologist performs imaging procedure (X-ray, MRI, CT scan, etc.)

  • Images are sent to radiologist for interpretation

  • Radiologist analyzes images and generates report

  • Report is sent to referring physician for further action

What people are saying about CitiusTech

View All
a senior software engineer
2d (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about CitiusTech?
Ask anonymously on communities.
A Senior Software Engineer was asked 11mo ago
Q. 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

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

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 Agile, SQL, Java, Python and Application Development.
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
₹8.4 L/yr - ₹15.8 L/yr
27% less than the average Senior Software Engineer Salary in India
View more details

CitiusTech Senior Software Engineer Reviews and Ratings

based on 348 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 348 Reviews and Ratings
Sr Software Engineer Applicat

Pune,

Gurgaon / Gurugram

3-5 Yrs

₹ 6-22 LPA

Explore more jobs
Senior Software Engineer
2.7k salaries
unlock blur

₹8.4 L/yr - ₹15.8 L/yr

Technical Lead
2.1k salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Software Engineer
1.3k salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Technical Lead 1
407 salaries
unlock blur

₹11.9 L/yr - ₹21.5 L/yr

Technical Lead 2
348 salaries
unlock blur

₹14.4 L/yr - ₹25 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.7
Compare

Capgemini

3.7
Compare

Xoriant

4.1
Compare

HTC Global Services

3.5
Compare
write
Share an Interview