0% found this document useful (0 votes)
9 views

1.5 Top 300 JS HTML Interview Questions

The document outlines a comprehensive curriculum for learning JavaScript, covering fundamental topics such as variables, datatypes, operators, conditions, arrays, loops, functions, and asynchronous programming. It includes advanced concepts like DOM manipulation, error handling, object-oriented programming, and security practices. Additionally, it features a series of questions and coding challenges to test understanding and application of the material.

Uploaded by

adir.aiub26
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

1.5 Top 300 JS HTML Interview Questions

The document outlines a comprehensive curriculum for learning JavaScript, covering fundamental topics such as variables, datatypes, operators, conditions, arrays, loops, functions, and asynchronous programming. It includes advanced concepts like DOM manipulation, error handling, object-oriented programming, and security practices. Additionally, it features a series of questions and coding challenges to test understanding and application of the material.

Uploaded by

adir.aiub26
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 42

Topic

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Basics

Variables & Datatypes

Variables & Datatypes

Variables & Datatypes

Variables & Datatypes

Variables & Datatypes

Variables & Datatypes


Operators & Conditions

Operators & Conditions

Operators & Conditions

Operators & Conditions

Operators & Conditions

Operators & Conditions

Operators & Conditions

Operators & Conditions

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Arrays

Loops

Loops

Loops

Loops

Loops

Loops
Loops

Loops

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Functions

Strings

Strings

Strings

Strings

Strings

Strings

DOM

DOM

DOM

DOM

DOM
DOM

DOM

DOM

DOM

DOM

DOM

Error Handling

Error Handling

Error Handling

Error Handling

Error Handling

Error Handling

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Objects

Events

Events

Events
Events

Events

Events

Events

Events

Events

Events

Closures

Closures

Closures

Closures

Closures

Closures

Closures

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous programming – Basics

Asynchronous Programming - Promises

Asynchronous Programming - Promises

Asynchronous Programming - Promises

Asynchronous Programming - Promises

Asynchronous Programming - Promises

Asynchronous Programming - Promises


Asynchronous Programming – Async Await

Asynchronous Programming – Async Await

Asynchronous Programming – Async Await

Asynchronous Programming – Async Await

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Browser APIs & Web Storage

Classes, Constructors, this & Inheritance

Classes, Constructors, this & Inheritance

Classes, Constructors, this & Inheritance

Classes, Constructors, this & Inheritance

Classes, Constructors, this & Inheritance

ECMAScript & Modules

ECMAScript & Modules

ECMAScript & Modules

ECMAScript & Modules

ECMAScript & Modules

ECMAScript & Modules

ECMAScript & Modules

Security & Performance


Security & Performance

Security & Performance

Security & Performance

Security & Performance

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Tricky Short Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions


Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Scenario based – Feature Development Questions

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding

Coding
Coding
Question

Q. What is JavaScript? What is the role of JavaScript engine?

Q. What are client side and server side?

Q. What are variables? What is the difference between var, let, and const ?

Q. What are some important string operations in JS?

Q. What is DOM? What is the difference between HTML and DOM?

Q. What are selectors in JS?

Q. What is the difference between getElementById, getElementsByClassName and getElementsByTagNam

Q. What are data types in JS?

Q. What are operators? What are the types of operators in JS?

Q. What are the types of conditions statements in JS?

Q. What is a loop? What are the types of loops in JS?

Q. What are Functions in JS? What are the types of function?

Q. What are Arrow Functions in JS? What is it use?

Q. What are Arrays in JS? How to get, add & remove elements from arrays?

Q. What are Objects in JS?

Q. What is Scope in JavaScript?

Q. What is Hoisting in JavaScript?

Q. What is Error Handling in JS?

Q. What is JSON?

Q. What is asynchronous programming in JS? What is its use?

Q. What are variables? What is the difference between var, let, and const ?

Q. What are data types in JS?

Q. What is the difference between primitive and non-primitive data types?

Q. What is the difference between null and undefined in JS?

Q. What is the use of typeof operator?

Q. What is type coercion in JS?


Q. What are operators? What are the types of operators in JS?

Q. What is the difference between unary, binary, and ternary operators?

Q. What is short-circuit evaluation in JS?

Q. What is operator precedence?

Q. What are the types of conditions statements in JS?

Q. When to use which type of conditions statements in real applications?

Q. What is the difference between == and ===?

Q. What is the difference between Spread and Rest operator in JS?

Q. What are Arrays in JS? How to get, add & remove elements from arrays?

Q. What is the indexOf() method of an Array?

Q. What is the difference between find() and filter() methods of an Array?

Q. What is the slice() method of an Array?

Q. What is the difference between push() and concat() methods of an Array?

Q. What is the difference between pop() and shift() methods of an Array?

Q. What is the splice() method of an Array?

Q. What is the difference between the slice() and splice() methods of an Array?

Q. What is the difference map() and forEach() array methods of an Array?

Q. How to sort and reverse an array?

Q. What is Array Destructuring in JS?

Q. What are array-like objects In JS?

Q. How to convert an array-like object into an array?

Q. What is a loop? What are the types of loops in JS?

Q. What is the difference between while and for loops?

Q. What is the difference between while and do-while loops?

Q. What is the difference between break and continue statement?

Q. What is the difference between for and for…of loop in JS?

Q. What is the difference between for…of and for…in loop?


Q. What is forEach method? Compare it with for…of and for…in loop?

Q. When to use for…of loop and when to use forEach method in applications?

Q. What are Functions in JS? What are the types of function?

Q. What is the difference between named and anonymous functions? When to use what in applications?

Q. What is function expression in JS?

Q. What are Arrow Functions in JS? What is it use?

Q. What are Callback Functions? What is it use?

Q. What is Higher-order function In JS?

Q. What is the difference between arguments and parameters?

Q. In how many ways can you pass arguments to a function?

Q. How do you use default parameters in a function?

Q. What is the use of event handling in JS?

Q. What are First-Class functions in JS?

Q. What are Pure and Impure functions in JS?

Q. What is Function Currying in JS?

Q. What are call, apply and bind methods in JS?

Q. What is a String?

Q. What are template literals and string interpolation in strings?

Q. What is the difference between single quotes (''), double quotes ("") & backticks (``)?

Q. What are some important string operations in JS?

Q. What is string immutability?

Q. In how many ways you can concatenate strings?

Q. What is DOM? What is the difference between HTML and DOM?

Q. How do you select, modify, create and remove DOM elements?

Q. What are selectors in JS?

Q. What is the difference between getElementById, getElementsByClassName and getElementsByTagNam

Q. What is the difference between querySelector() and querySelectorAll()?


Q. What are the methods to modify elements properties and attributes?

Q. What is the difference between innerHTML and textContent?

Q. How to add and remove properties of HTML elements in the DOM using JS?

Q. How to add and remove style from HTML elements in DOM using JS?

Q. How to create new elements in DOM using JS? What is the difference between createElement() and cl

Q. What is the difference between createElement() and createTextNode()?

Q. What is Error Handling in JS?

Q. What is the role of finally block in JS?

Q. What is the purpose of the throw statement in JS?

Q. What is Error propagation in JS?

Q. What are the best practices for error handling?

Q. What are the different types of errors In JS?

Q. What are Objects in JS?

Q. In how many ways we can create an object?

Q. What is the difference between an array and an object?

Q. How do you add or modify or delete properties of an object?

Q. Explain the difference between dot notation and bracket notation?

Q. What are some common methods to iterate over the properties of an object?

Q. How do you check if a property exists in an object?

Q. How do you clone or copy an object?

Q. What is the difference between deep copy and shallow copy in JS?

Q. What is Set Object in JS?

Q. What is Map Object in JS?

Q. What is the difference between Map and Object in JS?

Q. What are Events? How are events triggered?

Q. What are the types of events in JS?

Q. What is Event Object in JS?


Q. What is Event Delegation in JS?

Q. What is Event Bubbling In JS?

Q. How can you stop event propagation or event bubbling in JS?

Q. What is Event Capturing in JS?

Q. What is the purpose of the event.preventDefault() method in JS?

Q. What is the use of "this" keyword in the context of event handling in JS?

Q. How to remove an event handler from an element in JS?

Q. Explain the concept of Lexical Scoping?

Q. What is Closure?

Q. What are the benefits of Closures?

Q. What is the concept of Encapsulation in the context of closures?

Q. What are the disadvantage or limitations of Closures?

Q. How can you release the variable references or closures from memory?

Q. What is the difference between a Regular Function and a Closure?

Q. What is asynchronous programming in JS? What is its use?

Q. What is the difference between synchronous and asynchronous programming?

Q. What are the techniques for achieving asynchronous operations in JS?

Q. What is setTimeout()? How is it used to handle asynchronous operations?

Q. What is setInterval()? How is it used to handle asynchronous operations?

Q. What is the role of callbacks in fetching API data asynchronously?

Q. What is callback hell? How can it be avoided?

Q. What are Promises in JavaScript?

Q. How to implement Promises in JavaScript?

Q. When to use Promises in real applications?

Q. What is the use of Promise.all() method?

Q. What is the use of Promise.race() method?

Q. What is the difference between Promise.all() and Promise.race()?


Q. What is the purpose of async/ await? Compare it with Promises?

Q. Explain the use of async and await keywords in JS?

Q. Can we use async keyword without await keyword and vice versa?

Q. How do you handle errors in async/ await functions?

Q. What is a window object?

Q. What are Browser APIs in JS?

Q. What is Web Storage, and its use? How many types of web storage are there?

Q. What is Local Storage? How to store, retrieve and remove data from it?

Q. What is Session Storage? How to store, retrieve and remove data from it?

Q. What is the difference between LocalStorage and SessionStorage?

Q. How much data can be stored in localStorage and sessionStorage?

Q. What are cookies? How do you create and read cookies?

Q. What is the difference between cookies and web storage?

Q. When to use cookies and when to use web storage?

Q. What are Classes in JS?

Q. What is a constructor?

Q. What are constructor functions?

Q. What is the use of this keyword?

Q. Explain the concept of prototypal inheritance?

Q. What is ES6? What are some new features introduced by it?

Q. What are Modules in JS?

Q. What is the role of export keyword?

Q. What are the advantages of modules?

Q. What is the difference between named exports and default exports?

Q. What is the difference between static and dynamic imports?

Q. What are module bundlers?

Q. What is eval() function in JS?


Q. What is XSS (Cross-Site Scripting) attack?

Q. What is SQL Injection attack?

Q. What are some best practices for security in JS?

Q. What are the best practices for improving performance in JS?

Q. How to execute a piece of code repeatedly after some fix time?

Q. How to handle asynchronous operations In JS?

Q. How to manipulate and modify CSS styles of HTML elements dynamically?

Q. How to handle errors and exceptions in your code?

Q. How to store key-value pairs & efficiently access and manipulate the data?

Q. How to iterate over elements in an array and perform a specific operation on each element?

Q. How to dynamically add or remove elements from a web page?

Q. What method is used to retrieve data from an external API?

Q. How to manage the state in a web application?

Q. How to implement a queue or a stack like data structure in JS?

Q. How do you attach an event handler to an HTML element?

Q. How to perform actions based on keyboard events in JS?

Q. How to fetch data from multiple APIs in parallel and process the results together?

Q. What are the methods to manipulate JSON data efficiently?

Q. How to get the current URL of a webpage?

Q. How do you find the length of an array in JS?

Q. How to create a copy of an array?

Q. How do you access individual characters in a string?

Q. How can you check if a string contains a specific substring?

Q. Can you modify the value of a variable captured in a Closure?

Q. How to validate user input as they type in a form?

Q. How to implement pagination for displaying large sets of data?

Q. How to implement drag-and-drop functionality for elements on a web page?


Q. How to implement a feature that allows users to search for specific items in a large dataset?

Q. How to implement a feature that allows users to perform live search suggestions as they type?

Q. How to implement a real-time chat application using JS.

Q. How to create an infinite scrolling feature using JS when a user reaches the bottom of a webpage?

Q. How to implement a toggle switch that changes the theme (light/dark mode) of a website when clicked

Q. How to use JS to dynamically update date in real time on webpage?

Q. How to prevent a form from being submitted without required fields being filled?

Q. Write a function that returns the reverse of a string?

Q. Write a function that returns the longest word in the sentence.

Q. Write a function that checks whether a given string is a palindrome or not?

Q. Write a function to remove duplicate elements from an array.

Q. Write a function that checks whether two strings are anagrams or not?

Q. Write a function that returns the number of vowels in a string.

Q. Write a function to find the largest number in an array.

Q. Write a function to check if a given number is prime or not?

Q. Write a function to calculate the factorial of a number.

Q. Write a program to remove all whitespace characters from a string.

Q. Write a function to find the sum of all elements in an array.

Q. Write a function to find the average of an array of numbers.

Q. Write a function to sort an array of numbers in ascending order.

Q. Write a function to check if a given array is sorted in ascending order or not.

Q. Write a function to merge two arrays into a single sorted array.

Q. Write a function to remove a specific element from an array.

Q. Write a function to find the second largest element in an array.

Q. Write a function to reverse the order of words in a given sentence.

Q. Write a function to find the longest common prefix among an array of strings.

Q. Write a function to find the intersection of two arrays.


Q. Write a function to calculate the Fibonacci sequence up to a given number.
Prepared? Answer Key

NO View Answer Interview Preparati on Progress


NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
2
NO View Answer 100%

NO View Answer 1 2

NO View Answer

NO View Answer
Prepared 70% - You are ready for any Interview
NO View Answer (Mark "Prepared" column YES)

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer
Interview Preparati on Progress YES

NO
Total
0
Marks rema
217
Maximum
217

2
100%

1 2

Prepared 70% - You are ready for any Interview


(Mark "Prepared" column YES)
Topic

HTML Basics & D

HTML Basics & D

HTML Basics & D

HTML Basics & D

HTML Basics & D

HTML Basics & D

HTML Basics & D

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Elements &

HTML Attributes

HTML Attributes

HTML Attributes

HTML Attributes

HTML Attributes
HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Links & Nav

HTML Lists & Tab

HTML Lists & Tab

HTML Lists & Tab

HTML Lists & Tab

HTML Lists & Tab

HTML Images & M

HTML Images & M

HTML Images & M

HTML Images & M

HTML Images & M

HTML Forms

HTML Forms

HTML Forms

HTML Forms

HTML Forms

HTML Forms

HTML Forms

Best Practices,
Best Practices,

Best Practices,

Best Practices,

Best Practices,

HTML Responsive

HTML Responsive

HTML Responsive

HTML Responsive

HTML Responsive

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

CSS Basics & Imp

Selectors in CSS

Selectors in CSS

Selectors in CSS

Selectors in CSS

Selectors in CSS

Selectors in CSS

Selectors in CSS

Selectors in CSS
Layout and Posit

Layout and Posit

Layout and Posit

Layout and Posit

Layout and Posit

Layout and Posit

Layout and Posit

Responsive Desig

Responsive Desig

Responsive Desig

Responsive Desig

Responsive Desig

Responsive Desig

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap

Bootstrap
Question

Q. What is HTML? Differences between HTML & HTML5? Advantages of HTML5?

Q. What is the difference between HTML and XHTML?

Q. What is the role of DOCTYPE in HTML?

Q. What if you remove <!DOCTYPE html> from your HTML?

Q. Difference between Head & Body in HTML? Where to place JS link reference?

Q. What is Title Tag in HTML? What are the 4 advantages of Title tag?

Q. What are Meta Tags? What are the 5 types of meta tags?

Q. What are HTML elements? What is the difference between Element & Tag?

Q. What are the roles and uses of the <div> element in HTML?

Q. What is the difference between <div> and <span> element?

Q. What is the role of <p>, <a>, <br>, <hr>, <em>, <img>, <input> & <button> elements?

Q. What is the role of header, main, section, footer & address elements in HTML?

Q. What is the role of Heading tags in HTML? How does it impact SEO?

Q. What is the difference between <section> & <article> elements?

Q. What are Root, Parent, Child & Nested elements?

Q. What are Empty Elements?

Q. What are Semantic Elements in HTML? Is div a semantic element?

Q. Can HTML tags be written in Uppercase?

Q. What are the 3 differences between Block-Level and Inline Elements?

Q. List all Block-Level & Inline Elements in HTML.

Q. What are HTML Attributes? What are the Types of HTML attributes?

Q. What are the Id, Style & Class attributes of an element? When to use what?

Q. What will happen if two elements have same ids?

Q. How to specify Multiple Classes for single element? What is the style precedence?

Q. What are Data Attributes in HTML?


Q. What are the 5 Types of Links in HTML?

Q. What is the difference between Absolute and Relative URLs?

Q. What is the purpose of the <nav> element in HTML?

Q. What is a Fragment Identifier in a URL?

Q. What is the purpose of the <base> element in HTML.?

Q. How do you add an external stylesheet in your HTML?

Q. How do you open a link in a new tab?

Q. How do you create an Email Link?

Q. What are the different Types of Lists in HTML?

Q. What is a Nested List in HTML?

Q. What are table, tr, th, td elements? What are table advantages & disadvantages?

Q. What is the colspan attribute in HTML?

Q. What is the best way to add a border to a table, column and cell?

Q. How to embed an Image in HTML? Why alt attribute is so important?

Q. What are the difference between JPEG and PNG image formats?

Q. How to embed Video element in HTML? Why we need multiple source elements?

Q. How to embed Audio element in HTML?

Q. What are the Autoplay & Loop attributes in multimedia elements?

Q. What are HTML Forms and what are its advantages?

Q. What are HTML Form Elements and their Main Attributes?

Q. How to Validate for empty input field in form?

Q. What is the role of the <textarea> element in a form?

Q. What are the Types of Input elements in a form?

Q. How to create radio buttons and checkboxes? How to group them?

Q. What is the purpose of the <select> element in a form?

Q. What are top 10 Best Practices for writing HTML code?


Q. What is HTML5 Boilerplate code?

Q. How do you optimize an HTML website for Performance?

Q. What is SEO? What are 5 HTML Best Practices for SEO?

Q. What are the 5 steps required for HTML website deployment?

Q. What is Responsive Design?

Q. What are the top 3 things required to make a website Responsive in HTML?

Q. What are some Responsive Design Frameworks for HTML & CSS?

Q. What are HTML Entities? How do you display special characters in HTML?

Q. What are the Top 5 Emerging Trends in HTML development?

Q. What is CSS? What are the 5 ways to Implement CSS in HTML?

Q. What is Inline Style in CSS? When to use it in real applications?

Q. What is Internal Stylesheet in CSS? When to use it in real applications?

Q. What is External Stylesheet in CSS? When to use it in real applications?

Q. What are the 5 advantages of external stylesheet?

Q. How do you Include CSS in a webpage or HTML?

Q. How to implement CSS using @import rule?

Q. What is CSS Preprocessors? What is SCSS?

Q. What are the 3 Types of CSS Preprocessors?

Q. What are Selectors in CSS? How many types of selectors are there?

Q. Difference between ID, Element & Class selector? When to use which selector?

Q. What are Universal selectors?

Q. What are the Descendant Selectors in CSS?

Q. What are Attribute Selectors in CSS? What are it’s 5 Types?

Q. What are Child Selectors in CSS?

Q. How Child Selector is different from Descendent selectors?

Q. What are Pseudo-class Selector and Pseudo-element Selector?


Q. Explain the concept of the Box Model in CSS.

Q. What is the difference between Padding and Margin?

Q. What is the difference between display: inline & display: block?

Q. What is the difference between display: inline and display: inlineblock?

Q. What is z-index property in CSS? How same z-index elements will be displayed?

Q. What is the role of float property in CSS?

Q. What is the difference between position: relative/ absolute/ fixed?

Q. What is the role of meta viewport tag?

Q. What are Media Queries in CSS?

Q. What is display: flex in CSS?

Q. What is CSS Grid Layout in CSS?

Q. How can you create a Sticky Header in CSS?

Q. What are the 5 best practices for creating a Responsive Design using CSS?

Q. What is Bootstrap? What are the other 5 responsive design frameworks?

Q. What are the 5 Advantages of using Bootstrap?

Q. What are the 2 ways to include Bootstrap framework for your website.

Q. Explain the Grid System in Bootstrap?

Q. What is the difference between col-xs, col-sm, col-md, col-lg & col-xl?

Q. What are Bootstrap Components? What are Top 10 bootstrap components?

Q. What is a Bootstrap Modal component?

Q. What is a Bootstrap Navigation component?

Q. What is Bootstrap Carousel component?

Q. Explain the difference between Bootstrap's container and container-fluid?


Prepared? Answer Key

NO View Answer Interview Preparati on Progress


NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
2
NO View Answer 100%

NO View Answer 1 2

NO View Answer

NO View Answer
Prepared 70% - You are ready for any Interview
NO View Answer (Mark "Prepared" column YES)

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer

NO View Answer
Interview Preparati on Progress YES

NO
Total
0
Marks rema
100
Maximum
100

2
100%

1 2

Prepared 70% - You are ready for any Interview


(Mark "Prepared" column YES)

You might also like