Upload Button Icon Add office photos

TechSophy

Compare button icon Compare button icon Compare

Filter interviews by

TechSophy Interview Questions and Answers

Updated 11 Mar 2025
Popular Designations

7 Interview questions

An Associate Software Engineer was asked
Q. Write a program to reverse a string.
Ans. 

Reverse a string program using array of strings

  • Create a character array to store the reversed string

  • Iterate through the original string and copy characters in reverse order to the new array

  • Join the characters in the new array to form the reversed string

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Given an integer n, return whether n is a prime number.
Ans. 

A prime number program checks if a given number is only divisible by 1 and itself.

  • Check if the number is greater than 1

  • Iterate from 2 to the square root of the number and check for divisibility

  • If no divisors found, the number is prime

View all Associate Software Engineer interview questions
A Software Engineer was asked
Q. Given an array of integers, find the least number of steps required to reach the end of the array.
Ans. 

Minimum steps to reach end of array

  • Use dynamic programming approach

  • Start from the end and work backwards

  • Keep track of minimum steps at each index

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is the least number of iterations required to find one defective weight among equal weights?
Ans. 

The minimum number of iterations required to find one defective weight among equal weights.

  • Use binary search to divide the weights into two groups.

  • Compare the sum of weights in each group to identify the defective group.

  • Repeat the process with the defective group until the defective weight is found.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is a secure way to store tokens?
Ans. 

Secure way of storing tokens

  • Use a secure token storage mechanism like Keychain on iOS or SharedPreferences on Android

  • Encrypt the tokens before storing them

  • Implement proper access controls and permissions to restrict access to the tokens

  • Regularly rotate and invalidate tokens to minimize the risk of unauthorized access

View all Software Engineer interview questions
An Associate Software Engineer was asked
Q. Write a recursive function to reverse a given string.
Ans. 

String reversal using recursion

  • Define a function that takes a string as input

  • Base case: if the length of the string is 0 or 1, return the string

  • Recursive case: return the last character of the string concatenated with the result of calling the function with the string minus the last character

View all Associate Software Engineer interview questions
A Software Engineer was asked
Q. Sorting algorithm in C
Ans. 

Sorting algorithm in C

  • Popular sorting algorithms in C include Bubble Sort, Insertion Sort, Selection Sort, Merge Sort, Quick Sort, and Heap Sort

  • Bubble Sort is simple but inefficient, while Merge Sort and Quick Sort are more efficient but more complex

  • The choice of sorting algorithm depends on the size of the data set and the desired time complexity

View all Software Engineer interview questions
Are these interview questions helpful?

TechSophy Interview Experiences

5 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - Assignment 

Topic related to the domain

Round 2 - Technical 

(1 Question)

  • Q1. Related to the Resume Technical Skills
Round 3 - Technical 

(1 Question)

  • Q1. Second level of technical round related to real time expercience
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial Round
Interview experience
4
Good
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 - HR 

(1 Question)

  • Q1. Tell me about your self
Round 3 - One-on-one 

(3 Questions)

  • Q1. Fibanocci series
  • Q2. Prime number program
  • Ans. 

    A prime number program checks if a given number is only divisible by 1 and itself.

    • Check if the number is greater than 1

    • Iterate from 2 to the square root of the number and check for divisibility

    • If no divisors found, the number is prime

  • Answered by AI
  • Q3. Reverse string program
  • Ans. 

    Reverse a string program using array of strings

    • Create a character array to store the reversed string

    • Iterate through the original string and copy characters in reverse order to the new array

    • Join the characters in the new array to form the reversed string

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

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

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

In 20 minutes two problems were given 1) to identify palindrome of number without converting to string 2) to create a triangle using '2'

Round 2 - Assignment 

From a video input we have to identify time in and time out of were a text appeared and what is the text

Round 3 - One-on-one 

(1 Question)

  • Q1. Previous experience projects

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

3 Basic Coding Problems

Round 2 - Technical 

(2 Questions)

  • Q1. Related to Basic Data Structures
  • Q2. String Reversal using recursion
  • Ans. 

    String reversal using recursion

    • Define a function that takes a string as input

    • Base case: if the length of the string is 0 or 1, return the string

    • Recursive case: return the last character of the string concatenated with the result of calling the function with the string minus the last character

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic Indroduction Life values
  • Ans. 

    Life values are the principles and beliefs that guide an individual's decisions and actions.

    • Life values are shaped by personal experiences, culture, and upbringing.

    • They can include honesty, integrity, compassion, and respect for others.

    • Life values can also influence career choices and relationships.

    • Examples of life values include family, education, health, and spirituality.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TechSophy Associate Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - Be honest and serious during the interview.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Secure way of storing tokens
  • Ans. 

    Secure way of storing tokens

    • Use a secure token storage mechanism like Keychain on iOS or SharedPreferences on Android

    • Encrypt the tokens before storing them

    • Implement proper access controls and permissions to restrict access to the tokens

    • Regularly rotate and invalidate tokens to minimize the risk of unauthorized access

  • Answered by AI
  • Q2. Least number of iterations in which to find one defective weight among equal weights
  • Ans. 

    The minimum number of iterations required to find one defective weight among equal weights.

    • Use binary search to divide the weights into two groups.

    • Compare the sum of weights in each group to identify the defective group.

    • Repeat the process with the defective group until the defective weight is found.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Spread operator, nullish coelising, optional chaining operator etc
  • Q2. Sorting algorithm in C
  • Ans. 

    Sorting algorithm in C

    • Popular sorting algorithms in C include Bubble Sort, Insertion Sort, Selection Sort, Merge Sort, Quick Sort, and Heap Sort

    • Bubble Sort is simple but inefficient, while Merge Sort and Quick Sort are more efficient but more complex

    • The choice of sorting algorithm depends on the size of the data set and the desired time complexity

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Least number of steps to reach end of array
  • Ans. 

    Minimum steps to reach end of array

    • Use dynamic programming approach

    • Start from the end and work backwards

    • Keep track of minimum steps at each index

  • Answered by AI
  • Q2. In depth about projects done, technical aspects

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep good attitude and have a good understanding about the skill you have

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (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 TechSophy?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2021. There were 2 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 - Technical 

(2 Questions)

  • Q1. Python and Java questions
  • Q2. Oops basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easily we can Just Practice basic interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2021. There were 3 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 - Coding Test 

There are 2section of exam i.e English and Data structure

Round 3 - Mind analysis games 

(2 Questions)

  • Q1. First round interview is technical interview and managerial interviews which is not that tough. Do all the FaQ on your projects and if dont know any one of question answer then dont worry simply say it a...
  • Q2. 2nd round is HR interview .

Interview Preparation Tips

Interview preparation tips for other job seekers - In HR interview they ask about introduction, strength and weakness , willing to work on teams or not, some scenario based question
Are these interview questions helpful?

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself.what qualities a leader should have. Which subject was hard for you and how did you manage to overcome it.if a person in your team is not working properly how will you deal with it

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepare for your interview... you always know about the company and job profile be comfortable in your answer.. prepare your answers . always be professional

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

Interview Questionnaire 

2 Questions

  • Q1. C programming
  • Q2. Python

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was technical question basic c programming question to ready

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Servicenow related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Scripting knowledge and technical questions

TechSophy Interview FAQs

How many rounds are there in TechSophy interview?
TechSophy interview process usually has 3-4 rounds. The most common rounds in the TechSophy interview process are Technical, One-on-one Round and Coding Test.
How to prepare for TechSophy 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 TechSophy. The most common topics and skills that interviewers at TechSophy expect are Python, CRM, SAN, Javascript and Machine Learning.
What are the top questions asked in TechSophy interview?

Some of the top questions asked at the TechSophy interview -

  1. Least number of iterations in which to find one defective weight among equal we...read more
  2. Least number of steps to reach end of ar...read more
  3. String Reversal using recurs...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 841 Interviews
View all

TechSophy Reviews and Ratings

based on 41 reviews

3.1/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

2.9

Salary

3.0

Job security

3.0

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 41 Reviews and Ratings
Associate Software Engineer
52 salaries
unlock blur

₹4 L/yr - ₹8.6 L/yr

Software Engineer
45 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹7.1 L/yr - ₹24 L/yr

Software Developer
15 salaries
unlock blur

₹6.9 L/yr - ₹12 L/yr

Technical Lead
15 salaries
unlock blur

₹12 L/yr - ₹50 L/yr

Explore more salaries
Compare TechSophy with

Accenture

3.7
Compare

Wipro

3.7
Compare

IBM

3.9
Compare

Capgemini

3.7
Compare
write
Share an Interview