Filter interviews by
Hidden input type is used during form submission
is used to include data in form submission without displaying it to the user
Commonly used for passing values like session tokens or tracking information
Use window.location.search or URLSearchParams to get URL params in JavaScript
Use window.location.search to get the query string portion of the URL
Use URLSearchParams to parse and extract individual parameters from the query string
Example: const params = new URLSearchParams(window.location.search); const paramValue = params.get('paramName');
To add a background image, use CSS background-image property.
Create a CSS class or ID for the element you want to add the background image to.
Use the background-image property to specify the URL of the image.
Set the background-size property to cover or contain the element.
Example: .container { background-image: url('image.jpg'); background-size: cover; }
Flex is one-dimensional layout while Grid is two-dimensional layout.
Flex is used for creating flexible and responsive layouts.
Grid is used for creating complex and structured layouts.
Flex is best suited for small-scale layouts while Grid is best suited for large-scale layouts.
Flex is easier to learn and implement while Grid requires more advanced knowledge.
Flex is supported by older browsers while Grid has limited...
To center 3 divs vertically and horizontally, use flexbox and align-items/justify-content properties.
Wrap the 3 divs in a parent container
Set the parent container's display property to flex
Set the parent container's align-items and justify-content properties to center
Position sets an element's position relative to its parent, while relative sets an element's position relative to its normal position.
Position: sets an element's position relative to its parent container
Relative: sets an element's position relative to its normal position
Positioned elements are taken out of the normal flow of the document
Relative elements are still in the normal flow of the document
Positioned eleme...
Block elements take up the full width available, while inline-block elements only take up as much width as necessary.
Block elements start on a new line and take up the full width available (e.g. <div>).
Inline-block elements do not start on a new line and only take up as much width as necessary (e.g. <span>).
Block elements can have margins and padding applied to all four sides, while inline-block elemen...
I applied via Referral and was interviewed in Jul 2023. There were 3 interview rounds.
The aptitude test duration was 1 hour. In this test, the basic question of HTML CSS was asked for example what is the difference between div and span, what is the CSS box model and some javascript logic question. Overall the aptitude test was easy if know the HTML CSS very well.
The assignment will be given to you mostly, like creating a landing page using pure HTML and CSS. No bootstrap or any other frameworks. If you are applying for a different role other than the frontend then the assignment will be different.
To center 3 divs vertically and horizontally, use flexbox and align-items/justify-content properties.
Wrap the 3 divs in a parent container
Set the parent container's display property to flex
Set the parent container's align-items and justify-content properties to center
Position sets an element's position relative to its parent, while relative sets an element's position relative to its normal position.
Position: sets an element's position relative to its parent container
Relative: sets an element's position relative to its normal position
Positioned elements are taken out of the normal flow of the document
Relative elements are still in the normal flow of the document
Positioned elements c...
Block elements take up the full width available, while inline-block elements only take up as much width as necessary.
Block elements start on a new line and take up the full width available (e.g. <div>).
Inline-block elements do not start on a new line and only take up as much width as necessary (e.g. <span>).
Block elements can have margins and padding applied to all four sides, while inline-block elements on...
Flex is one-dimensional layout while Grid is two-dimensional layout.
Flex is used for creating flexible and responsive layouts.
Grid is used for creating complex and structured layouts.
Flex is best suited for small-scale layouts while Grid is best suited for large-scale layouts.
Flex is easier to learn and implement while Grid requires more advanced knowledge.
Flex is supported by older browsers while Grid has limited supp...
To add a background image, use CSS background-image property.
Create a CSS class or ID for the element you want to add the background image to.
Use the background-image property to specify the URL of the image.
Set the background-size property to cover or contain the element.
Example: .container { background-image: url('image.jpg'); background-size: cover; }
I applied via Company Website and was interviewed before Aug 2023. There were 3 interview rounds.
Use window.location.search or URLSearchParams to get URL params in JavaScript
Use window.location.search to get the query string portion of the URL
Use URLSearchParams to parse and extract individual parameters from the query string
Example: const params = new URLSearchParams(window.location.search); const paramValue = params.get('paramName');
Hidden input type is used during form submission
is used to include data in form submission without displaying it to the user
Commonly used for passing values like session tokens or tracking information
To relicate a design layout using HTML, CSS, Javascript and make it responsive
Top trending discussions
I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.
posted on 20 Feb 2024
Dsa with medium leetcode questions
Implementing an LRU cache with optimization techniques for efficient data storage and retrieval.
Use a doubly linked list to keep track of the most recently used items
Implement a hash map for fast lookups and updates
Optimize by using a combination of both data structures for efficient cache management
The first round is aptitude round it is basically on aptitude, reasoning
They give some mid level dsa questions
I appeared for an interview before Jul 2024, where I was asked the following questions.
I motivate team members by fostering collaboration, recognizing achievements, and encouraging personal growth.
Encourage open communication: Create an environment where team members feel comfortable sharing ideas and feedback.
Recognize achievements: Celebrate both small wins and major milestones to boost morale and motivation.
Set clear goals: Help team members understand their roles and how they contribute to the larger...
I appeared for an interview before Jun 2024, where I was asked the following questions.
I have over 5 years of experience in software development, specializing in web applications and agile methodologies.
Developed a full-stack web application using React and Node.js for an e-commerce platform, improving user engagement by 30%.
Led a team of 4 developers in an agile environment, successfully delivering projects on time and within budget.
Implemented RESTful APIs that enhanced data retrieval speed by 25%, opt...
My ideal job is one that fosters creativity, collaboration, and continuous learning while making a positive impact through technology.
A collaborative environment where team members share ideas and support each other, like in Agile development teams.
Opportunities for continuous learning, such as attending workshops or conferences to stay updated on the latest technologies.
Projects that have a meaningful impact, like dev...
I appeared for an interview in Dec 2024, where I was asked the following questions.
I am a passionate software developer with a strong background in full-stack development and a love for problem-solving.
Experience in JavaScript frameworks like React and Angular, building responsive web applications.
Proficient in backend technologies such as Node.js and Express, creating RESTful APIs.
Strong understanding of databases, both SQL (PostgreSQL) and NoSQL (MongoDB), for data management.
Worked on a team proje...
I was inspired by the opportunity to innovate and contribute to impactful projects in a collaborative environment.
Passion for technology: I've always been fascinated by how software can solve real-world problems, like developing an app that helps users track their health.
Alignment with company values: Your commitment to sustainability resonates with my personal values, and I want to be part of a team that makes a diffe...
The struct keyword is used in programming languages to define a user-defined data type that contains multiple variables of different types.
Structs are used to group related data together.
They can have different types of variables, including other structs.
Structs can be used to create complex data structures.
They are commonly used in object-oriented programming languages.
The class keyword is used in object-oriented programming to define a blueprint for creating objects.
The class keyword is used in languages like Java, C++, and Python.
It allows the programmer to define the properties and behaviors of an object.
Objects created from a class are called instances.
Classes can have attributes (variables) and methods (functions).
Inheritance allows classes to inherit properties and behaviors fr...
based on 3 interview experiences
Difficulty level
Duration
based on 1 review
Rating in categories
Web Developer
7
salaries
| ₹1.4 L/yr - ₹4 L/yr |
Front end Developer
6
salaries
| ₹2 L/yr - ₹4.2 L/yr |
Software Developer
4
salaries
| ₹1.8 L/yr - ₹3 L/yr |
Senior Web Developer Team Lead
4
salaries
| ₹4.2 L/yr - ₹6 L/yr |
Web Designer
3
salaries
| ₹1.8 L/yr - ₹4 L/yr |
Amazon Sellers Services
Primus Global Technologies
GAMMON INDIA
Magneti Marelli Motherson Auto System