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. Check Indices With Given Difference You are given an integer array 'ARR' of size โ€˜Nโ€™ and two integers โ€˜Aโ€™ and โ€˜Bโ€™. You need to find if there are two distinct indices in t ...read more
    asked in Web Developer interview
  • Q2. Last index of element Take an array with N elements with possibly duplicate elements as the input. The task is to find the index of the last occurrences of the element x ...read more
    asked in Web Developer interview
  • Q3. Technical Questions Give examples of webkit features. What are media queries in CSS3 and why do you use them?
    asked in Web Developer interview
View all 9 questions

IEO Makers Fablab Interview Experiences

Popular Designations

6 interviews found

Web Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Nov 2021

I was interviewed in Nov 2021.

Round 1 - Coding Testย 

(1 Question)

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.

  • Q1. Technical Questions

    Give examples of webkit features.

    What are media queries in CSS3 and why do you use them?

Round 2 - Coding Testย 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

Tech + HR round

  • Q1. Basic HR Questions

    Why should we hire you?

    What technologies you re familiar with?

    Who is your role model?

  • Q2. Check Indices With Given Difference

    You are given an integer array 'ARR' of size โ€˜Nโ€™ and two integers โ€˜Aโ€™ and โ€˜Bโ€™. You need to find if there are two distinct indices in the array, such that the abs...

  • Ans. Brute Force

    Approach: The basic approach to this question will be to simply use two loops and check for each possible pair of indices if it follows the given rule or not. 

     

    Algorithm:

    1. Outer loop: 0 to N - 1, and inner loop: outer + 1 to N - 1
      • Check if abs(arr[outer] - arr[inner]) <= B, and abs(outer - inner) <= A. If the above conditions hold, then we will return True.
    2. If we have not returned True till now, ...
  • Answered by CodingNinjas

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.ย Check Indices With Given DifferenceYou are given an integer array 'ARR' of size โ€˜Nโ€™ and two integers โ€˜Aโ€™ and โ€˜Bโ€™. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 27 Oct 2021

I was interviewed in Oct 2021.

Round 1 - Video Callย 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. DS Questions

    What is Dangling pointer?

    Difference between array and pointer.

    What are different type of polymorphism.

  • Q2. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

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

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered by CodingNinjas
Round 2 - Video Callย 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

Tech +HR round

  • Q1. Basic HR Questions

    Where do you see yourself in 5 years?

    What are your hobbies?

  • Q2. Construct BST from Level Order

    You have been given an array โ€˜levelOrderโ€™ consisting of โ€˜Nโ€™ elements. The array represents the level order traversal of a Binary Search Tree(BST). You need to construct the B...

  • Ans. Using Recursion

    The basic idea is that for every number we will find its position in BST using recursion.

     

    Algorithm

     

    • Let โ€œinsertNodeโ€ be the recursive function that takes โ€˜rootโ€™ of tree(initially NULL) and the element to be added in BST as input parameters and insert the given element to the BST.
    • Traverse the given array using a variable โ€˜iโ€™ and insert each element into BST using โ€œinsertNodeโ€ function.
    • Now, the โ€œ...
  • Answered by CodingNinjas

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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

Web Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Nov 2021

I was interviewed before Nov 2020.

Round 1 - Telephonic Callย 

(2 Questions)

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. Technical Questions

    You are given two websites A and B and you have to convert A into B. How can you do it and is there any thing that you need from us for this.

  • Q2. Last index of element

    Take an array with N elements with possibly duplicate elements as the input. The task is to find the index of the last occurrences of the element x in the array and, if it is not pres...

  • Ans. Brute Force approach
    • We create a variable last with value -1 to store the answer.
    • We iterate the array backwards and update the value of last if an occurrence of x is found. We break out of this loop.
    • Finally, print the value of last.
    Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered by CodingNinjas

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.ย Check Indices With Given DifferenceYou are given an integer array 'ARR' of size โ€˜Nโ€™ and two integers โ€˜Aโ€™ and โ€˜Bโ€™. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Video Callย 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

In the Morning
Earlier the environment was treated as a 'free' entity and any industry or even an individual could pollute the air and water without any restrictions. 

Problem solving
It was good. they went through couple of OOP design related question and design pattern

  • Q1. Basic HR Questions

    Why you want to work in this organization.

    What are your strengths?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GhaziabadEligibility criteriaNoIEO MAKERS FABLAB pvt ltd interview preparation:Topics to prepare for the interview - HTML,CSS, data structures, algorithms, java script, OOPs.Time required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Revise data structures and algorithms.
Tip 2 : Revise HTML,CSS,JS.
Tip 3 : Be confident

Application resume tips for other job seekers

Tip 1 : Don't make it too lengthy.
Tip 2 : Mention all your skills.

Final outcome of the interviewSelected

Software Developer Interview Questions asked at other Companies

Q1.ย Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

IEO Makers Fablab interview questions for popular designations

ย Software Developer

ย (3)

ย Web Developer

ย (3)

Web Developer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Testย 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview started at about 1pm and i remember the day, it was thursday. I joined the meeting on time. The environment was great and the interviewer was very calm and humble. First of all he asked me to introduce yourself. He asked me some subjective questions and some mcq. One thing that i would like to tell is that he asked me a question and unfortunately i was stucked in it but he helped me in a different way he asked me to take a deep breath and then actually i gave the right answer. I found it to be the great moment of the entire round.

  • Q1. Technical Questions

    How can you reduce page loading time.

    How will you enable pagination in CSS3 ?

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 pvt ltd interview preparation:Topics to prepare for the interview - HTML, CSS, Java Script, OOPs, Data Structure and Algorithms.Time required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice atleast 300 questions. 
Tip 2 : Revise your project if any. 
Tip 3 : Revise Data Structures and Algorithms.

Application resume tips for other job seekers

Tip 1 : Adding points in the resume that are related to the job description is really beneficial.
Tip 2 : Mention your experience and previous projects. 
Tip 3 : Don't put false things in the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1.ย Check Indices With Given DifferenceYou are given an integer array 'ARR' of size โ€˜Nโ€™ and two integers โ€˜Aโ€™ and โ€˜Bโ€™. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)

Get interview-ready with Top IEO Makers Fablab Interview Questions

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Video Callย 

(1 Question)

Round duration - 40 minutes.
Round difficulty - Medium

  • Q1. What is Dangling pointer?
  • Ans. 

    Dangling Pointer is a pointer that doesnโ€™t point to a valid memory location. Dangling pointers arise when an object is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory. Following are examples.

    // EXAMPLE 1
    int* ptr = (int*)malloc(sizeof(int));
    ..........................free(ptr);

    // ptr is a dangling pointer now and operati...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from KIET Group of Institutions. I applied for the job as SDE - 1 in HyderabadEligibility criteriaNOIEO MAKERS FABLAB pvt ltd interview preparation:Topics to prepare for the interview - I prepared HTML,CSS, Java Script ,data structures and algorithms.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Revise data structure and algorithms.
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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

Interview questions from similar companies

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

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

Round 1 - One-on-oneย 

(5 Questions)

  • Q1. How many variance in sap?
  • Ans. 

    The number of variances in SAP can vary depending on the specific processes and transactions being analyzed.

    • The number of variances in SAP can be influenced by factors such as data entry errors, system glitches, or discrepancies in invoice processing.

    • Variances in SAP may be identified through reconciliation processes, exception reports, or manual reviews of accounts payable transactions.

    • Examples of variances in SAP inc...

  • Answered by AI
  • Q2. We cac explain the all accounts receivable and accounts payable
  • Ans. 

    Accounts receivable and accounts payable are two important aspects of a company's financial operations.

    • Accounts receivable refers to money owed to a company by its customers for goods or services provided.

    • Accounts payable refers to money owed by a company to its suppliers or vendors for goods or services received.

    • Accounts receivable is an asset on the balance sheet, while accounts payable is a liability.

    • Managing accoun...

  • Answered by AI
  • Q3. What is the cost element and cost center?
  • Ans. 

    Cost element and cost center are key concepts in accounting for tracking and allocating costs within an organization.

    • Cost element refers to the specific types of costs incurred by an organization, such as materials, labor, or overhead.

    • Cost center is a specific department, team, or function within an organization that is responsible for incurring costs.

    • Cost elements are assigned to cost centers to track and allocate cos...

  • Answered by AI
  • Q4. How many we have currencies in sap?
  • Ans. 

    SAP supports over 160 currencies worldwide.

    • SAP supports over 160 currencies for global transactions.

    • Currencies can be configured in SAP using transaction code OB22.

    • Each currency is assigned a unique currency code (e.g. USD for US Dollar, EUR for Euro).

  • Answered by AI
  • Q5. How many types of projects
  • Ans. 

    There are various types of projects, including internal projects, external projects, research projects, and development projects.

    • Internal projects focus on improving processes within the organization.

    • External projects involve working with external partners or clients.

    • Research projects aim to gather data and analyze findings.

    • Development projects focus on creating new products or services.

    • Examples: IT system implementati...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture P2P Accounts Payable Executive interview:
  • mba fresher
Interview preparation tips for other job seekers - 1. Self-Reflection & Goal Setting
* Identify Your Strengths & Weaknesses:
* Strengths: What are you good at? What do you enjoy doing? What are your unique skills and talents?
* Weaknesses: What areas do you need to improve? What are your biggest challenges?
* Define Your Career Goals:
* Short-term: What kind of job are you looking for? What industry are you interested in? What salary range are you targeting?
* Long-term: What is your ideal career path? What are your long-term professional aspirations?
2. Enhance Your Job Search Strategy
* Build a Strong Online Presence:
* LinkedIn: Create a professional and engaging LinkedIn profile.
* Portfolio/Website: If applicable, showcase your work through a portfolio or personal website.
* Network, Network, Network:
* Attend industry events: Conferences, meetups, and workshops.
* Informational interviews: Connect with people working in your field of interest.
* Leverage your existing network: Let your friends, family, and former colleagues know you're job searching.
* Tailor Your Resume & Cover Letter:
* Customize: Tailor your resume and cover letter to each specific job application.
* Keywords: Use keywords from the job description to increase your chances of getting noticed by Applicant Tracking Systems (ATS).
* Quantify your achievements: Use numbers and data to demonstrate your accomplishments.
* Master the Job Interview:
* Practice: Prepare for common interview questions (behavioral, technical, etc.).
* Research: Learn about the company and the role you're interviewing for.
* Ask insightful questions: Demonstrate your interest and engagement.
3. Continuous Improvement
* Skill Development:
* Online courses: Platforms like Coursera, Udemy, and edX offer a wide range of courses.
* Certifications: Obtain relevant industry certifications to enhance your credentials.
* Volunteer work: Gain valuable experience and build your network.
* Stay Updated:
* Industry news: Keep up-to-date with the latest trends and developments in your field.
* Job market trends: Monitor job boards and industry publications to understand the current job market.
Key Advice:
* Be patient and persistent: The job search process can be challenging, but don't give up.
* Stay positive and maintain a growth mindset: Focus on your strengths and opportunities for improvement.
* Take care of yourself: Prioritize your physical and mental well-being during your job search.
Remember: The job market is constantly evolving. Be adaptable, proactive, and resourceful in your job search efforts. Good luck!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024.ย There were 13 interview rounds.

Round 1 - Technicalย 

(2 Questions)

  • Q1. What is the Entity-Relationship (ER) model?
  • Ans. 

    The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.

    • Entities are objects or concepts in the real world that can be distinguished from each other.

    • Relationships describe how entities are related to each other.

    • Attributes are properties that describe entities and relationships.

    • ER diagrams visually represent the ER model, showing entities, relationships, and a...

  • Answered by AI
  • Q2. What are the advantages of using threads compared to processes?
  • Ans. 

    Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.

    • Threads share the same memory space, making communication between them faster and more efficient.

    • Threads are lighter weight than processes, as they share resources such as memory and file descriptors.

    • Threads are more efficient for multitasking, as they can run concurrently within the same process.

    • Threads are easier to...

  • Answered by AI
Round 2 - Coding Testย 

Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.

Round 3 - Aptitude Testย 

An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.

Round 4 - Group Discussionย 

Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.

Round 5 - HRย 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
  • Q2. What reasons can you provide for why we should consider hiring you?
  • Ans. 

    I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.

    • I have a solid understanding of HTML, CSS, and JavaScript

    • I am proficient in using various web development tools and frameworks such as React and Node.js

    • I have successfully completed several web development projects, including a responsive e-commerce website for a local business

  • Answered by AI
Round 6 - Assignmentย 

An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.

Round 7 - Case Studyย 

A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.

Round 8 - One-on-oneย 

(2 Questions)

  • Q1. What do you consider your greatest accomplishment?
  • Ans. 

    My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.

    • Successfully led a team to launch a new website

    • Completed the project ahead of schedule

    • Received positive feedback from the client

  • Answered by AI
  • Q2. What factors motivate you in your professional life?
  • Ans. 

    I am motivated by challenges, learning opportunities, and the ability to make a positive impact.

    • Challenges push me to grow and improve my skills.

    • Learning opportunities allow me to stay updated with the latest technologies and trends.

    • Making a positive impact through my work gives me a sense of fulfillment and purpose.

  • Answered by AI
Round 9 - HRย 

(2 Questions)

  • Q1. What does your ideal work environment look like?
  • Ans. 

    My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.

    • Collaborative team environment where ideas are shared and valued

    • Supportive colleagues who are willing to help and provide feedback

    • Opportunities for growth and learning new technologies

    • Healthy work-life balance with flexible hours and remote work options

  • Answered by AI
  • Q2. How would you impact employee retention?
  • Ans. 

    By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.

    • Creating a positive work environment through open communication and support

    • Offering growth opportunities such as training programs and career advancement

    • Implementing employee recognition programs to acknowledge and reward hard work

    • Providing competitive salaries and benefits to attract and retain top ta

  • Answered by AI
Round 10 - Technicalย 

(2 Questions)

  • Q1. What are real-time operating systems?
  • Ans. 

    Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.

    • Real-time operating systems prioritize tasks based on timing constraints

    • They are designed to provide predictable response times

    • Examples include VxWorks, QNX, and FreeRTOS

  • Answered by AI
  • Q2. Are the applicants first asked several questions regarding data structures and algorithms?
Round 11 - HRย 

(2 Questions)

  • Q1. What topics are typically discussed during the final round of interviews, particularly regarding salary expectations, working hours, and other job requirements?
  • Q2. Are you comfortable working night shifts, considering that many roles at Genpact support international clients?
  • Ans. 

    Yes, I am comfortable working night shifts to support international clients.

    • I have previous experience working night shifts in a customer service role.

    • I am a night owl and tend to be more productive during late hours.

    • I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.

  • Answered by AI
Round 12 - Process associateย 

(2 Questions)

  • Q1. A process associate is crucial in ensuring the smooth operation of various business processes across different industries
  • Q2. What are the operational tasks necessary to maintain efficiency and quality?
  • Ans. 

    Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.

    • Regularly test website functionality to ensure it is working properly

    • Monitor website performance metrics such as load times and user experience

    • Update software and plugins to the latest versions to prevent security vulnerabilities

    • Implement best practices for coding,

  • Answered by AI
Round 13 - Mangerย 

(2 Questions)

  • Q1. How can you prepare examples demonstrating your leadership, conflict resolution, and prioritization skills to excel in a managerial round interview?
  • Ans. 

    Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.

    • Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.

    • Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.

    • Prioritization: Ta...

  • Answered by AI
  • Q2. How do you demonstrate adaptability, leadership, and a commitment to fostering a positive work environment?
  • Ans. 

    I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.

    • Seek feedback from colleagues and supervisors to continuously improve

    • Volunteer for new projects or tasks to expand skills and knowledge

    • Encourage open communication and teamwork among team members

    • Lead by example by showing a positive attitude and willingness to help o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your resume, customize your application, and be ready to show kindness.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technicalย 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technicalย 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technicalย 

(2 Questions)

  • Q1. Dw related que ans
  • Q2. Solution design related que
Round 4 - HRย 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Testย 

For example, a โ‚น10 LPA CTC could mean an in-hand salary of โ‚น70,000โ€“โ‚น75,000 per month, depending on deductions and benefits.

โœจ ๐—ฃ๐—ฟ๐—ผ ๐—ง๐—ถ๐—ฝ: Always request a detailed salary structure during negotiationsโ€”itโ€™s your roadmap to making informed decisions

Round 2 - Coding Testย 

๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder

Round 3 - Technicalย 

(2 Questions)

  • Q1. 2๏ธโƒฃ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: This is the actual amount you take home after deductions like: โ€ข Employeeโ€™s contribution to PF โ€ข Income tax (TDS) โ€ข Professional tax
  • Q2. ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€! Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressi...

Interview Preparation Tips

Interview preparation tips for other job seekers - ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder:

โ€œ๐˜ž๐˜ฉ๐˜บ ๐˜ฅ๐˜ฐ๐˜ฆ๐˜ด๐˜ฏโ€™๐˜ต ๐˜ฎ๐˜บ ๐˜ช๐˜ฏ-๐˜ฉ๐˜ข๐˜ฏ๐˜ฅ ๐˜ด๐˜ข๐˜ญ๐˜ข๐˜ณ๐˜บ ๐˜ฎ๐˜ข๐˜ต๐˜ค๐˜ฉ ๐˜ต๐˜ฉ๐˜ฆ ๐˜Š๐˜›๐˜Š ๐˜ ๐˜ธ๐˜ข๐˜ด ๐˜ฑ๐˜ณ๐˜ฐ๐˜ฎ๐˜ช๐˜ด๐˜ฆ๐˜ฅ?โ€

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
ย โ€ขย 8k Interviews
Infosys Interview Questions
3.7
ย โ€ขย 7.5k Interviews
Wipro Interview Questions
3.7
ย โ€ขย 5.5k Interviews
Cognizant Interview Questions
3.8
ย โ€ขย 5.5k Interviews
Capgemini Interview Questions
3.8
ย โ€ขย 4.8k Interviews
Tech Mahindra Interview Questions
3.6
ย โ€ขย 3.8k Interviews
HCLTech Interview Questions
3.5
ย โ€ขย 3.7k Interviews
Genpact Interview Questions
3.9
ย โ€ขย 3k Interviews
IBM Interview Questions
4.1
ย โ€ขย 2.4k Interviews
View all
Compare IEO Makers Fablab with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

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