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 Associate Software Engineer Trainee Interview Questions and Answers

Updated 9 Nov 2021

Sasken Associate Software Engineer Trainee Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction and Java Language

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher, be ready with basics of Computer science, programming , OOPS. Not only theory but also practically. Just practice practice and practice. If you have stuttering problem , inform the interviewer earlier that you'll talk slow, they understand your problem.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Explain your project and the technologies used by you in it.
  • Q2. 2. Describe data structures and type of it.
  • Ans. 

    Data structures are ways to organize and store data efficiently.

    • Data structures are used to store and manipulate data in a structured manner.

    • They can be classified into linear and non-linear data structures.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q3. 3. Difference between various kind of data structure. (Array and linked )
  • Ans. 

    Array and linked list are two different data structures used for storing and accessing data.

    • Array is a collection of elements of the same data type stored in contiguous memory locations.

    • Linked list is a collection of nodes where each node contains data and a reference to the next node.

    • Arrays have fixed size, while linked lists can grow or shrink dynamically.

    • Accessing elements in an array is faster than in a linked list...

  • Answered by AI
  • Q4. 4. Tell about the various services provided by AWS and how have ypu used them.
  • Ans. 

    AWS provides various services including compute, storage, database, networking, analytics, machine learning, and more.

    • Compute: EC2, Lambda

    • Storage: S3, EBS

    • Database: RDS, DynamoDB

    • Networking: VPC, Route 53

    • Analytics: Athena, EMR

    • Machine Learning: SageMaker, Rekognition

    • Example: I have used EC2 to host a web application and S3 to store static files.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you basics clear and be confident.
Be sure to put only those things in your resume which are really in your knowledge area.
Revise your project work.
Dont act oversmart.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Java : mainly conceptual knowledge of basics, OOPs, exceptional handling,constructors.
  • Q2. Questions like " what is you do not get selected today ?"

Interview Preparation Tips

Interview preparation tips for other job seekers - This would be long paragraph but i hope it will help people.
Many candidates prepare very well for technical interviews, but do not take any preparation for HR or Managerial round. It is very important to prepare yourself for all the three. I could not answer 3 out of 8 or 10 technical questions (others were very confidently answered). HR and MR rounds are not just communication rounds but they are the rounds where you will be kind of judged and will be evaluated as a human being. Questions like " what would you do as a team leader if two of your team members are arguing over a technical decision " judges your way of approach as a leader in an environment and what kind of person you are. These all are my personal opinion it may differ from other people. Its ok to handle some answers but you have to be honest and express the real you because thats what will make you stand out of the crowd. I am an average CSE student, of-course I knew there will be candidates who would be better, so what could I do to stand out of the crowd ? Very simple : I smiled !! As soon as the interview started i greeted everyone with a positive smile and also kept it through out the interview ..!! That was my first impression to all the three interviewers. This showed that I was confident. Avoiding answers which are available on the internet and answering something which you feel and being right for the environment shows matters. Be confident, and be the original you, its probable that they may notice your originality which would obviously create a good impression.

Technical Advice : Try to give an example to support your answer. Do not give wrong answer. If you do not know an answer simply say that you do not remember it right now.

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

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

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

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

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Tell us how to improve this page.

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
Tata Motors Interview Questions
4.2
 • 999 Interviews
Maruti Suzuki Interview Questions
4.2
 • 586 Interviews
View all
Software Engineer
310 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
265 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
192 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
179 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
165 salaries
unlock blur

₹0 L/yr - ₹0 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