Upload Button Icon Add office photos

Filter interviews by

Technodysis Interview Questions and Answers

Updated 31 Dec 2024

Technodysis Interview Experiences

Popular Designations

4 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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain OOPs in python
  • Ans. 

    OOPs in Python refers to Object-Oriented Programming concepts like classes, objects, inheritance, encapsulation, and polymorphism.

    • Python supports OOP principles such as classes and objects.

    • Inheritance allows classes to inherit attributes and methods from other classes.

    • Encapsulation restricts access to certain components of an object.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. Explain inheritance in python
  • Ans. 

    Inheritance in Python allows a class to inherit attributes and methods from another class.

    • Inheritance is achieved by creating a new class that derives from an existing class.

    • The new class (subclass) can access the attributes and methods of the existing class (superclass).

    • Subclasses can also override or extend the functionality of the superclass.

    • Example: class Dog(Animal) - Dog inherits attributes and methods from Anima

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Simple question on searching and sorting logarithm

Technical Manager Interview Questions asked at other Companies

Q1. How do you deliver a release in Agile Scrum? What is the difference between monolith, multitenant and microservices, what do you know about kafka, how did you handle a conflict between 2 employees, how did you handle client expectations and... read more
View answer (5)
Round 1 - Technical 

(2 Questions)

  • Q1. They asked about past job and all and then asked program of copy constructor
  • 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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Technodysis interview questions for popular designations

 Software Engineer

 (2)

 Software Development Engineer

 (1)

 Technical Manager

 (1)

Jobs at Technodysis

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

I applied via Campus Placement

Round 1 - Aptitude Test 

In this round you have to clear Aptitude and Basic Coding

Round 2 - Coding Test 

It is pure coding test which is conduct on hacker rank platform. You have to complete 4 question(1 easy + 2 medium + 1 hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question base on Sorting and Array
  • Q2. Some of theory question base on your Project technology and DSA
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your basic concepts and coding skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on dsa, 2 medium and 1 easy level.
  • Q2. Questions related to the projects.

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

Technodysis Interview FAQs

How many rounds are there in Technodysis 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 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 Java, Python, Software Development, C++ and Javascript.
What are the top questions asked in Technodysis interview?

Some of the top questions asked at the Technodysis interview -

  1. What is the definition of Object-Oriented Programming (OOP), and can you explai...read more
  2. Explain OOPs in pyt...read more
  3. Explain inheritance in pyt...read more

Tell us how to improve this page.

Technodysis Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.9
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
View all

Technodysis Reviews and Ratings

based on 37 reviews

3.9/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

3.7

Salary

3.6

Job security

3.8

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 37 Reviews and Ratings
SAP Test Automation Lead/Tricentis Tosca

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

DevOps Engineer

Pune

6-11 Yrs

₹ 18-27.5 LPA

Sap Fscm Consultant

Bangalore / Bengaluru

7-8 Yrs

Not Disclosed

Explore more jobs
Information Technology Recruiter
30 salaries
unlock blur

₹1 L/yr - ₹2.7 L/yr

Software Engineer
7 salaries
unlock blur

₹3.7 L/yr - ₹8.5 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

Senior Software Engineer
5 salaries
unlock blur

₹8.2 L/yr - ₹14.6 L/yr

Explore more salaries
Compare Technodysis with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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