Upload Button Icon Add office photos
Engaged Employer

i

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

Saksoft Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Saksoft Interview Questions, Process, and Tips

Updated 7 Mar 2025

Top Saksoft Interview Questions and Answers

View all 17 questions

Saksoft Interview Experiences

Popular Designations

34 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. CICD, Jenkins, DevOps, Load Balancer related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very specific yet to the point while answering questions

AWS Devops Engineer Interview Questions asked at other Companies

Q1. how do you troubleshoot a docker container that is going to die?
View answer (1)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Telecom Oss and BSs

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview happened for account manager but after joining we have to start preparing test scenarios, test case. Lost eye visibility due to over stress still I have been asked to work sick leave even repeatedly telling them that I am not able to see anything.

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Saksoft Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Opps concept, Manual testing

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Merge two arrays in sorted manner.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Saksoft interview questions for popular designations

 Consultant

 (4)

 Senior Consultant

 (3)

 Analyst

 (2)

 Software Developer

 (2)

 Lead Consultant

 (2)

 Senior Engineer

 (1)

 Business Analyst

 (1)

 Associate Consultant

 (1)

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

(2 Questions)

  • Q1. Hashmap working
  • Ans. 

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

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

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

  • Answered by AI
  • Q2. String and string buffer difference
  • Ans. 

    String is immutable, while StringBuffer is mutable in Java.

    • String is immutable, meaning once created, it cannot be changed. StringBuffer is mutable and can be modified.

    • StringBuffer is synchronized, making it thread-safe. String is not synchronized.

    • StringBuffer is more efficient for concatenating multiple strings due to its mutable nature.

    • Example: String str = "Hello"; StringBuffer sb = new StringBuffer("Hello");

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Saksoft Interview Questions

Software Developer Interview Questions & Answers

user image Raja Sekhar N

posted on 25 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core java and java 8
Round 2 - Coding Test 

Find Arrays in prime numbers and sorting arrays

Interview Preparation Tips

Topics to prepare for Saksoft Software Developer interview:
  • java8
  • Core Java
  • Your previous project
Interview preparation tips for other job seekers - Ibc was good environment and genuine

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Saksoft

View all

Senior Consultant Interview Questions & Answers

user image Shridhar Kamble

posted on 19 Dec 2024

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

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Peformance tunning in SQL store procedures
  • Ans. 

    Performance tuning in SQL store procedures involves optimizing the code to improve execution speed and efficiency.

    • Identify and eliminate unnecessary code

    • Use appropriate indexing to speed up data retrieval

    • Avoid using cursors and loops whenever possible

    • Optimize query execution plan

    • Consider using stored procedures for frequently executed queries

  • Answered by AI
  • Q2. Index optimization in sql server
  • Ans. 

    Index optimization in SQL Server involves creating, maintaining, and optimizing indexes to improve query performance.

    • Identify and create indexes on columns frequently used in WHERE clauses

    • Regularly update statistics to ensure the query optimizer has accurate information

    • Consider using included columns to cover queries that require additional columns not in the index key columns

    • Avoid over-indexing as it can lead to decre...

  • Answered by AI
  • Q3. Sql Exexution Plan and Query Analyzer
  • Q4. Role of SQL Profiler
  • Ans. 

    SQL Profiler is a tool used to monitor and capture SQL Server events and performance data.

    • SQL Profiler helps in identifying and troubleshooting performance issues in SQL Server.

    • It captures events like queries, stored procedures, errors, and more.

    • Allows users to analyze the captured data to optimize database performance.

    • Can be used to trace and monitor specific activities in real-time.

    • Helps in identifying slow queries a...

  • Answered by AI
  • Q5. What are temp tables. Diff bet temp tables and CTE
  • Ans. 

    Temp tables are temporary tables used to store intermediate results, while CTEs are temporary result sets defined within a query.

    • Temp tables are physical tables that are created in the tempdb database and can be used multiple times within a session.

    • CTEs (Common Table Expressions) are temporary result sets that are defined within a query and can only be referenced within that query.

    • Temp tables persist until they are exp...

  • Answered by AI

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Consultant Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2023

Interview experience
1
Bad
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 Resume tips
Round 2 - HR 

(4 Questions)

  • Q1. Introduce yourself?and and some important questions?
  • Q2. What is your work?
  • Q3. What is your additional skill?
  • Q4. What is your your other skill in language?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Analyst Interview Questions & Answers

user image Anonymous

posted on 8 Dec 2022

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

I applied via Naukri.com and was interviewed in Nov 2022. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Soc , ips ids firewall
  • Q2. EMF point security questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Subject will improve when performing the interview

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. This was an MBA campus interview. So the questions were focused on what was my understanding of sales, stakeholder Management etc was.
  • Ans. I answered about the importance of cultivating a good client relationship in order to deepen the engagement and the use of continuous feedback to ensure client satisfaction
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Saksoft Key Account Manager interview:
  • Client Relationship Management
  • Key Account Management
  • Stakeholder Management
  • Cross Selling
  • upselling
Interview preparation tips for other job seekers - It is a fairly straightforward and easy interview process. They will clearly let candidates know what is expected of them during the interview. So.it is Important to be prepared.

Key Account Manager Interview Questions asked at other Companies

Q1. What is the reason behind introduction of Loan secure products amongst lenders and Insurance companies.
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

Saksoft Interview FAQs

How many rounds are there in Saksoft interview?
Saksoft interview process usually has 1-2 rounds. The most common rounds in the Saksoft interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Saksoft 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 Saksoft. The most common topics and skills that interviewers at Saksoft expect are SQL, Javascript, Java, HTML and Troubleshooting.
What are the top questions asked in Saksoft interview?

Some of the top questions asked at the Saksoft interview -

  1. 1.what is active and Passive transformation in informatica? Project Explain. ...read more
  2. What is the middleware used in redux? write syntax of it. Redux seleto...read more
  3. GIVE YOU ONE CONDITION TO TAKE YOUR THOUGHT ABOUT...read more
How long is the Saksoft interview process?

The duration of Saksoft interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Saksoft

No Jobs

JOBS

Saksoft

No Jobs

SALARIES

Saksoft

SALARIES

Saksoft

SALARIES

Saksoft

LIST OF COMPANIES

Saksoft

Overview

SALARIES

Saksoft

SALARIES

Almonds Ai

No Salaries

COMPANY BENEFITS

Almonds Ai

No Benefits

REVIEWS

Almonds Ai

No Reviews

Tell us how to improve this page.

Saksoft Interview Process

based on 30 interviews

Interview experience

3.6
  
Good
View more

HCLTech

Workplace transformation starts with you

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Saksoft Reviews and Ratings

based on 347 reviews

3.6/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

3.3

Salary

3.1

Job security

3.5

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 347 Reviews and Ratings
Cleo EDI Analyst

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Technical QA

Noida

3-7 Yrs

Not Disclosed

Cargowise L2 Support

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
374 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
289 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
163 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
97 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Saksoft with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview