Code Monkey home page Code Monkey logo

banki's Introduction

This repository contains all answers to BANKI questions

Behavioral Questions

Technical Questions

HTML

  1. What does a doctype do?

    Doctype HTML is a declaration that tells the browser what version of HTML the document is written in. This declaration appears as the very first line in an HTML file. This ensures that the web page is parsed the same way by different web browsers. source: geeksforgeeks.org

  2. How do you serve a page with content in multiple languages?

    You can use . To change the language, just simply set the lang attribute. We can define it anywhere in the document, such as in the body, in the paragraph, in the heading, or in the span tag. But the best practice is to set the lang in the span tag. source: mdn

CSS

  1. What is CSS selector specificity and how does it work?

    Specificity is the means by which browsers decide which CSS property values are the most relevant to an element and, therefore, will be applied. If two CSS selectors apply to the same element, the one with higher specificity is used. source: freecodecamp.org

    • Element and pseudo-element selectors have the lowest specificity. In the specificity weight system, they have a value of 1.
    • Classes, attributes and pseudo classes have higher specificity than elements and have a value of 10.
    • ID selectors which are used to target an element using element's ID have a value of 100.
    • Inline styles which can be applied directly on the element in the HTML document has the highest .specificity with a value of 1000.
    • Finally applying !important to the property value of any selector makes it the value that will be applied to the element. This happens regardless of the rank of the selector on the Specificity hierarchy.
  2. What's the difference between "resetting" and "normalizing" CSS? Which would you choose, and why?

Javascript

Javascript General

Node

CS Theory

Questions to ask interviewer

banki's People

Contributors

poornimapk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.