Upload Button Icon Add office photos

Xcaliber Infotech

Compare button icon Compare button icon Compare

Filter interviews by

Xcaliber Infotech Software Developer Interview Questions and Answers

Updated 9 May 2025

Xcaliber Infotech Software Developer Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of SQL and SQL query questions
Round 3 - Technical 

(2 Questions)

  • Q1. Detailed discussion about previous projects
  • Q2. Python and SQL questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. About your self
  • Q2. About work experience
  • Q3. Ablut Lasts project and technology
Round 2 - HR 

(1 Question)

  • Q1. About yourself in detail

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. What is Self join
  • Ans. 

    A self join is a SQL operation where a table is joined with itself to compare rows within the same table.

    • Used to compare rows in the same table.

    • Commonly used for hierarchical data, like employee-manager relationships.

    • Example: SELECT A.name, B.name FROM employees A, employees B WHERE A.manager_id = B.id;

    • Can help in finding duplicates or related records within a single table.

  • Answered by AI
  • Q2. What is Rls in power bi
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic Java arrays que

Round 2 - Technical 

(1 Question)

  • Q1. Basic technical que

Software Developer Interview Questions & Answers

user image SHANTANU PATTI

posted on 22 Apr 2025

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Tell me about OOPS
  • Q2. What is multithreading
  • Ans. 

    Multithreading is a programming technique that allows concurrent execution of multiple threads within a single process.

    • Improves application performance by utilizing CPU resources more efficiently.

    • Allows multiple tasks to run simultaneously, such as downloading files while processing data.

    • Threads share the same memory space, which makes communication between them easier but requires careful synchronization.

    • Commonly used...

  • Answered by AI

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 Xcaliber Infotech?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. The Golden Rules of Accounting are the basic principles for recording financial transactions in the books of accounts. They are categorized based on the type of account involved: 1. Personal Account Rule: ...
  • Q2. 1. Mutual Funds A mutual fund is a type of investment vehicle that pools money from multiple investors to invest in various financial securities like stocks, bonds, or other assets. It is managed by profes...
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What are development life cycles
  • Ans. 

    Development life cycles are processes used to plan, design, build, test, and deploy software applications.

    • There are several development life cycles, including Waterfall, Agile, and DevOps.

    • The Waterfall model is a linear approach where each phase must be completed before moving on to the next.

    • Agile methodologies focus on iterative development and continuous feedback.

    • DevOps combines development and operations to create a...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How did you do deployment
Round 3 - One-on-one 

(1 Question)

  • Q1. What's your ctc and ectc
  • Ans. 

    I prefer not to disclose my current or expected salary as it is not relevant to my qualifications and experience.

    • I believe that my skills and experience are more important than my current or expected salary

    • I am open to discussing compensation that is fair and competitive for the role and my qualifications

    • I am more interested in the opportunity to work on challenging projects and grow my skills

    • I would like to focus on h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for interviews and refresh your technical skills

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Online test which consists of java, angular, micro services related questions

Round 2 - Technical 

(1 Question)

  • Q1. Difference between static and default methods
  • Ans. 

    Static methods belong to the class itself, while default methods are part of an interface in Java.

    • Static methods can be called without creating an instance of the class, while default methods are used to provide a default implementation in interfaces.

    • Static methods are defined using the 'static' keyword, while default methods are defined using the 'default' keyword in Java.

    • Static methods cannot be overridden in subclas...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Advance C, Java script ,Python, Html, Excel knowledge

Round 2 - Group Discussion 

Give me topic and i will discussed you that topic about regarding all things

Interview Preparation Tips

Topics to prepare for HCL Infosystems Software Developer interview:
  • Advance C
  • Javascript
  • Python
  • Html
  • Excel knowledge
  • Oracle
Interview preparation tips for other job seekers - I have a inovater and team player and best Communication skill and applied my knowledge and skill to grow this Company in best manner and good manner.

Xcaliber Infotech Interview FAQs

How many rounds are there in Xcaliber Infotech Software Developer interview?
Xcaliber Infotech interview process usually has 2-3 rounds. The most common rounds in the Xcaliber Infotech interview process are Technical, Coding Test and HR.
How to prepare for Xcaliber Infotech Software Developer 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 Xcaliber Infotech. The most common topics and skills that interviewers at Xcaliber Infotech expect are HTML, Hibernate, J2Ee, Javascript and Mule ESB.
What are the top questions asked in Xcaliber Infotech Software Developer interview?

Some of the top questions asked at the Xcaliber Infotech Software Developer interview -

  1. What is Rls in power...read more
  2. What is multithread...read more
  3. Basics of SQL and SQL query questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Xcaliber Infotech Software Developer Salary
based on 222 salaries
₹4 L/yr - ₹10.1 L/yr
31% less than the average Software Developer Salary in India
View more details

Xcaliber Infotech Software Developer Reviews and Ratings

based on 32 reviews

3.3/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.0

Salary

3.6

Job security

3.3

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 32 Reviews and Ratings
Software Developer
222 salaries
unlock blur

₹4 L/yr - ₹10.1 L/yr

Junior Software Developer
76 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Senior Software Developer
70 salaries
unlock blur

₹5.7 L/yr - ₹19.7 L/yr

Quality Analyst
50 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Business Analyst
30 salaries
unlock blur

₹6.2 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Xcaliber Infotech with

HCL Infosystems

3.9
Compare

DynPro

3.8
Compare

V2soft

3.7
Compare

ClaySys

2.9
Compare
write
Share an Interview