Upload Button Icon Add office photos

Filter interviews by

Accubits Technologies AI Engineer Interview Questions and Answers

Updated 1 Jul 2024

Accubits Technologies AI Engineer Interview Experiences

1 interview found

AI Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Real World scenarios of AI
  • Ans. 

    AI is used in real world scenarios like autonomous vehicles, healthcare diagnosis, fraud detection, and personalized recommendations.

    • Autonomous vehicles - AI is used for self-driving cars to navigate and make decisions on the road.

    • Healthcare diagnosis - AI helps in analyzing medical images and data to assist doctors in diagnosing diseases.

    • Fraud detection - AI algorithms can detect patterns of fraudulent activities in f...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Leetcode easy level questions

Round 2 - Technical 

(1 Question)

  • Q1. Eliminate subsequent repetitions in a string
  • Ans. 

    Remove subsequent repetitions in a string

    • Iterate through the string and compare each character with the next one

    • If they are the same, remove the repetition by shifting the characters to the left

    • Repeat this process until all repetitions are eliminated

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

(1 Question)

  • Q1. Behavioral questions asked by Delivery Manager
Round 4 - Client Interview 

(1 Question)

  • Q1. Behavioral round and past experience
Round 5 - Client Interview 

(2 Questions)

  • Q1. Design a URL shortener
  • Ans. 

    A URL shortener is a tool that takes a long URL and generates a shorter, more manageable link.

    • Generate a unique short code for each long URL

    • Store the mapping between short code and long URL in a database

    • Redirect users from short URL to original long URL when accessed

  • Answered by AI
  • Q2. Write unit test for a sevice class
  • Ans. 

    Unit test for a service class

    • Create a test class for the service class

    • Mock any dependencies of the service class

    • Write test methods to cover different scenarios

    • Use assertions to verify the expected outcomes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The fifth client technical interview went on for at least 2 hours. I was not shortlisted after 5 rounds of interview. The HR recruiter didn't inform this decision even after multiple follow-ups by call.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic react and js interview
Round 2 - Assessment 

(1 Question)

  • Q1. React multiple questions
Round 3 - Coding Test 

Finding kth largest number by creating function without using in-built methods using javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for a Sr.Engineer position with this company.After successfully clearing 3 technical rounds, we moved to salary negotiations. Based on market standards and their own job listings for this position, which clearly mentioned a salary bracket of 12-15 LPA, I expected 12 LPA-a fair and reasonable figure for the role and my qualifications.
After discussions, I compromised and agreed to their offer of 9LPA, despite already holding another offer at the same package. However, at the final stage, they abruptly cancelled the offer, citing that my initial expectation was too high. This decision came after wasting significant time and energy throughout the process.
This behavior demonstrates a lack of professionalism, transparency, and respect for candidates. It's disheartening to see companies treating potential hires this way, especially after reaching mutual agreements.
If you're considering applying here, think twice about their commitment to candidate and their hiring ethics.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Army Institute of Technology, Pune and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There was a coding round and out of 75 students 28 got selected for next round

Round 2 - Technical 

(2 Questions)

  • Q1. Total on resume and basic coding questions like write code for different sorting algorithms.
  • Q2. Explain your project in detail and asking cross questions regarding project.
Round 3 - Technical 

(1 Question)

  • Q1. I was rejected in round 2.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume thoroughly, and have a basic DSA knowledge.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Given the jira to solve it.
Round 2 - Behavioral 

(1 Question)

  • Q1. 0 to 100 % my career path
Round 3 - HR 

(1 Question)

  • Q1. General questions like location, adaptability

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with practical knowledge.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

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

(2 Questions)

  • Q1. Go Lang related questions
  • Q2. System architecture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

Consisted of aptitude and coding output questions

Round 2 - Coding Test 

Coding test was given with three questions .we have to write in on word in 45 mins

Round 3 - HR 

(1 Question)

  • Q1. They asked puzzles and other usual questions

Accubits Technologies Interview FAQs

How many rounds are there in Accubits Technologies AI Engineer interview?
Accubits Technologies interview process usually has 1 rounds. The most common rounds in the Accubits Technologies interview process are One-on-one Round.

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.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Magic Edtech Interview Questions
3.1
 • 48 Interviews
View all
Software Engineer
107 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
24 salaries
unlock blur

₹6.3 L/yr - ₹17.6 L/yr

Front end Developer
19 salaries
unlock blur

₹2.4 L/yr - ₹8.1 L/yr

Business Analyst
17 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

QA Engineer
17 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Explore more salaries
Compare Accubits Technologies with

LTIMindtree

3.8
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
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