Join Regular Classroom : Visit ClassroomTech

web dev

ReactJS Interview Questions – Beginner Level | Codewindow.in

1. What is Node.js? React is an open-source frontend JavaScript library which is used for building user interfaces especially for single page applications. It is used for handling view layer for web and mobile apps. React was created by Jordan Walke, a software engineer working for Facebook. React was first deployed on Facebook’s News Feed […]

ReactJS Interview Questions – Beginner Level | Codewindow.in Read More »

NodeJS Interview Questions – Beginner Level | Codewindow.in

1. What is Node.js? Node.js is an open-source server side runtime environment built on Chrome’s V8 JavaScript engine. It provides an event driven, non-blocking (asynchronous) I/O and cross-platform runtime environment for building highly scalable server-side applications using JavaScript. 2. What are the benefits of using Node.js? From a web server development perspective Node has a

NodeJS Interview Questions – Beginner Level | Codewindow.in Read More »

JavaScript Interview Questions – Advanced Level | Codewindow.in

1. What is event bubbling? Event bubbling is a type of event propagation where the event first triggers on the innermost target element, and then successively triggers on the ancestors (parents) of the target element in the same nesting hierarchy till it reaches the outermost DOM element. Example: If you click on EM, the handler

JavaScript Interview Questions – Advanced Level | Codewindow.in Read More »

JavaScript Interview Questions – Intermediate Level | Codewindow.in

1. What is Hoisting in JavaScript? /*Example 01: Variable Hoisting*/ console.log(message); // output : undefined var message = "The variable Has been hoisted"; /*The above code looks like as below to the interpreter,*/ var message; console.log(message); message = "The variable Has been hoisted"; /*Example 02: Function Hoisting*/ function hoist() { a = 20; var b

JavaScript Interview Questions – Intermediate Level | Codewindow.in Read More »

JavaScript Interview Questions – Beginner Level | Codewindow.in

1. What is difference between document.getElementById() and document.querySelector()? document.getElementById(): Returns an element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they’re a useful way to get access to a specific element quickly.element = document.getElementById(id);document.querySelector(): Returns the first matching Element node within the

JavaScript Interview Questions – Beginner Level | Codewindow.in Read More »

CSS Interview Questions – Intermediate Level | Codewindow.in

1. What are the CSS frameworks? CSS frameworks are the preplanned libraries which make easy and more standard compliant web page styling. The frequently used CSS frameworks are: –BootstrapFoundationSemantic UIGumbyUlkit 2. What are the several forms of CSS? Ascending by selectors is not possibleLimitations of vertical controlNo expressionsNo column declarationPseudo-class not controlled by dynamic behaviorRules,

CSS Interview Questions – Intermediate Level | Codewindow.in Read More »