Upload Button Icon Add office photos

Filter interviews by

IEO Makers Fablab Interview Questions, Process, and Tips

Updated 16 Nov 2021

Top IEO Makers Fablab Interview Questions and Answers

  • Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the elem ...read more
    asked in Web Developer interview
  • Q2. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B . Your task is to determine if ...read more
    asked in Web Developer interview
  • Q3. Cycle Detection in a Singly Linked List Determine if a given singly linked list of integers forms a cycle or not. A cycle in a linked list occurs when a node's next poin ...read more
    asked in Software Developer interview

IEO Makers Fablab Interview Experiences

Popular Designations

3 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2021

I was interviewed in Nov 2021.

Round 1 - Coding Test 

Round duration - 25 Minutes
Round difficulty - Medium

The round was very good i performed really very well. The interviewer was quite polite. He asked me many questions and i almost gave all the answers.

Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

Tech + HR round

  • Q1. 

    Check Indices With Given Difference Problem Statement

    You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in...

  • Ans. 

    The task is to determine if there exist two distinct indices in the array such that the absolute difference of the values at those indices is less than or equal to B and the absolute difference of the indices is less than or equal to A.

    • Iterate through the array and keep track of the indices and values encountered so far

    • Use a hashmap to store the values and their indices

    • Check if the absolute difference of values is less...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from KIET Group of Institutions. I applied for the job as Web Developer in GhaziabadEligibility criteriaAbove 8 CGPAIEO MAKERS FABLAB (OPC) PRIVATE LIMITED interview preparation:Topics to prepare for the interview - HTML, CSS, data structures, algorithms, javascript, OOPs.Time required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do not rush into things. Learning takes time. Focus should be on the concepts and not just on leaving topics half-prepared. Devote 70% of both time and effort to DSA. I solved a total of around 500 questions on sites like GFG and Leetcode. Do not repeat similar questions just to increase the count of the number of questions
Tip 2 : Revise data structures and algorithms.
Tip 3 : Revise HTML,CSS,JS.
Tip 4 : Be confident.

Application resume tips for other job seekers

Tip 1 : Don't make it too lengthy.
Tip 2 : Mention all your skills.
Tip 3 : Mention all your projects. 
Tip 4 : Don't put false things in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (1)

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Use Floyd's Tortoise and Hare algorithm to detect a cycle in O(N) time complexity and O(1) space complexity.

    • Initialize two pointers, slow and fast, and move them at different speeds through the list.

    • If there is a cycle, the fast pointer will eventually meet the slow pointer.

    • If the fast pointer reaches the en...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Tech +HR round

  • Q1. 

    BST Construction from Level Order Traversal

    Given an array called levelOrder consisting of 'N' elements, this array represents the level order traversal of a Binary Search Tree (BST). Your task is to cons...

  • Ans. 

    Construct a Binary Search Tree (BST) from its level order traversal and print the inorder traversal.

    • Create a BST from the given level order traversal array by inserting elements in the correct order.

    • Use a queue to keep track of nodes while constructing the BST.

    • Traverse the constructed BST in inorder to get the desired output.

    • Example: For level order traversal [5, 3, 6, 2, 4, 7], the inorder traversal of the constructed

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaNOIEO MAKERS FABLAB (OPC) PRIVATE LIMITED interview preparation:Topics to prepare for the interview - HTML, CSS, Java Script, data structures, algorithm.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Revise data structures and algorithm.
Tip 2 : Revise HTML, CSS, JS and show your projects.
Tip 3 : Be confident.

Application resume tips for other job seekers

Tip 1 : Mention your projects
Tip 2 : Put things in chronological order.

Final outcome of the interviewSelected

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 (42)
IEO Makers Fablab Interview Questions and Answers for Freshers
illustration image

Web Developer Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2021

I was interviewed before Nov 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

The interview and the interviewer were pretty good. The time was about 4pm. The environment was very good and the interviewer was very calm and humble. He asked me a question in which I was stucked but he gave me a small hint and then i gave the answer of that question.

  • Q1. 

    Last Index of Element

    The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1.

    Inp...

  • Ans. 

    Find the index of the last occurrence of a specified element in an array.

    • Iterate through the array from right to left to find the last occurrence of the element.

    • Return the index if found, otherwise return -1.

    • Consider 0-based indexing for the array.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from KIET Group of Institutions. I applied for the job as Web Developer in GhaziabadEligibility criteriaNoIEO MAKERS FABLAB pvt ltd interview preparation:Topics to prepare for the interview - HTML, CSS, Java Script, Data Structure, Python and OOPs.Time required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Prepare HTML, CSS, and JS thoroughly.
Tip 2 : Revise Data Structures.
Tip 3 : Revise your project if any.

Application resume tips for other job seekers

Tip 1 : Mention all your great achievements.
Tip 2 : Mention your projects.
Tip 3 : Mention if you have previously did any internship.

Final outcome of the interviewRejected

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (1)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 2017. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Self introduction & Resume based questions.
  • Q2. What will you do if you get a Super power ?
  • Ans. 

    If I had a super power, I would use it to help others and make the world a better place.

    • I would use my super power to solve global issues such as poverty, hunger, and climate change.

    • I would also use it to help individuals in need, such as curing diseases or preventing disasters.

    • Additionally, I would work towards promoting peace and harmony among nations.

    • Overall, my goal would be to make a positive impact on the world a

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: First Round consists of 60 questions with three Sections having equal distribution of 20 in each section .Three sections were Logical Reasoning , Verbal & Aptitude.

General Tips: By luck I was selected . My advise is just watch through your preparation for first round and please do work on your communication & keen observance for the second round.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Presentation Skills
Duration: <1 week
College Name: sri venkateswara college of engineering.

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

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about you?
  • Q2. What are your hobbies?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ask me a simple questions because I'm a Fresher.Thanks

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What you have prepared for interview?

Interview Preparation Tips

Interview preparation tips for other job seekers - Carefully examine the job description.
Share your story.
Provide evidence and data.
Say thanks.

Interview Questionnaire 

1 Question

  • Q1. Where u see urself after 5 yrs?long term goal

Interview Questionnaire 

1 Question

  • Q1. Just intro

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Just basic html,css and js

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join as a third party employee and even if you do make 110% sure that the job profile is what you want if you don't do that then you might regret after few years because these huge corporation really have lot of silly jobs that revolves around your profile but are far from your skills so confirm that before joining.
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

DESIGNATION

SALARIES

McKinsey & Company

DESIGNATION

DESIGNATION

DESIGNATION

DESIGNATION

SALARIES

McKinsey & Company

JOBS

PhonePe

No Jobs

INTERVIEWS

PayU Payments

No Interviews

SALARIES

Meesho

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Compare IEO Makers Fablab with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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