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 Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top CitiusTech Interview Questions and Answers

View all 172 questions

CitiusTech Interview Experiences

Popular Designations

270 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Python
Round 2 - Technical 

(1 Question)

  • Q1. Questions of AWS
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please think twice before joining here. The HRs of this organization , speaks volume about the culture there.

Technical Specialist Interview Questions asked at other Companies

Q1. What are the features of Solar wind which you are aware of?
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Snowpipe scenario based question
  • Q2. Streams scenario based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the data architecture concepts

Solution Architect Interview Questions asked at other Companies

Q1. Difference Between classic folder and Modern folder?
View answer (10)
CitiusTech Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Questions around the previous work
  • Q2. Questions around how re-rank work, and image segmentation,
  • Q3. Questions with podman and docker

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your profile and brush up your knowledge

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Test Lead Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Testing techniques followed while testing
  • Ans. 

    Various testing techniques like black box testing, white box testing, regression testing, etc. are followed while testing.

    • Black box testing focuses on the functionality of the software without looking at the internal code.

    • White box testing involves testing the internal code structure, paths, and branches.

    • Regression testing ensures that new code changes do not adversely affect existing functionalities.

    • Smoke testing is p...

  • Answered by AI
  • Q2. Types of testing done for mobile application
  • Ans. 

    Types of testing for mobile applications include functional testing, performance testing, security testing, usability testing, and compatibility testing.

    • Functional testing ensures the app functions as expected

    • Performance testing checks the app's speed and responsiveness

    • Security testing identifies vulnerabilities and ensures data protection

    • Usability testing evaluates user experience and interface design

    • Compatibility tes...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time in giving interview to this company. Even after a week after interview is conducted HR cannot give feedback on interview even after proactively calling HR

Skills evaluated in this interview

Test Lead Interview Questions asked at other Companies

Q1. If you put in an Agile project, Will you be able to do in sprint Automation
View answer (1)

CitiusTech interview questions for popular designations

 Senior Software Engineer

 (44)

 Technical Lead

 (28)

 Software Engineer

 (25)

 Software Engineer Trainee

 (12)

 Software Developer

 (10)

 Technical Specialist

 (7)

 Software Developer Trainee

 (6)

 Senior Software Developer

 (5)

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

Top CitiusTech Senior Software Engineer Interview Questions and Answers

Q1. What if array get assign with null does it still has array length
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top CitiusTech Interview Questions

Trainee Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

Basic questions on oops and sql queries

Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query on many to many table and aggregations
  • Q2. OOPS concepts and SpringBoot

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)

Jobs at CitiusTech

View all
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to ensure high available of eks cluster.
  • Ans. 

    To ensure high availability of EKS cluster, utilize multiple availability zones, implement auto-scaling, use managed node groups, and set up monitoring and alerts.

    • Utilize multiple availability zones to distribute workload and ensure redundancy.

    • Implement auto-scaling to automatically adjust resources based on demand.

    • Use managed node groups to simplify node management and ensure high availability.

    • Set up monitoring and al...

  • Answered by AI
  • Q2. What are liveness and readiness probe
  • Ans. 

    Liveness and readiness probes are used in Kubernetes to check the health of containers.

    • Liveness probe checks if a container is running and healthy. If it fails, Kubernetes restarts the container.

    • Readiness probe checks if a container is ready to serve traffic. If it fails, Kubernetes stops sending traffic to the container.

    • Probes are configured in the pod's YAML file using the 'livenessProbe' and 'readinessProbe' fields.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a long process

Skills evaluated in this interview

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduction, Brief Project, ADF, DataBricks Optimization
  • Q2. SQL Question - FIND Duplicates, Windows Function

Azure Data Engineer Interview Questions asked at other Companies

Q1. 7. How can we load multiple(50)tables at a time using adf?
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself.
Round 2 - Technical 

(1 Question)

  • Q1. What are promises

Mern Full Stack Developer Interview Questions asked at other Companies

Q1. What is the way to save large files (e.g. photos) into MongoDB database.
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SOLID principles
  • Q2. Microservice Architecture and Kafka

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with core concepts.

Top CitiusTech Software Developer Interview Questions and Answers

Q1. If table or view does not exist what does it mean
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Contribute & help others!
anonymous
You can choose to be anonymous

CitiusTech Interview FAQs

How many rounds are there in CitiusTech interview?
CitiusTech interview process usually has 2-3 rounds. The most common rounds in the CitiusTech interview process are Technical, HR and One-on-one Round.
How to prepare for CitiusTech 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 Java, SQL, Javascript, Angular and Automation.
What are the top questions asked in CitiusTech interview?

Some of the top questions asked at the CitiusTech interview -

  1. Assertion in Jmeter. what protocol used in jmeter 3. what is hit per second. 4....read more
  2. How would you scale up your application ?,if it fails on one instances how woul...read more
  3. 1. What is triggers and where we use triggers in xamarin? 2. Oops concepts wit...read more
How long is the CitiusTech interview process?

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

Recently Viewed

JOBS

CitiusTech

No Jobs

JOBS

CitiusTech

No Jobs

JOBS

Qualcomm

No Jobs

SALARIES

Ofbusiness

SALARIES

Ofbusiness

SALARIES

Tech Mahindra

SALARIES

Ofbusiness

SALARIES

CitiusTech

SALARIES

CitiusTech

Tell us how to improve this page.

CitiusTech Interview Process

based on 209 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
View all

CitiusTech Reviews and Ratings

based on 1.6k reviews

3.4/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.1

Salary

3.0

Job security

3.4

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 1.6k Reviews and Ratings
Java React Developer

Pune,

Chennai

+1

5-10 Yrs

Not Disclosed

Java Full Stack Developer

Pune,

Chennai

+1

5-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead 1
374 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead 2
295 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.8
Compare

Capgemini

3.7
Compare

TCS

3.7
Compare

Wipro

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