Upload Button Icon Add office photos
Premium Employer

i

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

Innominds Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Innominds Software Front end Developer Interview Questions and Answers

Updated 26 Nov 2021

Innominds Software Front end Developer Interview Experiences

2 interviews found

I appeared for an interview in Apr 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was a meet and greet round wherein my background was evaluated, the interviewer had me walkthrough all the projects that I have done and my interest in open source as well as technical competencies, post that I was made to solve a data structures based question. It was more or less around to figure out what my background is and how my qualifications match with the companies requirements.

  • Q1. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize difference between largest and smallest packets.

    • Sort the array of chocolates packets

    • Calculate the minimum possible difference between the maximum and minimum number of chocolates in packets distributed to students

    • Return the minimum possible difference

  • Answered by AI
Round 2 - Face to Face 

Round duration - 40 Minutes
Round difficulty - Medium

This round was conducted by the Vice President, where I was asked questions pertaining to my projects and technologies used.
 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in BangaloreEligibility criteriaNo criteriaInnominds interview preparation:Topics to prepare for the interview - Data Structures, JavaScript event loop, React conditional programming, Redux.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Thoroughly grasp fundamentals of JavaScript like closures, event loop, call stack, hoisting because every Front-end role requires JavaScript fundamentals
Tip 2 : Be prepared with the library/framework's basics that you've used in projects, in my case it was React.js and React paired with Redux is what everyone asks. 
Tip 3 : Have stories to present based on your past experience, working on projects helps you run into situatuons you'd otherwise not experience, so you'd be having substantial information to cite based on the challenges you've faced and how you overcame.

Application resume tips for other job seekers

Tip 1 : Have projects specific to React/Angular on resume
Tip 2 : Mention in details the list of dependencies/technologies you used in those projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. 1. Javascript HTML CSS jquery and reactJs basic questions
  • Q2. 2. Simple Project in React
  • Ans. 

    A simple project in React

    • Create a basic React app using create-react-app

    • Add components and props to display data

    • Use state and lifecycle methods to update and manage data

    • Implement routing using React Router

    • Integrate with APIs to fetch and display data

    • Style components using CSS or a CSS framework like Bootstrap

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Sort Linked List Based on Actual Values You are given a Singly Li ... read more

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

Technical questions will be there

Round 2 - Coding Test 

Simple coding questions will be asked.

Round 3 - HR 

(1 Question)

  • Q1. Only about salary and joining dates.

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. The questions mostly with javascript problem solving.
  • Q2. Core functionalities of vuejs
  • Ans. 

    Vue.js is a progressive JavaScript framework for building user interfaces.

    • Reactive data binding

    • Component-based architecture

    • Virtual DOM

    • Directives

    • Computed properties

    • Event handling

    • Routing

    • Vuex state management

    • Server-side rendering

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are strong in oops javascript, it will easy.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Questions like CSS box model, semantic html, javascript closure
  • Q2. Questions about bootstrap framework, Have you done any project's on these technologies?
  • Q3. What is pseudo classes and element?
  • Ans. 

    Pseudo classes and elements are used in CSS to style elements based on their state or position in the document.

    • Pseudo classes are used to style elements based on their state, such as :hover, :active, and :focus.

    • Pseudo elements are used to style specific parts of an element, such as ::before and ::after.

    • Pseudo classes and elements are denoted by a colon or double colon before the name.

    • They can be used to add special eff...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic and brush up your technical skills before each round. doesn't matter if there are 3-4 panels for technical interview they'll just check your confidence and communication skills how you answer properly as interviews are happening virtually and through phone calls. Don't forget to thank the interviewer after each round.Dont take it lightly because these interviews are happening virtually face it like you are giving the interview in person.All the best.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Jun 2023.

Round 1 - Assignment 

Create 1 webpage using html, css, js, scss - xd provided

Round 2 - Technical 

(7 Questions)

  • Q1. Doctype in html
  • Ans. 

    Doctype in HTML specifies the version of HTML being used in the document.

    • Doctype declaration is placed at the very beginning of an HTML document before the <html> tag.

    • It helps the browser to render the web page correctly by specifying the version of HTML being used.

    • Example: <!DOCTYPE html> for HTML5, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-tr

  • Answered by AI
  • Q2. What is Flexbox in css
  • Ans. 

    Flexbox is a layout model in CSS that allows you to design complex layouts with a more efficient and predictable way.

    • Flexbox is used for creating flexible and responsive layouts.

    • It allows you to align and distribute space among items in a container.

    • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

    • Example: display: flex; justify-content: center; align-items: center;

  • Answered by AI
  • Q3. Document.ready and window.onload difference
  • Ans. 

    Document.ready is a jQuery function that fires when the DOM is ready, while window.onload is a vanilla JavaScript event that fires when all resources have loaded.

    • Document.ready is specific to jQuery, while window.onload is a standard JavaScript event.

    • Document.ready fires when the DOM is ready, even if images are still loading, while window.onload waits for all resources to finish loading.

    • Document.ready is faster than w...

  • Answered by AI
  • Q4. Position properties in css
  • Ans. 

    Position properties in CSS control the positioning of elements on a webpage.

    • The 'position' property specifies the type of positioning method used for an element (static, relative, absolute, fixed, or sticky).

    • The 'top', 'right', 'bottom', and 'left' properties can be used to adjust the position of an element relative to its containing element.

    • Examples: position: relative; top: 10px; left: 20px;

  • Answered by AI
  • Q5. Box model in css
  • Ans. 

    Box model in CSS refers to the way elements are rendered on a webpage, including content, padding, border, and margin.

    • The box model consists of content, padding, border, and margin.

    • Content is the actual content of the element.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding.

    • Margin is the space outside the border.

    • You can adjust the size of each part of the box model u...

  • Answered by AI
  • Q6. Semantic tags in html
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q7. Display properties
  • Ans. 

    Display properties are used in CSS to control the layout and appearance of elements on a webpage.

    • Display property determines how an element is displayed on the page

    • Common values include 'block', 'inline', 'inline-block', 'flex', 'grid', 'none'

    • Example: display: block; will make the element a block-level element

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

(3 Questions)

  • Q1. What is Flexbox in css
  • Ans. 

    Flexbox is a layout model in CSS that allows for the design of complex responsive layouts with a more efficient and predictable way.

    • Flexbox is used to create flexible and responsive layouts.

    • It allows for easy alignment and distribution of space among items in a container.

    • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

    • Example: display: flex; justify-content: center; alig...

  • Answered by AI
  • Q2. Box sizing difference and scenario
  • Ans. 

    Box sizing property in CSS determines how the total width and height of an element is calculated.

    • Content-box: width and height only include the content, padding and border are added on top.

    • Border-box: width and height include content, padding, and border.

    • Use content-box when you want to specify the width and height of the content area only.

    • Use border-box when you want to specify the width and height of the entire box i

  • Answered by AI
  • Q3. Bootstrap grid and flex

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well, all the best👍

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is bridge? What is the new architecture?
  • Ans. 

    Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

    • Bridge pattern allows the client code to work with different implementations of an interface independently.

    • The new architecture in front end development may include concepts like component-based architecture, state management lib...

  • Answered by AI
  • Q2. How will you optimize a react native app
  • Ans. 

    Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

    • Use code splitting to reduce initial load time

    • Optimize images and assets for smaller file sizes

    • Implement lazy loading for components that are not immediately visible

    • Minimize the use of third-party libraries and only include necessary dependencies

    • Utilize performance monitoring tools like React Native Perform

  • Answered by AI
  • Q3. What is context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q4. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. React js Basic Question
  • Q2. Coding Question Giving API to call and show in UI

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

Round duration - 100 minutes
Round difficulty - Medium

The complete test will be Audio and Video Proctored, Please be available in front of the camera throughout the test duration. Assessment login details will be sent to the candidate’s registered email id prior to assessment. The Aptitude 25 questions - 35 Minutes, English 25 questions - 30 Minutes, Technical 25 questions - 35 Minutes. Those who clear the first test would have a second test of Psychometric duration 60 Mins on the same day of the test. Shortlisted candidates would have interviews post that.

Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This round consisted of various technical questions such as questions on web technologies, databases, OOPS concepts, and coding questions.

  • Q1. 

    Binary Palindrome Check

    Given an integer N, determine whether its binary representation is a palindrome.

    Input:

    The first line contains an integer 'T' representing the number of test cases. 
    The next 'T'...
  • Ans. 

    Check if the binary representation of a given integer is a palindrome.

    • Convert the integer to binary representation.

    • Check if the binary representation is a palindrome by comparing it with its reverse.

    • Return true if it is a palindrome, false otherwise.

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

I was asked to introduce myself and about my hobbies. They were very general questions. They asked me about my strengths and weakness. In the end, they asked me would I re-locate.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Tegh Bahadur Institute of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8+ CGPANewgen Software interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Object-oriented programming, Database management system, Python, Django, Machine Learning, web technologies, Problem-solving, AptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing. 
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 6 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 8 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 9 : Be in formals with the properly ironed dress, and try to join 5 minutes early than the joining time. It will have a positive affect.

Application resume tips for other job seekers

Tip 1 : Make sure your resume fits everything into a single page. 
Tip 2 : Have at least 2 projects on your resume. 
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume. 
Tip 4 : Mention the work you have done during your internships. 
Tip 5 : Include an objective in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in 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 - Coding Test 
Round 3 - HR 

(1 Question)

  • Q1. They just check your mindset

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your coding skills and prepare well

Innominds Software Interview FAQs

How to prepare for Innominds Software Front end Developer 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 Innominds Software. The most common topics and skills that interviewers at Innominds Software expect are CSS, Javascript, Angular, Front End and HTML.
What are the top questions asked in Innominds Software Front end Developer interview?

Some of the top questions asked at the Innominds Software Front end Developer interview -

  1. 2. Simple Project in Re...read more
  2. 1. Javascript HTML CSS jquery and reactJs basic questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 336 Interviews
NeoSOFT Interview Questions
3.6
 • 263 Interviews
3i Infotech Interview Questions
3.4
 • 143 Interviews
Microland Interview Questions
3.5
 • 128 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 118 Interviews
Maveric Systems Interview Questions
3.5
 • 115 Interviews
View all
Innominds Software Front end Developer Salary
based on 18 salaries
₹3.3 L/yr - ₹6.4 L/yr
24% less than the average Front end Developer Salary in India
View more details

Innominds Software Front end Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

4.0

Salary

3.6

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
470 salaries
unlock blur

₹7.9 L/yr - ₹27.5 L/yr

Software Engineer
390 salaries
unlock blur

₹3.6 L/yr - ₹15 L/yr

Senior Engineer
217 salaries
unlock blur

₹6.4 L/yr - ₹25.1 L/yr

Associate Software Engineer
167 salaries
unlock blur

₹2.2 L/yr - ₹8.1 L/yr

Engineer
158 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Explore more salaries
Compare Innominds Software with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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