Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by AVASOFT Team. If you also belong to the team, you can get access from here

AVASOFT Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 240 Reviews

Filter interviews by

AVASOFT ml engineer Interview Questions and Answers for Experienced

Updated 25 Nov 2024

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain psvm in java
  • Ans. 

    psvm in Java stands for public static void main, which is the entry point for a Java program.

    • psvm is the method signature for the main method in Java programs.

    • It is used to start the execution of a Java program.

    • It must be declared as public, static, and void.

    • It takes an array of strings as an argument, which can be used to pass command line arguments.

  • Answered by AI
  • Q2. Explain collection
  • Ans. 

    A collection is a group of related objects or data items that are stored together.

    • Collections can be implemented using data structures like arrays, lists, sets, maps, etc.

    • Collections allow for easy manipulation and organization of data.

    • Examples of collections include arrays of integers, lists of strings, sets of unique values, and maps of key-value pairs.

  • 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 Recruitment Consulltant and was interviewed in Jan 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions
Round 2 - Technical 

(1 Question)

  • Q1. Half an hour of behavioral questions and 1 DSA question
Round 3 - Behavioral 

(1 Question)

  • Q1. One hour discussion of the work that I have done till now
Round 4 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 5 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 6 - Technical 

(1 Question)

  • Q1. Design round for HLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for high level DSA questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SOLID Principles
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Asked java coding and system design
  • Q2. Facebook and parking lot
  • Q3. Java 8 stream and lambda

Interview Preparation Tips

Interview preparation tips for other job seekers - it was smooth and good overall
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Presented me with an existing code containing the unit tests and actual code in python and asked me to debug and fix all the issues in code so that all unit test cases will pass
Round 2 - Technical 

(1 Question)

  • Q1. Its an architecuture/desing round, interviewed asked me about the architecture of one of service i have created in my previous company then he cross questioned on the architecture. Then he asked me if I w...
Round 3 - Technical 

(1 Question)

  • Q1. Its managerial round, the manager asked about my mentor skills like tell me cases where you have confilct with your mentees or lead or manager.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jun 2023.

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

(2 Questions)

  • Q1. Will you be able to work in Rotational Shifts?
  • Q2. How much experience do you have in SQL and Node JS.
  • Ans. 

    I have 5 years of experience in SQL and Node JS.

    • I have worked extensively with SQL databases, writing complex queries and optimizing performance.

    • I am proficient in using Node JS for server-side development, building RESTful APIs and handling database operations.

    • I have experience in integrating SQL databases with Node JS applications using libraries like Sequelize or Knex.

    • I have successfully delivered projects that invo...

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

(5 Questions)

  • Q1. What is Index in SQL?
  • Ans. 

    Indexes in SQL are data structures that improve the speed of data retrieval operations on database tables.

    • Indexes are created on one or more columns of a table to allow faster searching and sorting of data.

    • They work similar to the index of a book, allowing the database engine to quickly locate the data.

    • Indexes can be created on primary keys, foreign keys, or any other frequently searched columns.

    • They reduce the amount ...

  • Answered by AI
  • Q2. What are the different types of Normalization in DBMS?
  • Ans. 

    Normalization is a process in DBMS that eliminates data redundancy and ensures data integrity.

    • Normalization is used to organize data in a database efficiently.

    • There are different normal forms, such as 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Each normal form has specific rules and dependencies to achieve data normalization.

    • Normalization helps in reducing data duplication, improving data consistency, and simplifying database mainte...

  • Answered by AI
  • Q3. What do you know about Views in mySQL?
  • Ans. 

    Views in mySQL are virtual tables that are based on the result of a query. They can be used to simplify complex queries and provide a layer of abstraction.

    • Views are created using the CREATE VIEW statement.

    • They are stored in the database and can be accessed like regular tables.

    • Views can be used to hide complexity by encapsulating complex queries into a single view.

    • They can also be used to restrict access to certain colu...

  • Answered by AI
  • Q4. What are Stored Procedures?
  • Ans. 

    Stored Procedures are precompiled database objects that contain a set of SQL statements and can be executed with a single call.

    • Stored Procedures are used to encapsulate and execute frequently used SQL statements.

    • They improve performance by reducing network traffic and optimizing query execution.

    • They can accept input parameters and return output values.

    • Stored Procedures can be used for data manipulation, data retrieval,...

  • Answered by AI
  • Q5. Tell me something about Internet of Things.
  • Ans. 

    Internet of Things (IoT) refers to the network of physical devices, vehicles, appliances, and other objects embedded with sensors, software, and connectivity.

    • IoT enables devices to collect and exchange data over the internet.

    • It allows for remote monitoring and control of devices and systems.

    • IoT has applications in various industries such as healthcare, transportation, agriculture, and smart homes.

    • Examples of IoT device...

  • Answered by AI
Round 4 - Client Interview 

(6 Questions)

  • Q1. Questions about Past Experience, the projects I have worked on.
  • Q2. What does JWT stand for? How do we use them?
  • Ans. 

    JWT stands for JSON Web Token. It is a compact, URL-safe means of representing claims between two parties.

    • JWT is used for authentication and authorization purposes in web applications.

    • It consists of three parts: header, payload, and signature.

    • The header contains the algorithm used to sign the token.

    • The payload contains the claims or information about the user.

    • The signature is used to verify the integrity of the token.

    • J...

  • Answered by AI
  • Q3. What is the difference between Webtokens and APIs?
  • Ans. 

    Webtokens and APIs are both used in web development, but they serve different purposes.

    • Webtokens are used for authentication and authorization, providing a secure way to transmit user information between client and server.

    • APIs (Application Programming Interfaces) are sets of rules and protocols that allow different software applications to communicate and interact with each other.

    • Webtokens are often used within APIs to...

  • Answered by AI
  • Q4. What is oAuth, what method did you use for Authentication/ Authorisation is your project?
  • Ans. 

    oAuth is an open standard for authorization. In my project, I used the oAuth 2.0 protocol for authentication and authorization.

    • oAuth is a protocol that allows users to grant limited access to their resources on one website to another website without sharing their credentials.

    • It provides a secure way for users to authenticate and authorize third-party applications to access their data.

    • oAuth 2.0 is the most widely used v...

  • Answered by AI
  • Q5. If the data in a table is already normalized, what can we do to further optimize is?
  • Ans. 

    Further optimization of normalized data can be achieved through indexing, denormalization, and caching.

    • Create appropriate indexes on frequently queried columns to improve query performance.

    • Consider denormalizing the data by combining related tables to reduce the number of joins required.

    • Implement caching mechanisms to store frequently accessed data in memory for faster retrieval.

    • Use materialized views or summary tables...

  • Answered by AI
  • Q6. How do you perform indexing in a database, which column you use for indexing?
  • Ans. 

    Indexing in a database improves query performance by creating a data structure that allows for faster data retrieval.

    • Indexing involves creating an index on one or more columns of a database table.

    • The column used for indexing should be chosen based on the frequency of data retrieval and the cardinality of the column.

    • Columns with high selectivity and frequent data retrieval are good candidates for indexing.

    • Examples of co...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Core concepts of .Net Core, Entity Framenwork and OOPS
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design and implement snake game
  • Ans. 

    Snake game involves controlling a snake to eat food and grow in size without hitting walls or itself.

    • Create a grid system to represent the game board

    • Implement logic for snake movement and growth

    • Generate food randomly on the board for the snake to eat

    • Handle collision detection for walls and snake body

    • Keep track of score and game over conditions

  • Answered by AI

Skills evaluated in this interview

Round 1 - Coding Test 

3 codes we have to slove 2 out of 3

Round 2 - Technical 

(1 Question)

  • Q1. Questions are shooted from resume
Round 3 - HR 

(1 Question)

  • Q1. Simple questions related to your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join temenos because they are using properitary tools in the organisation

AVASOFT Interview FAQs

How many rounds are there in AVASOFT ml engineer interview for experienced candidates?
AVASOFT interview process for experienced candidates usually has 1 rounds. The most common rounds in the AVASOFT interview process for experienced candidates are Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 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.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
Globant Interview Questions
3.8
 • 169 Interviews
View all
Software Engineer
224 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Data Engineer
88 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Software Developer
61 salaries
unlock blur

₹3 L/yr - ₹9.4 L/yr

Servicenow Developer
51 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

QA Engineer
48 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare AVASOFT with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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