Upload Button Icon Add office photos
Engaged Employer

i

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

Calibraint Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 38 Reviews

Filter interviews by

Calibraint Software Developer Interview Questions and Answers

Updated 21 Jul 2024

Calibraint Software Developer Interview Experiences

6 interviews found

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

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

Written Coding Test - Arrays, Matrix in any language

Round 2 - Group Discussion 

GD is Group Discussion only shortlisted students will attend GD Round

Round 3 - Technical 

(2 Questions)

  • Q1. I've not attended
  • Q2. Then there will be a HR Round

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Loyola College, Chennai and was interviewed in Sep 2023. There were 4 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 - Coding Test 

1st round we had 3 coding question that has to be written(Easy,Medium,Hard)

Round 3 - Group Discussion 

We had Gd with self intro

Round 4 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. He gave me a coding question

Calibraint interview questions for designations

 Associate Software Developer

 (2)

 PHP Developer

 (1)

 UI Developer

 (1)

 Mobile Application Developer

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA coding easy ,time complexity,space complexity

Round 2 - HR 

(2 Questions)

  • Q1. Tiktactoo logic,SQL,
  • Q2. Tell about yourself

I applied via LinkedIn and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions to start with. then as rounds proceeds you can see the questions being more application oriented.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 3 rounds of technical interview. One of the toughest interview panel I have come across. It is important to know the technical concept as well as the scenarios where you will be using it.

They give enough time and keep you comfortable. All you have to do is solve it meticulously and they are more in to the approach than the solutions.

All the best.

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

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

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. 3 Question was there related to architecture and Computer networks.
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices and Monolith.
  • Q2. Leetcode hard Sum.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dr Mahalingam College of Engineering & Technology, Coimbatore and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical thinking and quantitative

Round 2 - Coding Test 

One Java and one SQL and one js question

Round 3 - HR 

(3 Questions)

  • Q1. What is collections
  • Ans. 

    Collections are data structures that store and organize multiple elements in a single unit.

    • Collections provide methods to add, remove, and manipulate elements.

    • Examples of collections include arrays, lists, sets, and maps.

    • Collections can be used to efficiently manage and access large amounts of data.

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

    A constructor is a special method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state

    • Constructors can have parameters to customize the initialization process

  • Answered by AI
  • Q3. What is data science
  • Ans. 

    Data science is a field that uses scientific methods, algorithms, and systems to extract knowledge and insights from structured and unstructured data.

    • Data science involves collecting, analyzing, and interpreting large amounts of data to make informed decisions.

    • It combines statistics, machine learning, and domain knowledge to uncover patterns and trends in data.

    • Data scientists use programming languages like Python and R...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was moderate process

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. All about core java
  • Q2. Front end and My Sql

Calibraint Interview FAQs

How many rounds are there in Calibraint Software Developer interview?
Calibraint interview process usually has 3 rounds. The most common rounds in the Calibraint interview process are Group Discussion, Coding Test and Technical.
What are the top questions asked in Calibraint Software Developer interview?

Some of the top questions asked at the Calibraint Software Developer interview -

  1. 2 dimentional array rotate 90 deg...read more
  2. Palindrome in any code langu...read more
  3. peak element in ar...read more

Tell us how to improve this page.

Calibraint Software Developer Interview Process

based on 3 interviews in last 1 year

Interview experience

4
  
Good

People are getting interviews through

based on 4 Calibraint interviews
Campus Placement
Job Portal
50%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Fast track your campus placements

View all
Calibraint Software Developer Salary
based on 25 salaries
₹4 L/yr - ₹11 L/yr
13% less than the average Software Developer Salary in India
View more details

Calibraint Software Developer Reviews and Ratings

based on 10 reviews

4.4/5

Rating in categories

4.2

Skill development

3.3

Work-Life balance

4.2

Salary & Benefits

4.2

Job Security

4.4

Company culture

4.4

Promotions/Appraisal

4.2

Work Satisfaction

Explore 10 Reviews and Ratings
Software Developer
25 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Senior Software Developer
20 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Software Development Engineer II
15 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Associate Software Developer
12 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Associate Technical Leader
10 salaries
unlock blur

₹8.3 L/yr - ₹13.1 L/yr

Explore more salaries
Compare Calibraint with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview