Prepare for technical interviews in the IT industry - Frontend, React, JavaScript, HTML or CSS. Answer to the key questions and be successful in IT. Learn questions frequently asked on technical interviews in biggest companies across the world.
The questions below were asked in a preliminary check before the actual interview. The role itself was for a “JavaScript Engineer”. This particular set of questions is from a job I applied to over a year ago. I’ve chosen to share them here because I think readers of this blog would ...
Question: Does css properties are case sensitive? Answer: no. Question: Why css selectors mixed up with cases don't apply the styles? Answer: because, html ID and classes are case sensitive. Question: Does margin-top or margin-bottom has effect on inline element? Answer: no. Question: Doe...
jQuery is built on top of JavaScript and uses its methods under the hood to make DOM manipulation easier, at the cost of some performance overhead. It is a good idea to remember that jQuery is not always better than plain old JavaScript. Always consider whether using jQuery really provides ...
Interview question - Order Process Automation An ecommerce transaction starts on an instance of SAP Hybris at the frontend (browser-based). The order then flows through a bespoke SQL Server based Data Hub, into MS Dynamics 365 (F&O), where the order orchestrated. The flow also includes several...
1.1.20. HTML全局属性global-attribute有哪些accesskey:设置快捷键,提供快速访问元素如aaa在windows下的firefox中按alt + shift + a可激活元素 class:为元素设置类标识,多个类名用空格分开,CSS和javascript可通过class属性获取元素 contenteditable: 指定元素内容是否可编辑 contextmenu: 自定义鼠标右键弹出菜单内容 data-...
This repo will contain 500 frontend interview questions which will have HTML, CSS, Javascript & React questions. I will add not any question in which we have to write code, just theory questions.I am myself learning 5 questions a day and will add those 5 questions a day in this repo ...
CSS controls colors so coloraccessibilityis relevant.Focus stylesare also important and directly controlled by CSS. There is a lot more accessibility stuff that is related to HTML and JavaScript, so mentioning that stuff is great, but I think it’s interesting to target the question solely on ...
Create a webpage that shows a greeting message to the user. Use HTML and CSS to structure and style it. You can add a JavaScript function to change the message based on the time of the day. <head> <title>Simple Greeting Page</title> <style> body { font-family: Arial, sans-serif...
JSP is extension of Servlet technology to help developers create dynamic pages with HTML like syntax. We can create user views in servlet also but the code will become very ugly and error-prone. Also, most of the elements on a web page are static, so the JSP page is more suitable for ...