Premium Employer

i

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

Calsoft Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Calsoft Senior Project Leader Interview Questions and Answers

Updated 5 Jun 2020

Calsoft Senior Project Leader Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Dec 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly questions are from your projects and then project functionality in which you work and how you have implemented that. Then one practical scenarios will be given and ask you to design the same. Then f...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with technical knowledge.
Don't give false answers.
If you have study knowledge for the question, clearly mention the same that I know this from my own study.

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

Interview questions from similar companies

I applied via Referral and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Find the maximum for each and every contiguous subarray of size k from an arr of size n.
  • Ans. 

    Find maximum for each contiguous subarray of size k from an array of size n.

    • Iterate through the array and keep track of maximum for each subarray of size k

    • Use a sliding window approach to efficiently calculate maximum for each subarray

    • Time complexity: O(n)

    • Example: arr = [10, 5, 2, 7, 1, 9, 4], k = 3, output = [10, 7, 7, 9, 9]

  • Answered by AI
  • Q2. Find all the permutations of the string.
  • Ans. 

    Permutations of a string

    • Use recursion to swap characters and generate permutations

    • Iterate through the string and swap each character with the first character

    • Repeat the above step for each character in the string

  • Answered by AI
  • Q3. Left View of a Binary Tree.
  • Ans. 

    Left view of a binary tree

    • The left view of a binary tree shows the leftmost node at each level

    • We can traverse the tree in a pre-order fashion and keep track of the current level

    • If the current level is greater than the maximum level seen so far, add the node to the result

  • Answered by AI
  • Q4. Segregate an array containing 0 and 1 with minimum number of swaps.
  • Ans. 

    Segregate an array of 0s and 1s with minimum swaps.

    • Count the number of 0s in the array.

    • Swap the 1s with the 0s until all 0s are on one side and 1s on the other.

    • The minimum number of swaps required is half the number of 1s on the side with fewer 1s.

  • Answered by AI
  • Q5. More questions from CV (about project and framwork link springboot mentioned in cv) and collections (question on map and comparable and comparator), multithreading (consumer producer for odd even number)

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions will be medium, prepare well basic DS, Algo and the top project and frameworks from CV.

Skills evaluated in this interview

Senior Project Leader Interview Questions Asked at Other Companies

asked in GlobalStep
Q1. Which platforms have you used?
Q2. What is singleton design pattern , write code for it.
asked in Enlighted
Q3. What is your experience in hardware and software integration?
Q4. As a project leader, how do you ensure proper planning and execut ... read more
Q5. Are you interested in a long-term commitment?

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Core java, spring boot, sql, java8
  • Q2. Basic concept of java
Round 2 - HR 

(1 Question)

  • Q1. What is your Salary expectation
  • Ans. 

    Salary expectations should reflect experience, market rates, and the value you bring to the company.

    • Market Research: I have researched industry standards for similar roles in this region, which typically range from $X to $Y.

    • Experience Level: Given my X years of experience and expertise in technologies like A, B, and C, I believe a salary in the range of $Z is appropriate.

    • Value Proposition: I can contribute significantl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basic concept and also must have good communication skills
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hello tell me about yourself

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

Angular coding task of 30 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Javascript questions
  • Q2. Angular/React questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. JAVA 8 new features spring framework
  • Q2. What is marker interface why we use
  • Ans. 

    Marker interface is an empty interface used to mark classes for special treatment.

    • Marker interface has no methods or fields, it is used to provide metadata about the class.

    • It is used by frameworks or APIs to identify classes that implement the interface.

    • Examples include Serializable interface in Java, which marks classes as serializable.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was pretty easy. Various theoretical questions on technical knowledge and 3 coding questions. Since I was applying for a .net profile, all questions were related to that only.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Coding question on inheritance.
  • Q2. Coding question on Abstract classes and their application.
  • Q3. Discussion on the company, their culture.
  • Q4. Coding question on graph.
Round 3 - HR 

(2 Questions)

  • Q1. Asked me my expected salary even though it was already decided when they reached out to me.
  • Q2. Negotiations on the salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Had a very bad experience with HR, since they started negotiating on salary after I completed all my rounds. Giving me reasons why they won't be able to give me the salary that they mentioned at the start of the interview.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How hashmap works in java?
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap uses hashing to store key-value pairs in an array of linked lists.

    • It allows null keys and values.

    • HashMap provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key1", 1); int value = map.get("key1");

  • Answered by AI
  • Q2. Multithreading in java deadlock, wait and join,
  • Q3. Java 8 feature like streams
Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL Inner join, outer join
  • Q2. Asked about my project

Skills evaluated in this interview

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

(1 Question)

  • Q1. Past Experience
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. Javascript basics, class and functional components, basic es6
Round 3 - Technical 

(1 Question)

  • Q1. Promises, context api, redux and rest API

Interview Preparation Tips

Interview preparation tips for other job seekers - I wouldn't recommend attending the interview. Cleared screening and first technical round. Had to go through background verification before proceeding to next round. Second round interviewer asked irrelevant questions to the role I was interviewing for irrespective of informing that I had not worked on the topic being discussed. Got a call next day that I was rejected and to attend walk in drive the next week so they can release the offer.

Tell us how to improve this page.

Join Calsoft Technology-First

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

Calsoft Senior Project Leader Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Development Engineer
325 salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Senior Development Engineer
225 salaries
unlock blur

₹8.9 L/yr - ₹19.2 L/yr

Softwaretest Engineer
132 salaries
unlock blur

₹3 L/yr - ₹6.7 L/yr

Senior Software Engineer
122 salaries
unlock blur

₹7 L/yr - ₹27.2 L/yr

Principal Development Engineer
122 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Calsoft with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

4.1
Compare
write
Share an Interview