Upload Button Icon Add office photos

Technodysis

Compare button icon Compare button icon Compare

Filter interviews by

Technodysis Software Engineer Interview Questions and Answers

Updated 23 Apr 2025

Technodysis Software Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the definition of Object-Oriented Programming (OOP), and can you explain its key concepts?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, defining their properties and behaviors.

    • Objects are instances of classes, representing real-world entities.

    • Inheritance allows classes to inherit prope...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - None is there as of now
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What do you know about RPA?
  • Q2. What do you think about AI in RPA tool?

Interview Preparation Tips

Interview preparation tips for other job seekers - Startups provide the opportunity to gain hands-on experience in various roles and technologies.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Round 1 - Technical 

(2 Questions)

  • Q1. They asked about past job and all and then asked program of copy constructor
  • Ans. 

    A copy constructor creates a new object as a copy of an existing object, ensuring proper resource management.

    • A copy constructor is a special constructor in C++ used to create a new object as a copy of an existing object.

    • Syntax: ClassName(const ClassName &obj) { /* copy data from obj */ }

    • Example: If you have a class 'Point', a copy constructor can copy the x and y coordinates from another Point object.

    • Copy construct...

  • Answered by AI
  • Q2. They asked about the oops concepts and past work and past projects and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure u have great knowledge of oops concepts and basic knowledge of C++ above 11 version

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Technodysis?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

I applied via Campus Placement

Round 1 - Coding Test 

Online Coding Test included some aptitude questions, technical questions followed by 3 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. My technical interview included an introduction about myself followed by my background, projects I've made, internships I've done, and in which language I was comfortable. and the interviewer asked me to w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidently and give examples. and you can also connect the questions asked to your past projects.

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. 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 - Technical 

(1 Question)

  • Q1. Find the duplicate items in the array.
  • Ans. 

    Find duplicate items in array of strings.

    • Iterate through array and store each item in a hash set.

    • If item already exists in hash set, it is a duplicate.

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

(1 Question)

  • Q1. Javascript basics questions

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

1st test was aptitude and a easy coding test

Round 2 - Coding Test 

The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question

Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was technical interview and asked from basics of computer programming and architecture
Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering a strong sense of community and collaboration.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have two siblings; we often collaborate on projects, enhancing our problem-solving skills.

    • Family gatherings are frequent, where we share experiences and support each other's goals.

  • Answered by AI
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is just improve basics of programming and DSA with a database management and basicsa of os and networks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test details in the snovasys are best aptitude test details in snovasys and in the snovasys i thought like i need to learn more in the aptitude atmy strating of career and all all all alllllllllllllllllllllllll abc and the best buddy program we have invested on the internet today at the speed limit of data and the policy are not good we need to improve all the data and the data is not good of all the data to be shared and with in the organisation all the data is must and should need to learn careful and all the data is need to know all the must and should detailed actions are taken on their data

Round 2 - HR 

(2 Questions)

  • Q1. Not good with my situation And
  • Q2. What is your current salary What is your location
  • Ans. 

    I am unable to provide my current salary as it is confidential.

    • My current salary is confidential and I am unable to disclose it.

    • I prefer to discuss salary expectations rather than disclosing my current salary.

    • Salary is negotiable based on the position and responsibilities.

    • I am more interested in discussing the opportunities and growth potential in this role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't have any tips to submit please consider everyone's own organisation policies

Technodysis Interview FAQs

How many rounds are there in Technodysis Software Engineer interview?
Technodysis interview process usually has 1-2 rounds. The most common rounds in the Technodysis interview process are Technical and Resume Shortlist.
How to prepare for Technodysis 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 Technodysis. The most common topics and skills that interviewers at Technodysis expect are Python, Algorithms, C, Core Java and Data Structures.
What are the top questions asked in Technodysis Software Engineer interview?

Some of the top questions asked at the Technodysis Software Engineer interview -

  1. What is the definition of Object-Oriented Programming (OOP), and can you explai...read more
  2. They asked about past job and all and then asked program of copy construc...read more
  3. What do you think about AI in RPA to...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Technodysis Software Engineer Salary
based on 11 salaries
₹2.4 L/yr - ₹8.2 L/yr
47% less than the average Software Engineer Salary in India
View more details

Technodysis Software Engineer Reviews and Ratings

based on 9 reviews

4.6/5

Rating in categories

4.4

Skill development

4.2

Work-life balance

3.9

Salary

4.1

Job security

4.6

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 9 Reviews and Ratings
Information Technology Recruiter
32 salaries
unlock blur

₹1 L/yr - ₹2.7 L/yr

Software Engineer
11 salaries
unlock blur

₹2.4 L/yr - ₹8.2 L/yr

Senior IT Recruiter
7 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Java Developer
5 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Lead IT Recruiter
5 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Technodysis with

HCL Infosystems

3.9
Compare

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare
write
Share an Interview