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 Software Trainee Interview Questions and Answers

Updated 29 Oct 2023

CitiusTech Software Trainee Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

30 mins test with 15 questions for 5 mins for detecting pattern complete as much as possible 5 mins it is counted most for next round

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one hr interview

Interview questions from similar companies

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. PayTM is about to launch and you have to test it, then according to you what will be the test cases.
  • Ans. 

    Test cases for PayTM launch

    • Verify user registration process

    • Test login functionality

    • Check balance update after successful transaction

    • Test various payment methods

    • Verify transaction history

    • Test refund process

    • Check for security vulnerabilities

    • Test performance under high load

    • Verify compatibility with different devices and browsers

  • Answered by AI
  • Q2. What are the things mentioned on the QR code card, you ever noticed?
  • Ans. 

    The QR code card typically contains information such as a unique identifier, website URL, contact details, or product details.

    • Unique identifier

    • Website URL

    • Contact details

    • Product details

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The only advice to job seekers is that just do your best, you will surely get the best.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
  • Ans. 

    I appreciate the collaborative team environment and innovative projects at my current company, and I am excited about the opportunities for growth and learning at your organization.

    • Collaborative team environment fosters creativity and productivity

    • Innovative projects challenge me to learn and grow

    • Excited about the opportunities for growth and learning at your organization

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic of java to advanced
  • Q2. Array related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture related
  • Q2. Management roles
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basics mostly on collections and streams
  • Q2. DSA questions based on recursion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code pairing round - you will be given story where you need to add one API to the share repository. It is a simple problem but needs good understanding of the shared code. You should follow clean code pri...
  • Q2. Add one API to the existing repository
  • Ans. 

    The API allows users to retrieve weather data based on location.

    • Create a new endpoint that accepts a location parameter

    • Use a weather API service to fetch weather data based on the location

    • Return the weather data in a standardized format, such as JSON

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project you are working on, do some changes to the project, how well you understand the project
  • Q2. Add some feature to the project
  • Ans. 

    The feature added to the project is a user authentication system.

    • Implement a login page with username and password fields.

    • Create a database table to store user credentials.

    • Hash and salt passwords for secure storage.

    • Implement password reset functionality.

    • Add user roles and permissions for access control.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Not much questions nothing
  • Q2. Not much questions and nothing
  • Q3. I wont remember
  • Q4. I dont know what

Interview Preparation Tips

Interview preparation tips for other job seekers - Such a worst company in my life. Whole HR department is worst. Please freshers dont join this company and much software politics. If they not handling employees properly. Treating employees like donkeys one day this company however big it is it will go down like start up in few years.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. Tell me about your project in short.
  • Q2. Tell me about oops concept
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects that interact with each other.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on creating objects that have properties and methods to interact with other objects.

    • Encapsulation, inheritance, and polymorphism are the three main pillars of OOPs.

    • Encapsulation is the process of hiding the internal details of an object from the outside world.

    • Inheritance al...

  • Answered by AI
  • Q3. What is difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementation.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instance...

  • Answered by AI
  • Q4. What is inheritance ?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class can add new properties and methods or override the ones inherited from the parent class.

    • Inheritance pr...

  • Answered by AI
  • Q5. What is difference between dot net and dot net core?
  • Ans. 

    Dot net is a framework while dot net core is a cross-platform, open-source framework.

    • Dot net is Windows-only while dot net core is cross-platform.

    • Dot net core is open-source while dot net is not.

    • Dot net core is modular and lightweight while dot net is monolithic.

    • Dot net core supports microservices architecture while dot net does not.

    • Dot net core has better performance and scalability than dot net.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared with oops and minimal answer they are expecting

I applied via Naukri.com

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. OOPS concepts of Java
  • Ans. 

    OOPS concepts of Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods within a class

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple classes

    • Abstraction: hiding implementation details and showing only necessary information

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Expectations , why you are switching

Interview Preparation Tips

Interview preparation tips for other job seekers - To be honest, Never Join any project offered by Collabera. If Collabera is hiring for there company then it's fine. As I was on Collabera payroll and working for Infosys. The scam here which they do is that they won't tell you anything clearly. Basically if you are working on any project then only you will be paid. After join Collabera, they provided some training and offered a project after 2 months and I was not paid for that 2 months. I would say I was lucky enough to be alloted to a project but many of my colleague from Collabera were not allocated even after 6 months and no money were given. Please don't go for CTC whichever is offered by Collabera. I didn't knew about them earlier but after facing it myself I can surely tell you that you can ask as many CTC you want they will pay you that. But it's career destroyer

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Programming Java dot net scenario questions
Round 3 - HR 

(1 Question)

  • Q1. General questions like scenario and reason for leaving

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy prepare well and be confident about the answer

CitiusTech Interview FAQs

How many rounds are there in CitiusTech Software Trainee interview?
CitiusTech interview process usually has 4 rounds. The most common rounds in the CitiusTech interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

CitiusTech Software Trainee Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
CitiusTech Software Trainee Salary
based on 6 salaries
₹4.7 L/yr - ₹5.5 L/yr
55% more than the average Software Trainee Salary in India
View more details

CitiusTech Software Trainee Reviews and Ratings

based on 2 reviews

1.8/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.4

Salary

1.4

Job security

2.2

Company culture

2.4

Promotions

1.8

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
2.6k salaries
unlock blur

₹5.8 L/yr - ₹20 L/yr

Technical Lead
2k salaries
unlock blur

₹7.3 L/yr - ₹25 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Technical Lead 1
369 salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Technical Lead 2
292 salaries
unlock blur

₹8.5 L/yr - ₹28 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