Upload Button Icon Add office photos

Filter interviews by

Mahathi Infotech Interview Questions and Answers

Updated 12 Oct 2024
Popular Designations

Mahathi Infotech Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Walk-in

Round 1 - Technical 

(5 Questions)

  • Q1. What is method overloading and overriding and how you implement in your project
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is achieved by defining multiple methods with the same name but different parameters in the same class.

    • Method overriding is achieved by creating a method in a subclass with the sa...

  • Answered by AI
  • Q2. What are the types of exceptions
  • Ans. 

    Types of exceptions include checked exceptions, unchecked exceptions, and errors.

    • Checked exceptions are checked at compile time and must be handled by the programmer using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and can be handled if desired.

    • Errors are serious issues that are not expected to be caught or handled, such as OutOfMemoryError or StackOverflowError.

  • Answered by AI
  • Q3. What is constructor
  • Ans. 

    A constructor is a special type of method that is automatically called when an object is created in a class.

    • Constructors have the same name as the class they belong to

    • They do not have a return type

    • They can be used to initialize object properties

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

  • Answered by AI
  • Q4. How to handle drop downs and alerts
  • Ans. 

    To handle drop downs, use Select class in Selenium. To handle alerts, use Alert class in Selenium.

    • For drop downs, use Select class in Selenium to interact with

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic Java coding and SQL query

Round 3 - One-on-one 

(2 Questions)

  • Q1. Basic SQL query Create table Insert, delete, update Join , primary key, foreign key
  • Q2. Basic Java technical questions Create class, object and simple Java coding

Software Engineer Interview Questions & Answers

user image dayana vincy

posted on 21 Aug 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Basic java coding and sql queries

Round 3 - One-on-one 

(1 Question)

  • Q1. Java oops concept SQL queries

Interview Preparation Tips

Topics to prepare for Mahathi Infotech Software Engineer interview:
  • Java
  • SQL

Software Engineer Interview Questions & Answers

user image DHARANIDHARAN H

posted on 8 Nov 2022

I applied via Smart cliff

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 

Total 5 Sections-total 2hrs
1.Reasoning ability-12questions
2.General Aptitude-12questions
3.Number series
4.Bank interest-8 questions
5.Coding round-3questions

Round 3 - Technical 

(1 Question)

  • Q1. 1.Oops concepts 2.String 3.Array 4.Multithread & collection frameworks topics 5.One number program
Round 4 - HR 

(1 Question)

  • Q1. 1.Tell about yourself 2.Oops concepts 3.Array & strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to tell what do you know, they are asking from mainly in Oops concepts, Do you don't know the answer frankly say I don't know.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions in .net
  • Q2. Basic questions in sql

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 Mahathi Infotech?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Reverse string
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various methods.

    • Use built-in functions: In Python, you can reverse a string with slicing: `reversed_string = original_string[::-1]`.

    • Iterative approach: Loop through the string from the end to the beginning and build a new string.

    • Using recursion: Define a function that calls itself with a smaller substring until it reac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Average level interview
Are these interview questions helpful?

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 4 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 - Assignment 

MCQ's and Coding Problem - 1 related with Java, RDBMS, JS

Round 3 - Technical 

(1 Question)

  • Q1. Basic Question on Java and Project related questions
Round 4 - HR 

(1 Question)

  • Q1. Introduction, Discussion regarding the roles and salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics and be confident with the answers.

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. String builder and string buffer When we create Arrays and when we create linked lists Treeset in Java Java 8 features Static keyword Dynamic method dispatch How to make a immutable cla...
  • Ans. 

    Questions related to Java programming language concepts and features.

    • StringBuilder and StringBuffer are used for efficient string manipulation.

    • Arrays are fixed in size while linked lists can grow dynamically.

    • TreeSet is a sorted set implementation in Java.

    • Java 8 introduced lambda expressions, streams, and functional interfaces.

    • Static keyword is used to create class-level variables and methods.

    • Dynamic method dispatch is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and rock!

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Apigee
  • Q2. Interal architecture

Mahathi Infotech Interview FAQs

How many rounds are there in Mahathi Infotech interview?
Mahathi Infotech interview process usually has 2-3 rounds. The most common rounds in the Mahathi Infotech interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Mahathi Infotech 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 Mahathi Infotech. The most common topics and skills that interviewers at Mahathi Infotech expect are J2EE, SQL, Angular, Java Fullstack and Java Spring Boot.
What are the top questions asked in Mahathi Infotech interview?

Some of the top questions asked at the Mahathi Infotech interview -

  1. What is method overloading and overriding and how you implement in your proj...read more
  2. How to handle drop downs and ale...read more
  3. What are the types of excepti...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 4 interview experiences

Difficulty level

Easy 67%
Moderate 33%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Mahathi Infotech Reviews and Ratings

based on 16 reviews

3.4/5

Rating in categories

3.3

Skill development

3.0

Work-life balance

3.1

Salary

3.3

Job security

3.3

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 16 Reviews and Ratings
Java Developer

Coimbatore

3-8 Yrs

Not Disclosed

Dot Net Developer

Coimbatore

3-8 Yrs

Not Disclosed

Software Engineer

Coimbatore

1-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
25 salaries
unlock blur

₹3.3 L/yr - ₹9.5 L/yr

Business Analyst
16 salaries
unlock blur

₹2.7 L/yr - ₹8 L/yr

Software Developer
13 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Junior Software Engineer
8 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Data Analyst
8 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Mahathi Infotech with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview