Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Satyam Software Solutions Private Limited Team. If you also belong to the team, you can get access from here

Filter interviews by

Satyam Software Solutions Private Limited Interview Questions and Answers

Updated 17 May 2022

Satyam Software Solutions Private Limited Interview Experiences

1 interview found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 17 May 2022

I appeared for an interview in Apr 2022.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Circular Queue Problem Description

    Implement a circular queue based on given 'Q' queries. Each query falls into one of the two types specified:

    Explanation:
    1 'X': Insert the element 'X' at the end of t...
  • Ans. 

    Implement a circular queue based on given queries to insert and remove elements.

    • Create a circular queue of size N to store elements.

    • For query type 1, insert element X at the end of the nth queue.

    • For query type 2, remove and return the element at the front of the nth queue.

    • Return true if insertion is successful, false otherwise.

    • Return -1 if the queue is empty during dequeue operation.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 69 minutes
Round difficulty - Easy

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions ('U', 'D', 'L', 'R') from each cell.

    • Add the valid paths to the output list in alphabetical order.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. What is the difference between multithreading and multiprocessing?
  • Ans. 

    Multithreading involves multiple threads within the same process, while multiprocessing involves multiple processes running concurrently.

    • Multithreading allows multiple threads to share the same memory space and resources, while multiprocessing involves separate memory spaces for each process.

    • Multithreading is more lightweight and efficient in terms of resource usage compared to multiprocessing.

    • Multithreading is suitabl...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNoSatyam Software Solutions Pvt Ltd interview preparation:Topics to prepare for the interview - C,C++ , stacks , queues , list , Multitasking , multithreading , MicrocontrollerTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Cover basics
Tip 2 : Try coding
Tip 3 : Do as much projects as you can

Application resume tips for other job seekers

Tip 1 : be short and simple
Tip 2 : don't lie about projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 Satyam Software Solutions Private Limited?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Technical questions from data warehousing and ETL Concept , SQL Queries and Unix

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API...

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2021. 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 - Aptitude Test 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and should communicate well in English. Be Truth.
Are these interview questions helpful?

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Satyam Software Solutions Private Limited Interview FAQs

How to prepare for Satyam Software Solutions Private Limited 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 Satyam Software Solutions Private Limited. The most common topics and skills that interviewers at Satyam Software Solutions Private Limited expect are C++, Data Structures, Embedded Software, C and I2C.

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 897 Interviews
Oracle Interview Questions
3.7
 • 894 Interviews
Zoho Interview Questions
4.2
 • 537 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
KPIT Technologies Interview Questions
3.3
 • 306 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
View all

Satyam Software Solutions Private Limited Reviews and Ratings

based on 27 reviews

3.1/5

Rating in categories

3.5

Skill development

3.1

Work-life balance

2.9

Salary

3.0

Job security

2.6

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 27 Reviews and Ratings
Software Engineer
11 salaries
unlock blur

₹4.5 L/yr - ₹5.3 L/yr

Service Engineer
7 salaries
unlock blur

₹2.2 L/yr - ₹4.3 L/yr

Design Engineer
6 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Production Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Hardware Engineer
4 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Satyam Software Solutions Private Limited with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview