Upload Button Icon Add office photos

Filter interviews by

Softsquare Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 12 Feb 2023

Softsquare Graduate Engineer Trainee (Get) Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. 1)Tell me about youself ?
  • Q2. Strength and weakness?
  • Ans. 

    My strength is my ability to adapt quickly to new situations and my weakness is my tendency to overthink things.

    • Strength: Quick adaptability to new situations

    • Weakness: Tendency to overthink things

    • Example for strength: I was able to quickly learn and adapt to new software during my internship

    • Example for weakness: Sometimes I spend too much time analyzing a problem before taking action

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through from scratch of any language and stick with basic thats enough

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions were asked from what I had put in the resume
  • Q2. About myself

Interview Preparation Tips

Interview preparation tips for other job seekers - Should not try to show that we know...If we know the answer we can answer or else admit we dont know..being honest is important and we should be sound enough technically and in vocabulary

Interview Questionnaire 

5 Questions

  • Q1. General questions relating to resume
  • Q2. Projects done in college
  • Ans. 

    I completed multiple projects during my college years, including a robotic arm prototype and a sustainable energy system design.

    • Developed a robotic arm prototype using Arduino and sensors

    • Designed a sustainable energy system for a campus building

    • Collaborated with team members to implement innovative solutions

    • Presented projects at college exhibitions and competitions

  • Answered by AI
  • Q3. DBMS :- types of keys, normalization and was asked to draw ER diagram of my DBMS project.
  • Q4. DFS :- basics questions like what are stacks and queue
  • Q5. General questions about myself.

Interview Preparation Tips

Round: Test
Experience: Test was arranged by amcat. It was easy, standard questions were asked.
Duration: 1 hour 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: The interviewer was friendly and patient. Interview went smoothly

College Name: MIT College Of Engineering

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Round 1: online assessment round, questions from quant(profit, percentage, work and time etc), logical reasoning(coding and decoding, seating arrangements, blood relation etc) and verbal ability. Round 2: ...

Interview Preparation Tips

Interview preparation tips for other job seekers - From 3 topics I can remember the 1 topic which is- your dream house.

Interview Questionnaire 

1 Question

  • Q1. Questions related to oops?

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm and confident. You can easily get selected if you are confident.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

It was basic aptitude quants and also verbal

Round 2 - Coding Test 

They asked me basic questions such as print the prime and fibannoci

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic questions about iq,math

Round 2 - Communication test 

(1 Question)

  • Q1. Basic eng para Q,speak on any 1 topic,read from the screen,repeat what you hear
Round 3 - Technical 

(1 Question)

  • Q1. About lang. You have chosen,basics,truncate command

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Graduate Engineer Trainee (Get) interview:
  • Java
  • OOPS
  • Engineering Projects
Interview preparation tips for other job seekers - Do oops,any core lang.thouroughly
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about the best day in your life
  • Ans. 

    The best day of my life was when I graduated from college and landed my dream job.

    • Graduating from college after years of hard work

    • Receiving a job offer for my dream job

    • Celebrating with family and friends

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 

Test 1 = (Aptitude) 70 MCQs from Quant, Logical and Verbal
Test 2 = (Domain-based) 30Questions from Pseudocode and Computer Fundamentals

Communication Round after Technical Round
MCQs based on Paragraphs, Audio transcript, Grammar
Voice/Audio Answer scenario based question (eg. Your Idol)

Round 3 - Technical 

(11 Questions)

  • Q1. Introduce Yourself
  • Q2. Which year you are in?
  • Q3. Tell me about your projects
  • Q4. What languages do you know? and which one are you most comfortable with?
  • Q5. What is Object Oriented Programming?
  • Ans. 

    Object Oriented Programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Objects have attributes (data) and methods (functions)

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q6. Name 4 pillars of Object Oriented Programming
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the 4 pillars of OOP

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class in Java

    • Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Subclass extending a superclass

    • Polymorphism: Ability to present the same interface for different data types. Example: Method overloading in ...

  • Answered by AI
  • Q7. What are constructors?
  • Ans. 

    Constructors are special methods in a class that are used to initialize objects.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can have parameters to initialize object properties.

    • They do not have a return type.

    • Example: public class Car { public Car(String color) { this.color = color; }}

  • Answered by AI
  • Q8. What is jagged array?
  • Ans. 

    A jagged array is an array of arrays where each element can be of different sizes.

    • Each sub-array can have a different number of elements

    • Useful for representing data structures like matrices or tables

    • Example: [['apple', 'banana'], ['orange', 'grape', 'kiwi']]

  • Answered by AI
  • Q9. Write a program to check whether string is palindrome or not?
  • Ans. 

    Program to check if a string is a palindrome or not.

    • Create a function to compare the original string with its reverse.

    • Ignore spaces and punctuation when checking for palindrome.

    • Example: 'racecar' is a palindrome, 'hello' is not.

  • Answered by AI
  • Q10. Write a program to reverse a string eg. Hello World to olleh dlrow
  • Ans. 

    A program to reverse a string by iterating through the characters and appending them in reverse order.

    • Create a function that takes a string as input

    • Initialize an empty string to store the reversed string

    • Iterate through the characters of the input string in reverse order and append them to the empty string

    • Return the reversed string

  • Answered by AI
  • Q11. Write a program to find second maximum number in an array.
  • Ans. 

    Program to find second maximum number in an array of strings.

    • Convert array elements to integers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. Tell me about your family background
  • Q3. Are you willing to relocate?
  • Q4. Any further questions?

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Graduate Engineer Trainee (Get) interview:
  • Object Oriented Programming
  • SQL
  • Java
  • Core Java
  • C++
Interview preparation tips for other job seekers - Aptitude Round:
There maybe sectional cutoff so don't just focus on one section and completely miss-out on others. Make sure to attempt fairly good in all sections.
All pseudocode questions will consist of LOGICAL operators ( Logical AND, OR, XOR ) so make sure to get idea about them

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 

Aptitude round including cognitive, numerical and verbal round, pseudo code, basic computer applications

Round 3 - Coding Test 

OOPs concept, fav programming language, why Java is platform independent, fibonacci number, even odd number, armstrong number etc.

Round 4 - HR 

(1 Question)

  • Q1. About yourself, Background info, project info

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic coding skills. DSA not needed for GET.

Softsquare Interview FAQs

How many rounds are there in Softsquare Graduate Engineer Trainee (Get) interview?
Softsquare interview process usually has 2 rounds. The most common rounds in the Softsquare interview process are Resume Shortlist and HR.

Tell us how to improve this page.

Softsquare Graduate Engineer Trainee (Get) Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Salesforce Developer
34 salaries
unlock blur

₹4 L/yr - ₹9.3 L/yr

Technical Lead
11 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Software Engineer
10 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Software Developer
9 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Angular Frontend Developer
6 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Explore more salaries
Compare Softsquare with

Cognizant

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

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