Upload Button Icon Add office photos
Engaged Employer

i

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

Fero.Ai Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fero.Ai Interview Questions and Answers

Updated 17 Feb 2024

Fero.Ai Interview Experiences

Popular Designations

4 interviews found

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

I applied via LinkedIn and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What are you expectations?
  • Ans. 

    I expect a challenging and rewarding role where I can utilize my skills and contribute to the growth of the company.

    • Opportunities to learn and grow

    • Collaborative and supportive work environment

    • Clear expectations and goals

    • Recognition for hard work and achievements

  • Answered by AI
  • Q2. What are the skills and experience do you have?
  • Ans. 

    I have experience in software development, programming languages, and problem-solving skills.

    • Proficient in Java, Python, and C++ programming languages

    • Experience in developing web applications using HTML, CSS, and JavaScript

    • Familiarity with software development methodologies such as Agile and Scrum

    • Strong problem-solving skills and ability to work in a team environment

    • Experience in using version control systems such as G

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Python array questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just dont apply here. You will regret in just few weeks. Find some better company.

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 17 Feb 2024

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Briefing about the requirements and job role
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions related to Javscript, Vuejs and NuxtJS
Round 3 - Assignment 

Assignment to make a weather app

Round 4 - HR 

(1 Question)

  • Q1. Given the offer letter

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

I applied via Referral and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

There favourite thing is that you should know python, Django, Django Framework, Machine Learning basic algorithms, Natural Language Processing.
They ask about listing in python most probably.

Round 2 - HR 

(1 Question)

  • Q1. They just asked me about my family and duture plans. I had done this internship for 1 month which was unpaid.

Interview Preparation Tips

Topics to prepare for Fero.Ai Machine Learning Engineer Intern interview:
  • Listing Agreement
Interview preparation tips for other job seekers - You should know about Python, Machine Learning, Django, Django framework and Chatbots.
You should also know about the Natural Language Processing.

Machine Learning Engineer Intern Interview Questions asked at other Companies

Q1. How can we write an efficient matrix multiplication method for huge matrices?
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to run python file using command line?
  • Ans. 

    To run a Python file using command line, use the 'python' command followed by the file name.

    • Open the command line interface (CLI)

    • Navigate to the directory where the Python file is located

    • Run the Python file using the 'python' command followed by the file name (e.g. python filename.py)

  • Answered by AI
  • Q2. How to use print statement ?
  • Ans. 

    Print statement is used to display output on the console in programming languages.

    • Use 'print' keyword followed by the content to be displayed

    • Can include variables, strings, numbers, etc. in the print statement

    • Example: print('Hello, World!') will display 'Hello, World!' on the console

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please look out for other good opportunities instead of this and Fero.ai does not work on any kind of ML and AI

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 (43)

Fero.Ai interview questions for popular designations

 Software Developer

 (1)

 Software Development Engineer

 (1)

 Machine Learning Engineer Intern

 (1)

 Sde1

 (1)

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. There wer four questions 1) wildcard pattern matching(leetcode) 2) cows and buffaloes(leetcode) 3) unix based cd directory 4) backtracking question
  • Q2. It was a resume based round for 45 min
Round 2 - Technical 

(1 Question)

  • Q1. It was a resume based round for 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium to hard questions
Know your resume very well

Intern Interview Questions & Answers

Idfy user image Anonymous

posted on 7 Aug 2024

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It had 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. About projects I mentioned in resume
  • Q2. React questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA based round. Taken by external company. I would say to medium level questions asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. This was based on LLD.
  • Q2. Why SQL and not NoSQL?
  • Ans. 

    SQL is preferred for structured data, transactions, complex queries, and ACID compliance.

    • SQL is better for structured data and relationships between data.

    • SQL is preferred for transactions and ensuring data integrity.

    • SQL is more suitable for complex queries involving multiple tables.

    • SQL databases provide ACID compliance for data consistency and reliability.

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

(2 Questions)

  • Q1. Past project experience with a Tech Lead.
  • Ans. 

    Worked on a project with a Tech Lead to develop a new feature for a web application.

    • Collaborated closely with the Tech Lead to define project requirements and timelines

    • Received guidance and mentorship from the Tech Lead on best practices and coding standards

    • Participated in regular code reviews and discussions with the Tech Lead to ensure quality and consistency

    • Implemented feedback and suggestions provided by the Tech L

  • Answered by AI
  • Q2. More into the problems I have solved previously and the working culture discussion.

Interview Preparation Tips

Topics to prepare for Idfy Senior Software Engineer interview:
  • DSA
  • LLD
  • Past project

Skills evaluated in this interview

Fero.Ai Interview FAQs

How many rounds are there in Fero.Ai interview?
Fero.Ai interview process usually has 2-3 rounds. The most common rounds in the Fero.Ai interview process are HR, Technical and Resume Shortlist.
How to prepare for Fero.Ai 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 Fero.Ai. The most common topics and skills that interviewers at Fero.Ai expect are Android, Flutter, JSON and SDK.
What are the top questions asked in Fero.Ai interview?

Some of the top questions asked at the Fero.Ai interview -

  1. How to run python file using command li...read more
  2. How to use print statemen...read more
  3. Basic questions related to Javscript, Vuejs and Nux...read more

Tell us how to improve this page.

Fero.Ai Interview Process

based on 4 interviews

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Havells Interview Questions
4.0
 • 210 Interviews
Blue Star Interview Questions
4.1
 • 160 Interviews
Voltas Interview Questions
4.0
 • 129 Interviews
Bajaj Electricals Interview Questions
4.0
 • 124 Interviews
Whirlpool Interview Questions
3.9
 • 94 Interviews
IFB Interview Questions
3.6
 • 94 Interviews
Symphony Interview Questions
4.1
 • 8 Interviews
View all

Fero.Ai Reviews and Ratings

based on 22 reviews

4.0/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.7

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 22 Reviews and Ratings
Software Developer
7 salaries
unlock blur

₹3.7 L/yr - ₹6.4 L/yr

Software Development Engineer
4 salaries
unlock blur

₹5.4 L/yr - ₹9 L/yr

Python Developer
4 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

QA Analyst
4 salaries
unlock blur

₹4 L/yr - ₹5.4 L/yr

Devops Engineer
4 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Explore more salaries
Compare Fero.Ai with

Global Edge Software

3.5
Compare

Trawex Technologies

4.5
Compare

Moveinsync Technology Solutions

3.4
Compare

Pagarbook

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