Upload Button Icon Add office photos

Filter interviews by

Ajath Infotech Interview Questions and Answers

Updated 16 May 2024

Ajath Infotech Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was basic aptitude and logical reasoning question.

Round 2 - Coding Test 

Basic dsa questions were asked

Round 3 - Group Discussion 

It was 15 mins gd round on 2 different topics

Round 4 - Technical 

(3 Questions)

  • Q1. It was technical interview round. they asked question from skills based on resume.
  • Q2. How would you implement ml model on image detection?
  • Ans. 

    Implementing an ML model on image detection involves training a model on labeled image data and using techniques like CNNs.

    • Collect and preprocess a large dataset of labeled images for training

    • Choose a suitable deep learning framework like TensorFlow or PyTorch

    • Design a Convolutional Neural Network (CNN) architecture for image detection

    • Train the model on the dataset using techniques like transfer learning

    • Evaluate the mod...

  • Answered by AI
  • Q3. Newest version of python?
  • Ans. 

    The newest version of Python is Python 3.9.

    • Python 3.9 was released on October 5, 2020.

    • It includes new features like dictionary merge and update operators, improved time zone support, and more.

    • Some popular libraries and frameworks may not yet fully support Python 3.9, so compatibility should be checked before upgrading.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why you wanna work at ajath?

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was very basic addition subtraction question

Round 2 - Coding Test 

Very Basic codes, add, subtract, etc

Round 3 - Group Discussion 

GD on economy and govenment , currency

Round 4 - Technical 

(2 Questions)

  • Q1. Straight questions about resume
  • Q2. What is OOPs, What have you done in project, Basic MySQL queries to edit column name , table name, Is C OOP language, Are you comfortable in stressful enviournment

Interview Preparation Tips

Interview preparation tips for other job seekers - SMART ADVICE: Do not join this company, there is no management and they will directly assign you projects(No KT, no comments in code), no seniors, no management , one leave per month, salary cut if you are 15mins late, hire and fire culture, low salary, no full-time offer for interns even if mentioned in Offer letter, They have no financial backup. If you think hard-work can get you permanent here, you're absolutely wrong. It's more like a shop than a company. Even HRs have no rights here. Even if they hire you as an experienced developer at a higher package, they will fire you after you give them your work.

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

I applied via Campus Placement and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About UI design projects, about Figma tool.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack the interview, study about job role and about company, projects.

UI/UX Designer Interview Questions asked at other Companies

Q1. Design an app home screen that will have all the insurance types, EV, Pet care, and Child care at one place.
View answer (3)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic java questions along with aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concept, java functionalities, spring framework.
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr questions, when you can join, expected ctc...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

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

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

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

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

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

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

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

(1 Question)

  • Q1. All basic HR questions and salary discussion.

I applied via Recruitment Consulltant and was interviewed in Oct 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 - Technical 

(1 Question)

  • Q1. Completely on java
Round 3 - Technical 

(1 Question)

  • Q1. Asked java questiona

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me if you have any past experience
Round 3 - HR 

(1 Question)

  • Q1. Technical Question and basic knowledge in post which you are applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid while speaking to HR and be confident while answering asked questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2022. There were 3 interview rounds.

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 - Technical 

(3 Questions)

  • Q1. Related to Linux and Networking
  • Q2. Services Samba FTP, Maintenance Mode
  • Q3. Troubleshooting of Network
  • Ans. 

    Troubleshooting network involves identifying and resolving issues related to network connectivity and performance.

    • Start by identifying the symptoms of the problem

    • Check network cables and connections

    • Verify network settings and configurations

    • Use network diagnostic tools to identify and isolate the problem

    • Resolve the issue by applying appropriate fixes

    • Test the network to ensure the problem is resolved

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Qts related to Bootprocess AWS etc
  • Q2. Port Forwarding of services

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are applying for Linux role, brush up all the basic concepts of Linux and Networking.

Skills evaluated in this interview

Ajath Infotech Interview FAQs

How many rounds are there in Ajath Infotech interview?
Ajath Infotech interview process usually has 4-5 rounds. The most common rounds in the Ajath Infotech interview process are Aptitude Test, Coding Test and Group Discussion.
How to prepare for Ajath 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 Ajath Infotech. The most common topics and skills that interviewers at Ajath Infotech expect are Cocoa Touch, IOS, Java, Javascript and Objective C.
What are the top questions asked in Ajath Infotech interview?

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

  1. how would you implement ml model on image detecti...read more
  2. newest version of pyth...read more
  3. What is OOPs, What have you done in project, Basic MySQL queries to edit column...read more

Tell us how to improve this page.

Ajath Infotech Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 794 Interviews
View all

Ajath Infotech Reviews and Ratings

based on 11 reviews

1.5/5

Rating in categories

1.9

Skill development

1.7

Work-life balance

1.4

Salary

1.2

Job security

1.3

Company culture

1.2

Promotions

1.5

Work satisfaction

Explore 11 Reviews and Ratings
Android Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Coordinator
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

PHP Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ajath Infotech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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