Upload Button Icon Add office photos
Engaged Employer

i

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

OMFYS Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

OMFYS Technologies Interview Questions, Process, and Tips

Updated 13 Mar 2025

Top OMFYS Technologies Interview Questions and Answers

View all 7 questions

OMFYS Technologies Interview Experiences

Popular Designations

9 interviews found

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

(3 Questions)

  • Q1. Basic about RPA
  • Q2. What is the RPA?
  • Ans. 

    RPA stands for Robotic Process Automation, which is the use of software robots to automate repetitive tasks.

    • RPA involves using software robots to mimic human actions in performing repetitive tasks

    • It can be used to automate tasks such as data entry, data extraction, and report generation

    • RPA can help improve efficiency, accuracy, and productivity in various industries

  • Answered by AI
  • Q3. Do you know Genrative Ai
  • Ans. 

    Generative AI is a type of AI that can create new content, such as images, text, or music, based on patterns it has learned.

    • Generative AI uses algorithms to generate new content based on patterns in existing data.

    • Examples include DeepDream for images, GPT-3 for text generation, and Magenta for music composition.

    • Generative AI can be used in various fields such as art, design, and entertainment.

  • Answered by AI

RPA Developer Interview Questions asked at other Companies

Q1. What is procedural language and object oriented language? Which one is better? What are the examples of both?
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python basic, OOPs, Definition like Django
  • Q2. Coding questions easy create list dict set and add data and print values only
Round 2 - Behavioral 

(1 Question)

  • Q1. Everything in depth, projects, NLP
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion they have fixed salary they will not change in hr also

Python and Django Developer Interview Questions asked at other Companies

Q1. What happens when you enter URL in the chrome URL bar?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Structure of Oracle APEX? Report creation SQL basics Joins PLSQL basic Python Basic Django Basic Java Basic Project Explanation in brief
Round 2 - One-on-one 

(1 Question)

  • Q1. Final round with CEO Basic questions about me.

Interview Preparation Tips

Interview preparation tips for other job seekers - Join If you want to learn and gain experience not for money.

Oracle Developer Interview Questions asked at other Companies

Q1. 1 Write a procedure using user defined exception 2 write a procedure to get error, if updating end of the month. Etc....
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. For First round question around basic ML and AI
  • Q2. Second round was more in-depth technical knowledge about AIML and React

OMFYS Technologies interview questions for popular designations

 Python and Django Developer

 (1)

 System Engineer Trainee

 (1)

 Manager

 (1)

 Software Engineer

 (1)

 RPA Developer

 (1)

 System Engineer

 (1)

 Oracle Developer

 (1)

Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Question around AIML
  • Q2. Second round there in-depth question around AIML
  • Q3. What is a random forest?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. First is telephonic round 1)self introduction 2) family background 3) explain your projects which you have done in detail

Interview Preparation Tips

Topics to prepare for OMFYS Technologies System Engineer Trainee interview:
  • Django
Interview preparation tips for other job seekers - Prepare well for technical round

System Engineer Trainee Interview Questions asked at other Companies

Q1. 1.what is stack? 2.undo-redo 3.backward and forward in the browser 4.polymorphism 5.given array find the frequency of each element. 6.Pseudo code is given on screen asked for output ...topic :--multiple inheritence
View answer (1)

Jobs at OMFYS Technologies

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 4 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 - Telephonic Call 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Explain your project.
Round 3 - Technical 

(7 Questions)

  • Q1. Tell me about yourself.
  • Q2. Explain your project
  • Q3. What is the concept of Middleware in Web development?
  • Ans. 

    Middleware in web development acts as a bridge between different components of a software application, allowing them to communicate and interact with each other.

    • Middleware is software that connects different software applications or components.

    • It helps in handling communication between different systems or components.

    • Middleware can provide services such as authentication, logging, and caching.

    • Examples of middleware inc...

  • Answered by AI
  • Q4. Write a code to start a simple Web server in JavaScript.
  • Ans. 

    Code to start a simple Web server in JavaScript

    • Use Node.js to create a simple web server

    • Require the 'http' module

    • Use the createServer method to create a server instance

    • Listen on a specific port for incoming requests

  • Answered by AI
  • Q5. Difference between var, let and const
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and mutability.

    • var has function scope and can be redeclared and reassigned

    • let has block scope and can be reassigned but not redeclared

    • const has block scope and cannot be reassigned or redeclared

  • Answered by AI
  • Q6. How can we connect to MongoDB using Javascript?
  • Ans. 

    To connect to MongoDB using Javascript, you can use the official MongoDB Node.js driver.

    • Install the MongoDB Node.js driver using npm: npm install mongodb

    • Require the MongoDB Node.js driver in your Javascript file: const MongoClient = require('mongodb').MongoClient

    • Connect to MongoDB using MongoClient.connect() method

    • Specify the MongoDB connection URL and database name in the connect() method

    • Access the MongoDB database an...

  • Answered by AI
  • Q7. Difference between Async and Await in JavaScript.
  • Ans. 

    Async and Await are keywords used in JavaScript to handle asynchronous operations in a synchronous way.

    • Async is used to declare a function as asynchronous, which means it will always return a promise.

    • Await is used to pause the execution of a function until a promise is settled (resolved or rejected).

    • Async functions can contain one or more await expressions to wait for promises to be resolved.

    • Async functions always retu...

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

(3 Questions)

  • Q1. Discussion on NLP
  • Q2. Discussion on APIs
  • Q3. Discussion on latest technology trends like ChatGPT

Interview Preparation Tips

Topics to prepare for OMFYS Technologies System Engineer interview:
  • Natural Language Processing
  • Artificial Intelligence
  • Node.Js
  • Javascript
  • REST API
Interview preparation tips for other job seekers - Be confident.

Skills evaluated in this interview

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of any backend or front end language along with syntax
  • Q2. DBMS questions along with queries.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Manager Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 4 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 - HR 

(1 Question)

  • Q1. About Yourself and work Experience.
Round 3 - Technical 

(1 Question)

  • Q1. Work Experience and Technical understanding
Round 4 - One-on-one 

(1 Question)

  • Q1. Fitment analysis

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before 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 - HR 

(3 Questions)

  • Q1. Normal introduction was asked
  • Q2. Description of the previous role
  • Q3. Roles and responsibilities
Round 3 - Aptitude Test 

Not applicable , this was final round

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard on your attitude, skills can be taught! Focus on your goal.

OMFYS Technologies Interview FAQs

How many rounds are there in OMFYS Technologies interview?
OMFYS Technologies interview process usually has 2 rounds. The most common rounds in the OMFYS Technologies interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for OMFYS Technologies 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 OMFYS Technologies. The most common topics and skills that interviewers at OMFYS Technologies expect are Javascript, HTML, CSS, Node.Js and ERP Sales.
What are the top questions asked in OMFYS Technologies interview?

Some of the top questions asked at the OMFYS Technologies interview -

  1. What is the concept of Middleware in Web developme...read more
  2. Write a code to start a simple Web server in JavaScri...read more
  3. How can we connect to MongoDB using Javascri...read more
How long is the OMFYS Technologies interview process?

The duration of OMFYS Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

OMFYS Technologies Interview Process

based on 8 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

CGS Interview Questions
3.5
 • 25 Interviews
ElectrifAi Interview Questions
2.7
 • 17 Interviews
Fusion Interview Questions
3.2
 • 17 Interviews
View all

OMFYS Technologies Reviews and Ratings

based on 36 reviews

3.2/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

2.6

Salary

2.6

Job security

2.6

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 36 Reviews and Ratings
Business Development Manager

Pune

8-12 Yrs

Not Disclosed

Accounts Executive

Pune

0-2 Yrs

Not Disclosed

Business Development Executive

Pune

1-3 Yrs

Not Disclosed

Explore more jobs
Junior Software Engineer
27 salaries
unlock blur

₹1.9 L/yr - ₹3.3 L/yr

Software Engineer
21 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

RPA Developer
8 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Software Developer
7 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Junior Software Developer
7 salaries
unlock blur

₹1.8 L/yr - ₹3.1 L/yr

Explore more salaries
Compare OMFYS Technologies with

Primus Global Technologies

3.9
Compare

TriGeo Technologies

3.2
Compare

GrapplTech

4.8
Compare

Plada Infotech Services

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