Upload Button Icon Add office photos

Filter interviews by

Spruce Infotech Interview Questions and Answers

Updated 23 Jun 2021

Spruce Infotech Interview Experiences

1 interview found

Team Lead Interview Questions & Answers

user image Anonymous

posted on 22 Jun 2021

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

Interview Questionnaire 

1 Question

  • Q1. Experience, Responsibilities, should through on Technical skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and though on skills you have done earlier.

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Interview questions from similar companies

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

(2 Questions)

  • Q1. Python coding questions on list, set, dictionaries
  • Q2. Problem statements wrt object oriented concepts
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on selenium web elements
  • Q2. Problems on regular expressions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Project explaination, testing theorical concepts
  • Q2. Some puzzles to check analytical skills
Round 4 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Date of joining if serving the NP

Interview Preparation Tips

Interview preparation tips for other job seekers - In the middle of HR round they rejected me saying my salary expectation was out of the budget, but from the beginning no where they mentioned highest budget for this position. During HR discussion she asked about salary expectation also about any offers in hand and I asked wrt current market and told having a offer in hand. She told we don't have that budget I will check with concerned team regarding the max ctc that they can offer me and I agreed for that. I waited for 2 days I didn't get any update. When I contacted the recruiter she told another candidate agreed for the budget as per them and they are waiting for his performance in next round and if he gets selected we will be offering him.
This was such a bad experience from that company they are simply wasting candidates time. They could tell all these in the beginning only. They won't consider talented candidates who complete 3 rounds of interviews. It's not worth applying to celestial systems.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Soo easy aptitude exam asked questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops in Java,fibo, and sorting
  • Ans. 

    OOPs in Java refers to Object-Oriented Programming concepts, fibo likely refers to Fibonacci sequence, and sorting refers to arranging elements in a specific order.

    • OOPs in Java includes concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • Fibo likely refers to the Fibonacci sequence, where each number is the sum of the two preceding ones (e.g. 0, 1, 1, 2, 3, 5, ...).

    • Sorting involves arranging el...

  • Answered by AI
  • Q2. Why is garbage collector is used in java etc more of java questions
  • Q3. Can main can be overloaded and overrided
  • Ans. 

    Yes, main can be overloaded but not overridden in C++.

    • Main can be overloaded by defining multiple functions with different parameters.

    • Example: int main() and int main(int argc, char* argv[])

    • Main cannot be overridden as it is a static function of the program.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and get your basics right
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. How do you apply the lead generation in real world scenario
Round 2 - Assignment 

Finding leads for the 20-30 US companies

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

(2 Questions)

  • Q1. Accounting profil
  • Q2. Accounting basic
Round 2 - Technical 

(2 Questions)

  • Q1. Accounting process
  • Q2. Accointing problem
Round 3 - HR 

(2 Questions)

  • Q1. Accounting ratio
  • Q2. Accounting assistant
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The technical aptitude was assessed through scenario-based questions during the L1 portion.

Round 2 - Technical 

(1 Question)

  • Q1. The technical panel conducted discussions on both scenarios and coding.
Round 3 - HR 

(1 Question)

  • Q1. HR discussion is the final round of the interview process.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare based on your experience.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal Aptitude and Basics of the Computer Core Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell about Yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Write the code abt the right binary tree?
Round 3 - HR 

(1 Question)

  • Q1. Normal Hr Questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Given a button, change color of a button using pure js
  • Ans. 

    Use JavaScript to change the color of a button

    • Select the button element using document.querySelector()

    • Use the style property to change the background color of the button

  • Answered by AI
  • Q2. Give a div inside div, add a table inside div using pure js
  • Ans. 

    Create a div inside another div and add a table inside the inner div using pure JavaScript

    • Create a parent div element using document.createElement('div')

    • Create a child div element using document.createElement('div')

    • Create a table element using document.createElement('table')

    • Append the child div and table elements to the parent div using parentDiv.appendChild(childDiv) and parentDiv.appendChild(table)

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at K J Somaiya College of Engineering, Mumbai and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Assignment 

PPT ROUND about their company

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why product management
  • Ans. 

    Product management allows for strategic planning, coordination of resources, and optimization of production processes.

    • Product management involves overseeing the development, production, and distribution of goods.

    • It requires coordinating with various departments such as marketing, sales, and operations to ensure successful product launches.

    • Product managers analyze market trends, customer feedback, and competitor strateg...

  • Answered by AI
  • Q2. Mostly qs on cv
Round 3 - One-on-one 

(2 Questions)

  • Q1. HR BASIC QUESTIONS WHY THIS COMPANY
  • Q2. YOUR BACKGROUND HOW ARE YOU AS PERSON
  • Ans. 

    I have a strong background in production management and am known for my attention to detail and problem-solving skills.

    • Extensive experience in overseeing production processes and ensuring efficiency

    • Strong organizational skills and ability to multitask effectively

    • Proven track record of meeting deadlines and delivering high-quality results

    • Excellent communication and leadership skills, able to motivate and manage teams ef

  • Answered by AI

Spruce Infotech Interview FAQs

How to prepare for Spruce Infotech 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 Spruce Infotech. The most common topics and skills that interviewers at Spruce Infotech expect are Python, Java, Automation Testing, Javascript and SAP Implementation.

Tell us how to improve this page.

People are getting interviews through

based on 1 Spruce Infotech interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

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

Spruce Infotech Reviews and Ratings

based on 34 reviews

4.4/5

Rating in categories

4.0

Skill development

4.3

Work-Life balance

4.2

Salary & Benefits

3.9

Job Security

4.3

Company culture

3.8

Promotions/Appraisal

4.1

Work Satisfaction

Explore 34 Reviews and Ratings
Technical Recruiter
30 salaries
unlock blur

₹1.3 L/yr - ₹4.3 L/yr

Information Technology Recruiter
16 salaries
unlock blur

₹1.7 L/yr - ₹5 L/yr

Senior Technical Recruiter
10 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹8.5 L/yr - ₹18 L/yr

QA Engineer
6 salaries
unlock blur

₹7.8 L/yr - ₹13 L/yr

Explore more salaries
Compare Spruce Infotech 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