Upload Button Icon Add office photos

Filter interviews by

Searce Cosourcing Services Software Developer Interview Questions and Answers

Updated 4 Dec 2024

Searce Cosourcing Services Software Developer Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

First round is aptitude test, it didn't have any technical questions, then later on there is 1 technical, 1 HR+Technical and 1 CEO or HR round.

Round 2 - Technical 

(2 Questions)

  • Q1. Write a code for finding number of solutions for jumps problem in array.
  • Ans. 

    Code to find number of solutions for jumps problem in array.

    • Use dynamic programming to keep track of number of ways to reach each index.

    • Initialize an array to store number of ways to reach each index.

    • Iterate through the array and update the number of ways based on previous indices.

    • Return the number of ways to reach the last index.

  • Answered by AI
  • Q2. Find the longest palindromic substring in the string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and consider each character as the center of a potential palindrome

    • Expand around the center to check for palindromes of odd and even lengths

    • Keep track of the longest palindrome found

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Searce Cosourcing Services Software Developer interview:
  • DSA
  • Puzzles

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java Based questions like hashmap, hashset
  • Q2. Sql basics and also multi stack
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Apr 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Resume based questions
Round 2 - HR 

(1 Question)

  • Q1. Biggest achievement

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Online zoom coding test will be there - 4 questions - 2 about output of code & 2 about technical questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism and explain about virtual polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Virtual polymorphism is achieved through virtual functions in C++.

    • Virtual functions allow a function in a base class to be overridden in a derived class.

    • Example: Animal class with virtual function 'makeSound' overridden in Dog a

  • Answered by AI
  • Q2. Write code for virtual polymorphism and explain
  • Ans. 

    Virtual polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the overridden functions

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. About yourself should explain
  • Q2. Reason for job change
  • Q3. Salary negotiations and location

Interview Preparation Tips

Interview preparation tips for other job seekers - I have interviewed for c++ developer role in incedo company - please make sure you are completely aware of every functions and keywords relate to c++ concepts.

Skills evaluated in this interview

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

Hackearth online coding test for 1 hour

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question and output questions
  • Q2. Find k largest element in an array
  • Ans. 

    Use sorting or heap data structure to find k largest elements in an array of strings.

    • Sort the array in descending order and return the first k elements.

    • Use a max heap data structure to efficiently find the k largest elements.

    • Examples: ['apple', 'banana', 'orange', 'kiwi'], k=2 -> ['orange', 'kiwi']

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Create a Set to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the unique strings

  • Answered by AI
  • Q2. Output related questions on student class object

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. REST API for User CRUD
  • Ans. 

    Design a RESTful API for CRUD operations on user resources.

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Create endpoints like /users for listing all users, /users/{id} for specific user

    • Use status codes like 200 for success, 404 for not found, 400 for bad request

    • Implement authentication and authorization mechanisms for security

    • Include request and response body formats like JSON or XML

  • Answered by AI
  • Q2. Two Sum Leetcode problem
  • Q3. Basic questions based on the candidate technical skills
Round 2 - Technical 

(2 Questions)

  • Q1. Basics to Intermediate level of questions based on the skills mentioned in the resume
  • Q2. Projects related discussions
Round 3 - Document Verification 

(1 Question)

  • Q1. I was informed to upload the supporting documents. ( They rejected me after this eventhough all my documents are genuine )

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer's are friendly. Be prepared as per your resume.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

There were 3 coding questions of moderate difficulty.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Code transpose of matrix
  • Ans. 

    Transpose a matrix by swapping rows with columns

    • Iterate through each row and column and swap the elements

    • Create a new matrix with swapped rows and columns

    • Ensure the new matrix has the correct dimensions

  • Answered by AI
  • Q2. Implement swap method.
  • Ans. 

    Implement a swap method for two variables.

    • Create a temporary variable to store the value of one variable.

    • Assign the value of the second variable to the first variable.

    • Assign the value of the temporary variable to the second variable.

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Depth of a binary tree
  • Ans. 

    The depth of a binary tree is the number of edges on the longest path from the root node to a leaf node.

    • Depth of a binary tree can be calculated recursively by finding the maximum depth of the left and right subtrees and adding 1.

    • The depth of a binary tree with only one node (the root) is 0.

    • Example: For a binary tree with root node A, left child B, and right child C, the depth would be 1.

  • Answered by AI
  • Q2. Middle of linked list.
  • Ans. 

    To find the middle element of a linked list, use two pointers - one moving at double the speed of the other.

    • Use two pointers - slow and fast, with fast moving at double the speed of slow.

    • When fast reaches the end of the list, slow will be at the middle element.

  • Answered by AI
  • Q3. Design book my show
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join hashedin.
  • Ans. 

    I want to join Hashedin because of its reputation for innovative projects and collaborative work environment.

    • Reputation for innovative projects

    • Collaborative work environment

    • Opportunities for growth and learning

  • Answered by AI
  • Q2. Challenges faced in my previous internship.
  • Ans. 

    Managing tight deadlines and learning new technologies were the main challenges faced in my previous internship.

    • Meeting tight project deadlines

    • Adapting to new technologies quickly

    • Working in a fast-paced environment

    • Collaborating with team members effectively

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not hard. Be calm and prepare. Prepare cse fundamentals as well.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is OOPS ?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data and methods to manipulate that data.

    • It allows for encapsulation, inheritance, and polymorphism.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q2. What is Dependency Injection
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Example: Constructor injection, Setter injection

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Which Architechture does you project build by?
  • Q2. What is Normalization in sql?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured manner.

    • There are different normal forms like 1NF, 2NF, 3NF, and BCNF that define the level of normalization.

    • Example: If we have a t...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell about your self ?
  • Q2. Whom do you provide your first month salary ?

Skills evaluated in this interview

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

I applied via Shine and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Normal coding round with simple oa complexity

Round 2 - One-on-one 

(2 Questions)

  • Q1. Discussion on projects
  • Q2. Culture fit check

Interview Preparation Tips

Interview preparation tips for other job seekers - go thru projects and problem solving
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI

Searce Cosourcing Services Interview FAQs

How many rounds are there in Searce Cosourcing Services Software Developer interview?
Searce Cosourcing Services interview process usually has 2 rounds. The most common rounds in the Searce Cosourcing Services interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Searce Cosourcing Services Software Developer interview?

Some of the top questions asked at the Searce Cosourcing Services Software Developer interview -

  1. Write a code for finding number of solutions for jumps problem in arr...read more
  2. find the longest palindromic substring in the stri...read more
  3. Java Based questions like hashmap, hash...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Searce Cosourcing Services interviews
Campus Placement
50%
50% 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
Searce Cosourcing Services Software Developer Salary
based on 9 salaries
₹5 L/yr - ₹12.3 L/yr
At par with the average Software Developer Salary in India
View more details

Searce Cosourcing Services Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

2.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
139 salaries
unlock blur

₹4 L/yr - ₹15.2 L/yr

Cloud Engineer
108 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Cloud Consultant
86 salaries
unlock blur

₹6.6 L/yr - ₹21 L/yr

Analyst
67 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Data Engineer
50 salaries
unlock blur

₹4.2 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Searce Cosourcing Services with

WNS

3.4
Compare

Genpact

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
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