Filter interviews by
An anonymous function is a function without a name, defined using function keyword and can be assigned to a variable.
Anonymous functions are often used as callbacks or event handlers.
They can be passed as arguments to other functions.
They can be used to create closures.
Example: const add = function(a, b) { return a + b; }
Example: setTimeout(function() { console.log('Hello World!'); }, 1000);
JavaScript has 7 primitive data types: string, number, boolean, null, undefined, symbol, and bigint.
String: a sequence of characters enclosed in quotes
Number: integer or floating-point number
Boolean: true or false
Null: intentional absence of any object value
Undefined: a declared variable without a value
Symbol: a unique identifier
Bigint: an integer with arbitrary precision
visibility:hidden hides the element but still takes up space, display:none hides the element and does not take up space.
visibility:hidden keeps the element in the document flow and preserves its dimensions
display:none removes the element from the document flow and does not preserve its dimensions
visibility:hidden still allows the element to be interacted with, display:none does not
visibility:hidden can still affec...
null means absence of value while undefined means a variable has been declared but not assigned a value.
null is a value that represents no value or an empty value
undefined means a variable has been declared but not assigned a value
null is a primitive value while undefined is a type
null is explicitly set while undefined is implicit
null is falsy while undefined is also falsy
null is an object while undefined is not a...
let and var are both used for variable declaration in JavaScript, but they have some differences.
let has block scope, while var has function scope
let cannot be redeclared in the same scope, while var can
let is not hoisted, while var is
let is a relatively new addition to JavaScript (ES6), while var has been around since the beginning
CSS stands for Cascading Style Sheets. It is used to style and layout web pages.
CSS is used to add styles to HTML elements.
There are three types of CSS: inline, internal, and external.
Inline CSS is applied directly to an HTML element using the style attribute.
Internal CSS is defined in the head section of an HTML document using the style tag.
External CSS is defined in a separate file and linked to the HTML documen...
I am open to negotiation based on the job requirements and responsibilities.
I would like to know more about the job responsibilities and requirements before discussing salary.
I am looking for a fair compensation based on my skills and experience.
I am open to discussing benefits and other perks in addition to salary.
I am flexible and willing to negotiate based on the overall package offered.
Flexbox is a layout mode in CSS that allows you to create flexible and responsive layouts.
Flexbox is used to align and distribute space among items in a container.
It allows you to easily create complex layouts without using floats or positioning.
Flexbox properties include display, flex-direction, justify-content, align-items, and flex-wrap.
Example: display: flex; flex-direction: row; justify-content: space-between...
HTML is a markup language used to create the structure of web pages. HTML5 is the latest version with new features and improvements.
HTML stands for HyperText Markup Language and is used to create the structure of web pages.
HTML5 is the latest version of HTML with new features like <video>, <audio>, <canvas>, and more.
HTML5 introduced new semantic elements like <header>, <footer>, <...
I applied via LinkedIn and was interviewed in Jul 2022. There were 6 interview rounds.
I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.
Desire for professional growth: I'm looking for a role that offers more opportunities for advancement.
Seeking new challenges: I want to work on diverse projects that push my skills further, like developing complex user interfaces.
Company culture fit: I'm looking for an environment that aligns more closely with my val...
I am open to negotiation based on the job requirements and responsibilities.
I would like to know more about the job responsibilities and requirements before discussing salary.
I am looking for a fair compensation based on my skills and experience.
I am open to discussing benefits and other perks in addition to salary.
I am flexible and willing to negotiate based on the overall package offered.
I have over 5 years of experience in front-end development, focusing on responsive design and user experience.
Developed responsive web applications using HTML, CSS, and JavaScript, improving user engagement by 30%.
Collaborated with UX/UI designers to create intuitive interfaces, resulting in a 25% increase in user satisfaction scores.
Implemented performance optimization techniques, reducing page load times by 40% and e...
HTML is a markup language used to create the structure of web pages. HTML5 is the latest version with new features and improvements.
HTML stands for HyperText Markup Language and is used to create the structure of web pages.
HTML5 is the latest version of HTML with new features like <video>, <audio>, <canvas>, and more.
HTML5 introduced new semantic elements like <header>, <footer>, <nav&g...
CSS stands for Cascading Style Sheets. It is used to style and layout web pages.
CSS is used to add styles to HTML elements.
There are three types of CSS: inline, internal, and external.
Inline CSS is applied directly to an HTML element using the style attribute.
Internal CSS is defined in the head section of an HTML document using the style tag.
External CSS is defined in a separate file and linked to the HTML document usi...
visibility:hidden hides the element but still takes up space, display:none hides the element and does not take up space.
visibility:hidden keeps the element in the document flow and preserves its dimensions
display:none removes the element from the document flow and does not preserve its dimensions
visibility:hidden still allows the element to be interacted with, display:none does not
visibility:hidden can still affect the...
Flexbox is a layout mode in CSS that allows you to create flexible and responsive layouts.
Flexbox is used to align and distribute space among items in a container.
It allows you to easily create complex layouts without using floats or positioning.
Flexbox properties include display, flex-direction, justify-content, align-items, and flex-wrap.
Example: display: flex; flex-direction: row; justify-content: space-between; ali...
let and var are both used for variable declaration in JavaScript, but they have some differences.
let has block scope, while var has function scope
let cannot be redeclared in the same scope, while var can
let is not hoisted, while var is
let is a relatively new addition to JavaScript (ES6), while var has been around since the beginning
JavaScript has 7 primitive data types: string, number, boolean, null, undefined, symbol, and bigint.
String: a sequence of characters enclosed in quotes
Number: integer or floating-point number
Boolean: true or false
Null: intentional absence of any object value
Undefined: a declared variable without a value
Symbol: a unique identifier
Bigint: an integer with arbitrary precision
null means absence of value while undefined means a variable has been declared but not assigned a value.
null is a value that represents no value or an empty value
undefined means a variable has been declared but not assigned a value
null is a primitive value while undefined is a type
null is explicitly set while undefined is implicit
null is falsy while undefined is also falsy
null is an object while undefined is not an obj...
An anonymous function is a function without a name, defined using function keyword and can be assigned to a variable.
Anonymous functions are often used as callbacks or event handlers.
They can be passed as arguments to other functions.
They can be used to create closures.
Example: const add = function(a, b) { return a + b; }
Example: setTimeout(function() { console.log('Hello World!'); }, 1000);
One home page with 10 section and one mailer template
Top trending discussions
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 applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.
I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.
Clone a linked list with random pointers.
Create a new node for each node in the original list.
Store the mapping between the original and cloned nodes in a hash table.
Traverse the original list again and set the random pointers in the cloned list using the hash table.
Return the head of the cloned list.
I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.
This question involves creating a program using HTML to demonstrate web development skills.
Understand the structure of an HTML document: <html>, <head>, <body>.
Use semantic HTML elements like <header>, <footer>, <article> for better accessibility.
Incorporate CSS for styling and JavaScript for interactivity.
Example: Create a simple webpage with a title, a paragraph, and a button that ...
I appeared for an interview in Feb 2025, where I was asked the following questions.
I have over 5 years of experience in software development, specializing in web applications and cloud technologies.
Developed a full-stack web application using React and Node.js, improving user engagement by 30%.
Led a team of 4 developers in creating a microservices architecture for a scalable e-commerce platform.
Implemented CI/CD pipelines using Jenkins and Docker, reducing deployment time by 50%.
Worked with Agile met...
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 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 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...
based on 1 interview experience
Difficulty level
Duration
PHP Developer
10
salaries
| ₹2 L/yr - ₹3.3 L/yr |
Web Designer
8
salaries
| ₹2 L/yr - ₹4.3 L/yr |
Project Manager
7
salaries
| ₹3.5 L/yr - ₹7.2 L/yr |
SEO Executive
6
salaries
| ₹1.9 L/yr - ₹3.3 L/yr |
Android Developer
5
salaries
| ₹4 L/yr - ₹5 L/yr |
Amazon Sellers Services
Primus Global Technologies
GAMMON INDIA
Magneti Marelli Motherson Auto System