Upload Button Icon Add office photos

Filter interviews by

Technodysis Software Development Engineer Interview Questions and Answers

Updated 25 Nov 2024

Technodysis Software Development Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude exam content aptitude+tech question

Round 2 - Assignment 

This also a aptitude test+coding

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Development Engineer interview:
  • OOPS
  • Data Structures
  • Database
  • Spring Boot
Interview preparation tips for other job seekers - Company behaviour is not good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There was an OA on hackerearth of an hour. In that there were 20 MCQs and two DSA questions easy to medium on Heap, Hashmap and Subarray

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about previous worked project in last company
  • Q2. Asked one medium DSA question (DNA sequencing) and asked to design some schema
  • Q3. Asked one puzzle If there are 1000 bottles and one is poisonous, a rat will diw after one hour of drinking and you have only one hour to find out which bottle is poisonous, How many minimum rats you need ?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Asking about the whereabouts
  • Q2. Checking com skills and availability
Round 2 - Technical 

(3 Questions)

  • Q1. Basic questions based on resume
  • Q2. Basic .net questions
  • Q3. Logical questions related to problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and communicate effectively. Include only those things in your resume which you are fully confident.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. 3 Question was there related to architecture and Computer networks.
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices and Monolith.
  • Q2. Leetcode hard Sum.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Technodysis Interview FAQs

How many rounds are there in Technodysis Software Development Engineer interview?
Technodysis interview process usually has 1 rounds. The most common rounds in the Technodysis interview process are Technical.
What are the top questions asked in Technodysis Software Development Engineer interview?

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

  1. Explain OOPs in pyt...read more
  2. Explain inheritance in pyt...read more

Tell us how to improve this page.

Information Technology Recruiter
31 salaries
unlock blur

₹1 L/yr - ₹3.7 L/yr

Software Engineer
8 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Senior IT Recruiter
7 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Java Developer
5 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Explore more salaries
Compare Technodysis with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview