Upload Button Icon Add office photos
Engaged Employer

i

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

Torry Harris Integration Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Torry Harris Integration Solutions Associate Software Engineer Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Torry Harris Integration Solutions Associate Software Engineer Interview Questions and Answers

  • Q1. What are the commonly used Unix commands for listing files, creating directories, and changing directories?
  • Q2. What is the bubble sort algorithm, and can you explain its working mechanism?
  • Q3. when would be date of joinig and what certificates is need
View all 18 questions

Torry Harris Integration Solutions Associate Software Engineer Interview Experiences

56 interviews found

Round 1 - Aptitude Test 

It is included Mcq aptitude and coding

Round 2 - Technical 

(1 Question)

  • Q1. Breif Explanation about our project's which was mentioned in our resume. Some programming languages questions and Have to write some basic code
Round 3 - HR 

(1 Question)

  • Q1. Our Introduction Our hobbies and We should know about company before attending the HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice well for aptitude round and about your resume and your projects and internships.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Java8, Collections, Spring boot annotations
Round 2 - Behavioral 

(1 Question)

  • Q1. Discussion on projects.

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more

I applied via Referral and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Linux commands and Basic core Java Questions , Frameworks such as Spring , SOA, microservices will be plus, Tools SOAP UI, REST API
Round 2 - One-on-one 

(1 Question)

  • Q1. Manager will ask about your background and Technical skills

Interview Preparation Tips

Topics to prepare for Torry Harris Integration Solutions Associate Software Engineer interview:
  • Spring Boot
  • Java
  • Microservices
  • SOA
  • SOAP UI
  • REST API
Interview preparation tips for other job seekers - Please prepare for above topics

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test and psudo code questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts and your project and resume based questions
  • Q2. What is oops Write program for fib series Exception handling question
Round 3 - HR 

(2 Questions)

  • Q1. They might be 3rd round or may not be sometime HR in also TR round
  • Q2. Which role you want Relocation About yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers its good company and easy to crack Torry Harris Integration Solutions interview round manly they focus on theory part ,

Torry Harris Integration Solutions interview questions for designations

 Associate Software Engineer Trainee

 (2)

 Software Engineer

 (11)

 Senior Software Engineer

 (2)

 Assisstant Software Engineer Trainee

 (1)

 Associate Engineer

 (1)

 Software Developer

 (4)

 Associate Test Manager

 (1)

 Senior Software Developer

 (1)

I applied via Naukri.com and was interviewed in Nov 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me in breif about ur project?
  • Q2. Brief description on internship done?
  • Q3. Oops concept in java
  • Ans. 

    Oops concept in Java

    • Object-oriented programming paradigm

    • Encapsulation, Inheritance, Polymorphism, Abstraction

    • Classes and Objects

    • Access Modifiers

    • Interfaces and Abstract Classes

  • Answered by AI
  • Q4. Python scope, static, dynamic etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and make urself not panic.. Mind communication skills..

Skills evaluated in this interview

Get interview-ready with Top Torry Harris Integration Solutions Interview Questions

I applied via Naukri.com and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was all related to aptitude and programming languages. It was quiet difficult.

Round 2 - Technical 

(1 Question)

  • Q1. First question will be tell me about yourself. They just asked to explain oops concept of programming language which you mention in your skills.
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself. They will give some real time situations and ask us how we will handle those situations and solve the provlems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident when you attend interviews.

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic Java questions asked in technical round and behavioural questions and some of the technical questions asked in managerial round
  • Q2. All Oops concepts is important

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and Chase your goals, everything is possible if you prepared well.

I applied via Referral and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. All concepts in oops
  • Ans. 

    Object-oriented programming concepts including encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on that data within a single unit

    • Inheritance: creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism: ability of objects to take on multiple forms, often achieved through method overriding

    • Abstraction: hiding implementation de...

  • Answered by AI
  • Q2. Program to split the two strings
  • Ans. 

    Program to split two strings into an array of strings

    • Use the split() method to split the strings

    • Specify the delimiter to split the strings

    • Store the split strings in an array

  • Answered by AI
  • Q3. Garbage collection in java
  • Ans. 

    Garbage collection is an automatic memory management process in Java.

    • Garbage collection frees up memory by removing objects that are no longer in use.

    • Java uses a mark-and-sweep algorithm to identify and remove unused objects.

    • The System.gc() method can be used to suggest garbage collection, but it is not guaranteed to run immediately.

    • Garbage collection can impact performance, so it is important to optimize code to minim

  • Answered by AI
  • Q4. Why this() is used in java
  • Ans. 

    this() is used in Java to call a constructor of the same class.

    • this() can be used to call a constructor with default arguments.

    • It can also be used to call a constructor with specific arguments.

    • this() must be the first statement in a constructor.

    • It can only be used inside a constructor.

    • Example: public MyClass(int x) { this(x, 0); }

    • Example: public MyClass(int x, int y) { this.x = x; this.y = y; }

  • Answered by AI
  • Q5. Any idea on git
  • Ans. 

    Git is a version control system used for tracking changes in code and collaborating with others.

    • Git allows for branching and merging of code

    • It tracks changes made to code over time

    • It allows for collaboration with others on the same codebase

    • Git can be used for both personal and professional projects

  • Answered by AI
  • Q6. Call by reference vs call by value
  • Ans. 

    Call by reference passes the address of the variable while call by value passes the value itself.

    • Call by reference allows the function to modify the original variable

    • Call by value creates a copy of the variable for the function to use

    • Call by reference is more memory efficient for large data types

    • Call by value is safer as it prevents unintended changes to the original variable

  • Answered by AI
  • Q7. Structure vs union
  • Ans. 

    Structures and unions are used to group related data members in a program.

    • Structures are used to group related data members of different data types.

    • Unions are used to group related data members of the same data type.

    • Structures allocate memory for each data member, while unions allocate memory for the largest data member.

    • Structures are used when all data members need to be accessed separately, while unions are used when...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your interview with confident. Because the interviewer is very friendly. If you just perform average they will hire you. Atleast try your best, dont say i dont know.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic Java Questions like Oops concept, Exception Handling, Multithreading and some questions from MySQL database.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the basics of programming and be confident in front of interviewer.

Interview Questionnaire 

1 Question

  • Q1. Java oops collections

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare on oops collections and multithreading concepts

Torry Harris Integration Solutions Interview FAQs

How many rounds are there in Torry Harris Integration Solutions Associate Software Engineer interview?
Torry Harris Integration Solutions interview process usually has 2-3 rounds. The most common rounds in the Torry Harris Integration Solutions interview process are Technical, HR and Coding Test.
How to prepare for Torry Harris Integration Solutions Associate Software Engineer 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 Torry Harris Integration Solutions. The most common topics and skills that interviewers at Torry Harris Integration Solutions expect are Coding, Programming and Training.
What are the top questions asked in Torry Harris Integration Solutions Associate Software Engineer interview?

Some of the top questions asked at the Torry Harris Integration Solutions Associate Software Engineer interview -

  1. What are the commonly used Unix commands for listing files, creating directorie...read more
  2. What is the bubble sort algorithm, and can you explain its working mechani...read more
  3. when would be date of joinig and what certificates is n...read more
How long is the Torry Harris Integration Solutions Associate Software Engineer interview process?

The duration of Torry Harris Integration Solutions Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Torry Harris Integration Solutions Associate Software Engineer Interview Process

based on 60 interviews

5 Interview rounds

  • Aptitude Test Round
  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Torry Harris Integration Solutions Associate Software Engineer Salary
based on 1.1k salaries
₹2.5 L/yr - ₹8.5 L/yr
20% less than the average Associate Software Engineer Salary in India
View more details

Torry Harris Integration Solutions Associate Software Engineer Reviews and Ratings

based on 220 reviews

4.2/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.4

Salary

3.7

Job security

3.8

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 220 Reviews and Ratings
Associate Software Engineer
1.1k salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Software Engineer
939 salaries
unlock blur

₹4.4 L/yr - ₹15.6 L/yr

Senior Software Engineer
335 salaries
unlock blur

₹7.1 L/yr - ₹23 L/yr

Software Developer
135 salaries
unlock blur

₹3 L/yr - ₹12.5 L/yr

Technical Lead
117 salaries
unlock blur

₹12.1 L/yr - ₹32 L/yr

Explore more salaries
Compare Torry Harris Integration Solutions with

LTIMindtree

3.8
Compare

Tech Mahindra

3.5
Compare

Wipro

3.7
Compare

HCLTech

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