Upload Button Icon Add office photos
Engaged Employer

i

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

Sasken Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sasken Interview Questions, Process, and Tips

Updated 1 Feb 2025

Top Sasken Interview Questions and Answers

View all 20 questions

Sasken Interview Experiences

Popular Designations

79 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Abstract vs Interface
  • Q2. When to use interface and abstract
  • Q3. Method overloading and Method overriding
  • Q4. Difference between val and var
  • Q5. Difference between const and val
  • Q6. Project related questions
  • Q7. Coding question: Shift all zeroes to one side.
  • Q8. Asked about Viewmodel and how does it handle configuration changes.
  • Q9. What are the advantages of Kotlin over Java?

Interview Preparation Tips

Topics to prepare for Sasken Android Developer interview:
  • Basic Java
  • Kotlin
  • Basic coding
Interview preparation tips for other job seekers - Company provided very less time to prepare. Notified about interview just 4 hours before the actual interview.

Android Developer Interview Questions asked at other Companies

Q1. Cube Sum PairsYou are given a positive integer N, and you have to find the number of ways to represent N as a sum of cubes of two integers(let’s say A and B), such that: N = A^3 + B^3. Note: 1. A should be greater than or equal to one (A&g... read more
View answer (3)

Software Engineer Interview Questions & Answers

user image Abirbhav Goswami

posted on 12 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I was asked about Rust and it's nuances: How the memory management model works, and then asked to write a program to read and write files to disk, as well as accept command line arguments using Rust's standard library.

Round 2 - Technical 

(3 Questions)

  • Q1. How do you work on code that someone else has written?
  • Ans. 

    I review the code thoroughly, understand its functionality, and make necessary changes while following coding standards.

    • Review the code to understand its functionality

    • Follow coding standards and best practices

    • Make necessary changes while ensuring code quality

    • Communicate with the original author if needed

  • Answered by AI
  • Q2. How do you debug and solve problems that might've gotten missed during Unit Testing after they've been presented by QA?
  • Ans. 

    I use a combination of debugging tools, logs, code reviews, and collaboration with team members to identify and fix issues.

    • Utilize debugging tools such as breakpoints, watchpoints, and step-through debugging to pinpoint the root cause of the issue.

    • Analyze logs and error messages to gather more information about the problem.

    • Review the code changes made since the last successful unit test to identify potential causes of ...

  • Answered by AI
  • Q3. How do you improve the performance/memory footprint of your Rust program, without relying on any external crates, profilers, or architectural changes? Assume that logging and monitoring libraries etc. are ...
  • Ans. 

    To improve performance/memory footprint of Rust program without external tools, focus on optimizing algorithms, data structures, and memory management.

    • Optimize algorithms to reduce time complexity

    • Use efficient data structures like HashMaps or Vecs

    • Minimize memory allocations by reusing objects or using stack allocation

    • Avoid unnecessary copying of data

    • Implement lazy evaluation to defer computations until needed

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Where do you see yourself in 3 years time?
  • Q2. Why did you leave your previous organisation after such a short stint?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was extremely smooth and streamlined. The interviewer is going to test your technical knowledge, so you should be confident in your basics. Be prepared to answer questions about core Rust concepts such as lifetimes, memory management, ownership, traits, generics etc. Also be prepared to tackle scenario-based technical aptitude questions, where you need to think like a team lead.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists of 7-8 sections that assess the candidates aptitude skills and time management.

Round 2 - Group Discussion 

For me the topic of group discussion was Cybersecurity and Computer Networking.

Round 3 - Technical 

(2 Questions)

  • Q1. Explain the OOPS concepts of Java and related questions.
  • Q2. Write a Program to find the duplicates in an array and store them in key-value pairs using hashmap.
  • Ans. 

    Program to find duplicates in an array and store them in key-value pairs using hashmap.

    • Create a hashmap to store the elements of the array as keys and their frequency as values.

    • Iterate through the array and check if the element already exists in the hashmap. If it does, increment the frequency.

    • Finally, iterate through the hashmap and print the key-value pairs where the frequency is greater than 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about Yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding. I have experience with Java, Python, and web development.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and technology

    • Proficient in Java, Python, and web development

    • Experience with projects in software development

  • Answered by AI
  • Q2. Some scenario based questions.

Interview Preparation Tips

Topics to prepare for Sasken Associate Software Engineer interview:
  • OOPS
  • Computer Networking
  • DSA
Interview preparation tips for other job seekers - Prepare for the basics of OOPS concepts, SQL and the subjects that are in coursework. Practice group discussion by taking your own topics.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

The assessment consisted of general aptitude questions, one coding problem, and general topics related to networking and data structures and algorithms (DSA). The overall duration of the round was three hours, conducted on the Mettl platform.

Round 2 - Coding Test 

I prefer coding in Java over C.(available languages c or java)

Round 3 - Technical 

(1 Question)

  • Q1. All questions were asked about oops from scratch to in depth,one live coding . this round is in online mode for half an hour.
Round 4 - HR 

(1 Question)

  • Q1. Asked about myself,my resume and some general hr questions

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Sasken interview questions for popular designations

 Software Engineer

 (16)

 Associate Software Engineer

 (15)

 Software Developer

 (6)

 Android Developer

 (4)

 System Software Engineer

 (4)

 Senior Engineer

 (3)

 Senior Software Engineer

 (2)

 Senior System Software Engineer

 (2)

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

Ten multiple-choice questions on the C programming language and two coding questions.

Round 2 - Technical 

(1 Question)

  • Q1. How do you reverse a string in the C programming language?
  • Ans. 

    To reverse a string in C, you can use a loop to swap characters from the beginning and end of the string.

    • Create two pointers, one pointing to the start of the string and the other pointing to the end.

    • Swap characters at the two pointers and move them towards each other until they meet in the middle.

    • Repeat the swapping process until the entire string is reversed.

  • Answered by AI

LTE Protocol Engineer Interview Questions asked at other Companies

Q1. How do you reverse a string in the C programming language?
View answer (1)

Get interview-ready with Top Sasken Interview Questions

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

(2 Questions)

  • Q1. Cmos design and cross section view
  • Q2. Fabrication processes

Analog Layout Engineer Interview Questions asked at other Companies

Q1. Why are semiconductors used in electronics?
View answer (1)

Jobs at Sasken

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2022.

Round 1 - Technical 

(1 Question)

  • Q1. About project and resume
Round 2 - HR 

(1 Question)

  • Q1. About past and hobbies
Round 3 - Salary discussion 

(1 Question)

  • Q1. Salary discussion

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Canara Engineering College, Bantwal and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round include both aptitude and technical MCQ and one coding questions

Round 2 - Group Discussion 

They split the shortlisted candidates into two multiple groups each group consist of 10 members and interviewer give one topic and we have speak about it

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions related to project
  • Q2. Then asked questions related to OOPs

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Embedded Engineer Interview Questions & Answers

user image MANDUVA VEERA VENKATA NAGA SRIKANTH

posted on 3 Oct 2024

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

(1 Question)

  • Q1. C concepts and Experience
Round 2 - HR 

(1 Question)

  • Q1. Self questions about your self

Embedded Engineer Interview Questions asked at other Companies

Q1. What is the difference between sensors and actuators
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Design PAtterns
  • Q2. Factory Pattern
Round 2 - HR 

(2 Questions)

  • Q1. Why did you leave last company
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities for growth

    • Company restructuring led to changes in job responsibilities

    • Seeking a more collaborative work environment

  • Answered by AI
  • Q2. Thoughts on LGBTQ community
  • Ans. 

    Supportive and inclusive of LGBTQ community

    • Believe in equality and respect for all individuals regardless of sexual orientation or gender identity

    • Advocate for LGBTQ rights and support diversity in the workplace

    • Promote a safe and inclusive environment for LGBTQ individuals to thrive

    • Recognize the importance of representation and visibility for LGBTQ community

  • Answered by AI

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)

Sasken Interview FAQs

How many rounds are there in Sasken interview?
Sasken interview process usually has 2-3 rounds. The most common rounds in the Sasken interview process are Technical, HR and Aptitude Test.
How to prepare for Sasken 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 Sasken. The most common topics and skills that interviewers at Sasken expect are Technical Support, Linux, Coding, C++ and Python.
What are the top questions asked in Sasken interview?

Some of the top questions asked at the Sasken interview -

  1. How do you improve the performance/memory footprint of your Rust program, witho...read more
  2. Reverse a string in following format If the string is Have a good day The resul...read more
  3. How do you debug and solve problems that might've gotten missed during Unit Tes...read more
How long is the Sasken interview process?

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

Tell us how to improve this page.

Sasken Interview Process

based on 65 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
View all

Sasken Reviews and Ratings

based on 492 reviews

3.8/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.5

Salary

3.4

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 492 Reviews and Ratings
LEAD ENGINEER-SOFTWARE TEST&RELEASE

Kolkata,

Mumbai

+5

5-8 Yrs

Not Disclosed

SENIOR ENGINEER-SOFTWARE TEST&RELEASE

Kolkata,

Mumbai

+5

2-5 Yrs

Not Disclosed

Build And Release Engineer

Bangalore / Bengaluru

2-3 Yrs

Not Disclosed

Explore more jobs
Software Engineer
308 salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Senior Software Engineer
270 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Senior Engineer
192 salaries
unlock blur

₹5.9 L/yr - ₹22 L/yr

Associate Software Engineer
179 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Lead Engineer
170 salaries
unlock blur

₹11 L/yr - ₹34 L/yr

Explore more salaries
Compare Sasken with

LTIMindtree

3.8
Compare

Persistent Systems

3.5
Compare

L&T Technology Services

3.3
Compare

TCS

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