Upload Button Icon Add office photos
Engaged Employer

i

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

Zycus Infotech Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 422 Reviews

Filter interviews by

Zycus Infotech ml engineer Interview Questions and Answers

Updated 20 Jun 2024

Zycus Infotech ml engineer Interview Experiences

1 interview found

ml engineer Interview Questions & Answers

user image Anonymous

posted on 20 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

45 questions with 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is svm and its usage
  • Ans. 

    SVM stands for Support Vector Machine, a supervised machine learning algorithm used for classification and regression tasks.

    • SVM finds the hyperplane that best separates different classes in the feature space

    • It can handle both linear and non-linear data by using different kernel functions

    • SVM is widely used in image classification, text classification, and bioinformatics

  • Answered by AI
  • Q2. What is the project’s u have down
Round 3 - Technical 

(2 Questions)

  • Q1. What is my major project
  • Q2. What is the technical approach for a problem
  • Ans. 

    The technical approach for a problem involves defining the problem, gathering data, selecting algorithms, training models, evaluating performance, and iterating.

    • Define the problem statement and objectives clearly

    • Gather relevant data and preprocess it for analysis

    • Select appropriate algorithms and techniques based on the problem

    • Train machine learning models using the data

    • Evaluate model performance using metrics like accu...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic SQL and Programming Questions

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Normal online code / frontend test

Round 2 - Technical 

(1 Question)

  • Q1. How would you build book my show
  • Ans. 

    Designing and building a platform similar to BookMyShow involves creating a user-friendly interface for booking tickets for various events.

    • Develop a user-friendly website and mobile app for users to browse and book tickets for movies, concerts, plays, etc.

    • Implement a secure payment gateway for users to make online transactions.

    • Integrate a database to store information about events, venues, tickets, and user bookings.

    • In...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Solid principals, awareness of patterns
Round 4 - Technical 

(1 Question)

  • Q1. How would you build tinyurl like service, systems designs
  • Ans. 

    To build a tinyurl-like service, design a system with a URL shortening algorithm, a database to store mappings, and a redirect service.

    • Use a hashing algorithm to generate short URLs from long URLs (e.g. MD5, SHA-256).

    • Store the mappings of short URLs to long URLs in a database (e.g. MySQL, Redis).

    • Implement a redirect service that takes a short URL, looks up the corresponding long URL in the database, and redirects the u...

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

(1 Question)

  • Q1. Non-technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - no reply after giving so many rounds.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS 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.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

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

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Problem solving question
  • Q2. Java , stream , Spring fundamentals
Round 2 - Technical 

(2 Questions)

  • Q1. Some basic String array problem solving question
  • Q2. Java questions like junit , Spring boot
Round 3 - Technical 

(2 Questions)

  • Q1. String questions , DSA problem
  • Q2. Java questions in brief

Interview Preparation Tips

Interview preparation tips for other job seekers - Didnt get offer as opening got closed
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at NMAM Institute of Technology, Mangalore and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Based on os , linux , nutanix

Round 2 - Technical 

(2 Questions)

  • Q1. Related to networking
  • Q2. What is dns , NET , Scenario based questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. String coding question
  • Q2. File operations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SOLID Principles
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Rate Limiter with possible test cases
  • Ans. 

    Rate limiter is a mechanism to control the rate of requests sent to a server

    • Implement a sliding window algorithm to track the number of requests within a specific time frame

    • Set a limit on the number of requests allowed per unit of time

    • Return an error response when the limit is exceeded

    • Test cases: 1. Send requests below the limit - should be successful. 2. Send requests above the limit - should receive an error response

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

(1 Question)

  • Q1. Rank teams based on some criteria
Round 3 - One-on-one 

(1 Question)

  • Q1. Job scheduler system design round
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was ok as aptitude is easy and can be solved by anyone practice is important and crucial for the aptitude round

Round 2 - Technical 

(2 Questions)

  • Q1. Technical related to analyst
  • Q2. Joins joins joins joins
  • Ans. 

    The question seems to be asking about the concept of joining in a production engineering context.

    • Joining in production engineering refers to the process of connecting or combining two or more components or materials together.

    • Common joining techniques include welding, soldering, adhesive bonding, and mechanical fastening.

    • The choice of joining method depends on factors such as the materials being joined, the required str...

  • Answered by AI

Skills evaluated in this interview

Zycus Infotech Interview FAQs

How many rounds are there in Zycus Infotech ml engineer interview?
Zycus Infotech interview process usually has 3 rounds. The most common rounds in the Zycus Infotech interview process are Technical and Coding Test.
What are the top questions asked in Zycus Infotech ml engineer interview?

Some of the top questions asked at the Zycus Infotech ml engineer interview -

  1. What is the technical approach for a prob...read more
  2. What is svm and its us...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 895 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
View all
Software Engineer
294 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Procurement Analyst
144 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate Technical Leader
96 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Softwaretest Engineer
94 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Senior Procurement Analyst
85 salaries
unlock blur

₹4.1 L/yr - ₹10.4 L/yr

Explore more salaries
Compare Zycus Infotech with

SAP

4.2
Compare

Oracle

3.7
Compare

IBM

4.0
Compare

Accenture

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