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 Interview Questions and Answers for Freshers

Updated 7 Jul 2025
Popular Designations

20 Interview questions

An Associate Software Engineer was asked 2mo ago
Q. Explain the concept of OOPS.
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes to structure software design.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interfac...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2mo ago
Q. What is the use of the super keyword in Java?
Ans. 

The 'super' keyword in Java is used to refer to the superclass of the current object, enabling access to its methods and variables.

  • Access superclass methods: 'super.methodName()' calls a method from the parent class.

  • Access superclass constructors: 'super()' can be used to invoke the parent class constructor.

  • Access superclass variables: 'super.variableName' allows access to a variable from the parent class.

  • Resolve ...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2mo ago
Q. Given a string, determine if it is a palindrome.
Ans. 

A palindrome is a string that reads the same forwards and backwards, like 'racecar' or 'level'.

  • Definition: A palindrome is a word, phrase, or sequence that reads the same backward as forward. Example: 'madam'.

  • Ignoring Cases: When checking for palindromes, ignore case sensitivity. 'Racecar' is a palindrome.

  • Ignoring Spaces and Punctuation: Consider only alphanumeric characters. 'A man, a plan, a canal, Panama!' is a...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2mo ago
Q. What is the method to check the square root of a number?
Ans. 

To check the square root of a number, you can use mathematical methods or programming functions to find its value.

  • Mathematical Method: The square root of a number 'x' can be calculated using the formula √x.

  • Using Programming Languages: Most programming languages have built-in functions. For example, in Python, use 'math.sqrt(x)'.

  • Newton's Method: An iterative numerical method to approximate square roots, starting wi...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2mo ago
Q. Given an array, reverse the order of its elements.
Ans. 

Reversing an array involves rearranging its elements in the opposite order.

  • Use a loop to swap elements from the start and end until the middle is reached. Example: ['a', 'b', 'c'] becomes ['c', 'b', 'a'].

  • In Python, you can use slicing: arr[::-1] to reverse. Example: ['apple', 'banana'] becomes ['banana', 'apple'].

  • In JavaScript, use the reverse() method: arr.reverse(). Example: ['one', 'two'] becomes ['two', 'one']...

View all Associate Software Engineer interview questions
An Associate Engineer was asked
Q. What are storage specifiers?
Ans. 

Storage specifiers are keywords used in programming languages to define the scope and lifetime of variables.

  • Storage specifiers determine where a variable is stored in memory and how long it will exist.

  • Examples of storage specifiers include 'static', 'auto', 'register', and 'extern'.

  • Static variables have a lifetime that lasts for the entire program execution, while auto variables have a lifetime that lasts only wit...

View all Associate Engineer interview questions
An Associate Software Engineer Trainee was asked
Q. How do you delete a file in Python?
Ans. 

To delete a file in Python, use the os.remove() method.

  • Import the os module

  • Use os.remove() method to delete the file

  • Specify the file path as the argument to os.remove() method

View all Associate Software Engineer Trainee interview questions
Are these interview questions helpful?
An Associate Software Engineer Trainee was asked
Q. What are call by reference and call by value?
Ans. 

Call by reference and call by value are two ways of passing arguments to a function.

  • Call by value passes a copy of the argument to the function, while call by reference passes a reference to the original argument.

  • In call by value, changes made to the argument inside the function do not affect the original value, while in call by reference, changes made to the argument inside the function affect the original value.

  • ...

View all Associate Software Engineer Trainee interview questions
An Associate Software Engineer Trainee was asked
Q. What are Arrays?
Ans. 

Arrays are a collection of similar data types stored in contiguous memory locations.

  • Arrays can be of any data type, including integers, floats, characters, and objects.

  • Arrays are accessed using an index starting from 0.

  • Arrays can be one-dimensional, two-dimensional, or multi-dimensional.

  • Example: int arr[5] = {1, 2, 3, 4, 5};

  • Example: char str[6] = {'H', 'e', 'l', 'l', 'o', '\0'};

View all Associate Software Engineer Trainee interview questions
An Associate Software Engineer Trainee was asked
Q. What are Pointers?
Ans. 

Pointers are variables that store memory addresses of other variables.

  • Pointers allow direct access to memory locations.

  • They can be used to pass values between functions.

  • Pointers can be used to create dynamic data structures.

  • Example: int *ptr; ptr = # *ptr = 10;

  • Example: void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; }

View all Associate Software Engineer Trainee interview questions

Torry Harris Integration Solutions Interview Experiences for Freshers

23 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

Aptitude ,logical, math and reasoning

Round 2 - Coding Test 

On languages like C, SQL, Java and python

Round 3 - Technical 

(1 Question)

  • Q1. On languages like C, Java, Python and SQL
Round 4 - One-on-one 

(1 Question)

  • Q1. About the project experience and Internship.
Round 5 - HR 

(1 Question)

  • Q1. Background check and personal info.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept , Concepts on Strings and Arrays , Concepts on Data Structures etc

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking for java developer role as a fresher , then be prepared on the core concepts of java like oops concept , multithreading, programs on strings, arrays and metrics and also on Data structure concepts .

Software Engineer Interview Questions & Answers

user image Mohammed Sadiq

posted on 2 Jan 2025

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Mathematics and general aptitude questions.

Round 2 - Coding Test 

Two coding questions need to be solved.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you share something about yourself?
  • Ans. 

    I am a results-driven sales professional with over 10 years of experience in exceeding targets and building strong client relationships.

    • Experienced in developing and implementing sales strategies to drive revenue growth

    • Proven track record of meeting and exceeding sales targets consistently

    • Skilled in building and maintaining strong relationships with clients and stakeholders

    • Strong communication and negotiation skills

    • Pro...

  • Answered by AI
  • Q2. Your knowledge and skillset in sales
  • Ans. 

    I have over 10 years of experience in sales, with a proven track record of exceeding targets and building strong client relationships.

    • Extensive experience in B2B sales

    • Strong negotiation skills

    • Ability to identify and capitalize on market trends

    • Excellent communication and presentation skills

    • Track record of consistently exceeding sales targets

    • Experience in building and maintaining long-term client relationships

  • Answered by AI
Round 2 - Assignment 

You will be provided with a case study, and you are required to work on it as directed by the interviewer before submitting it. You will be given one or two days to complete this task.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Your skillset and how you can assist Torry Harris
  • Ans. 

    I have a proven track record in sales, strong communication skills, and the ability to build and maintain client relationships.

    • Proven track record in exceeding sales targets

    • Strong communication skills to effectively convey product benefits

    • Ability to build and maintain client relationships for long-term partnerships

  • Answered by AI
  • Q2. What motivated you to choose Torry Harris for your career?
  • Ans. 

    I was motivated to choose Torry Harris for my career because of its reputation for innovation and growth opportunities.

    • Torry Harris has a strong reputation for innovation in the IT industry

    • The company offers excellent growth opportunities for career advancement

    • I was impressed by the company's focus on cutting-edge technology and solutions

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. What is your availability to join the company?
  • Ans. 

    I am available to join the company immediately.

    • I can start within two weeks of receiving an offer.

    • I have no prior commitments that would delay my start date.

    • I am excited about the opportunity and eager to begin contributing to the team.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Reasoning
aptitude
numbering

Round 2 - Coding Test 

Based on the job profile,
basics of programming language, DSA, Database

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

(1 Question)

  • Q1. About the Company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There will be aroung 30 mcqs u have to clear that to go for the next round

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

Basic aptitude questions like time and distance blood relation and logical reasoning.

Round 2 - Technical 

(2 Questions)

  • Q1. Core java questions
  • Q2. SQL questions and one coding question

Associate Software Engineer Interview Questions & Answers

user image VEERA VENKATA SAI GOWTAM. PENTA

posted on 29 Aug 2023

Interview experience
3
Average
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 tips
Round 2 - Aptitude Test 

Time and Work, Profit loss, etc

Round 3 - Technical 

(3 Questions)

  • Q1. About Python Data structures
  • Q2. About Python and Html , CSS, etc
  • Q3. About OOPS topics
Round 4 - HR 

(1 Question)

  • Q1. What are you know about Company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and Know the Details Of the Company.
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It was not tough, hr was tricky and rude not genuine

Round 2 - Technical 

(4 Questions)

  • Q1. It was pretty ok read basic topics and programming
  • Q2. What are pointers and related topics
  • Ans. 

    Pointers are variables that store memory addresses. They are used to manipulate data and create dynamic data structures.

    • Pointers are used to pass memory addresses as arguments to functions

    • They can be used to dynamically allocate memory

    • Pointers can be used to create linked lists and trees

    • They can also be used to access hardware directly

    • Null pointers are used to indicate that a pointer does not point to a valid memory ad...

  • Answered by AI
  • Q3. What are storage specifiers
  • Ans. 

    Storage specifiers are keywords used in programming languages to define the scope and lifetime of variables.

    • Storage specifiers determine where a variable is stored in memory and how long it will exist.

    • Examples of storage specifiers include 'static', 'auto', 'register', and 'extern'.

    • Static variables have a lifetime that lasts for the entire program execution, while auto variables have a lifetime that lasts only within t...

  • Answered by AI
  • Q4. Share about your hobbys
  • Ans. 

    I enjoy playing the guitar and hiking in my free time.

    • Playing the guitar

    • Hiking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was little tough because i was a circuit branch student

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Torry Harris Integration Solutions?
Ask anonymously on communities.

Torry Harris Integration Solutions Interview FAQs

How many rounds are there in Torry Harris Integration Solutions interview for freshers?
Torry Harris Integration Solutions interview process for freshers usually has 3-4 rounds. The most common rounds in the Torry Harris Integration Solutions interview process for freshers are Aptitude Test, Technical and HR.
How to prepare for Torry Harris Integration Solutions interview for freshers?
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 Excel, Unix, Administration, Agile and Analytical.
What are the top questions asked in Torry Harris Integration Solutions interview for freshers?

Some of the top questions asked at the Torry Harris Integration Solutions interview for freshers -

  1. What is the method to check the square root of a numb...read more
  2. swapping of numbers program and explanat...read more
  3. Program to split the two stri...read more
What are the most common questions asked in Torry Harris Integration Solutions HR round for freshers?

The most common HR questions asked in Torry Harris Integration Solutions interview are for freshers -

  1. Tell me about yourse...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your salary expectatio...read more
How long is the Torry Harris Integration Solutions interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 15 interview experiences

Difficulty level

Easy 11%
Moderate 78%
Hard 11%

Duration

Less than 2 weeks 78%
2-4 weeks 22%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 241 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
Iris Software Interview Questions
4.0
 • 178 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
View all

Torry Harris Integration Solutions Reviews and Ratings

based on 738 reviews

4.3/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.7

Salary

4.0

Job security

3.9

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 738 Reviews and Ratings
Spanish Translator - Freelancer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Sales Development Representative

Bangalore / Bengaluru

5-6 Yrs

Not Disclosed

Sales Executive - US Night Shift

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
Associate Software Engineer
1.1k salaries
unlock blur

₹2.5 L/yr - ₹7.2 L/yr

Software Engineer
967 salaries
unlock blur

₹5.1 L/yr - ₹13 L/yr

Senior Software Engineer
300 salaries
unlock blur

₹13.4 L/yr - ₹23 L/yr

Software Developer
129 salaries
unlock blur

₹5.1 L/yr - ₹13.7 L/yr

Technical Lead
109 salaries
unlock blur

₹17.5 L/yr - ₹27.6 L/yr

Explore more salaries
Compare Torry Harris Integration Solutions with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview