• slot gacor 2024slot danaslot danaslot deposit pulsaslot deposit pulsasigma168slot gacor terbaik
  • Best Software Training in Kolkata and India with Placement - FULL STACK DEVELOPER
    contact@aictech.co.in +91 9051568753
    February 19, 2024 - BY Admin

    FULL STACK DEVELOPER

    Full-stack developers are like web experts who can create and manage entire websites. This article contains many most asked questions and answers you might face in interviews for such jobs. It covers all the skills you should have such as HTML, CSS, JavaScript, GitHub, Node.js, MongoDB, PHP, Java, Python, and common interview questions.

    Whether you’re experienced, or a fresher this article is a go-to guide to crack interviews for Full Stack Developer roles. This article is easy to understand, up-to-date, and very informative. Reading it can boost your chances of nailing your next dream interview.

    Q1. What is an Iframe in HTML?
    The iframe in HTML stands for Inline Frame. The ” iframe ” tag defines a rectangular region within the document in which the browser can display a separate document, including scrollbars and borders.

    Q2. What are Meta Tags and what are its uses?
    Meta Tag(<meta>) is an HTML component that gives the metadata about an HTML document. MetaData can be characterized as data that gives the data of different information or basic information about information. It is an empty tag, for example, it just has an initial tag and no end tag. They are always present inside the <Head> tag and are utilized to portray Page portrayals, Certain Keywords, Author of the Document, viewport settings, determining character sets, and so on.

    Syntax : head>

       <meta attribute-name = "value"/>
    </head>

    Attributes: The following attributes with their values are described below:

    • name: This attribute is used for indicating the character encoding for the HTML Document.
    • http-equiv: This attribute is used to get the HTTP response message header.
    • content: This attribute is used to specify property value.
    • charset: This is used for indicating the character encoding for the HTML Document.

    Q3. What is the difference between properties and attributes in HTML?

    AttributeProperty
    Attributes are defined by HTML.Properties are defined by the DOM.
    The value of an attribute is constant.The value of a property is variable.


    These are used to initialize the DOM properties. After initialization, the job is finish. 
     




    No such job is finisheddefined.

    Explain APIs Available in HTML5
    API stands for Application Programming Interface. An API is a set of pre-built programs that can be used with the help of JavaScript. APIs are used to implement already written code to fulfill the needs of the project you are working on.

    HTML Geolocation API: The Geolocation API is used to get the current location of the user or the page visitor.


    HTML Drag and Drop API: Drag and Drop is a common feature nowadays, where you can drag an item from one place and drop it in another.

    Syntax: To use drag and drop first you have to make the element draggable as shown below:

    <div draggable="true">
    //content of the element
    </div>

    HTML Web Storage API: HTML web storage API is used to store the data on the web browser. Early, the data was stored in the form of cookies that can store a small amount of data and cannot be transferred further to the server. But, HTML5 introduces us to the Web Storage API that can store large data as compared to cookies and can be transferred to the server. Using this API for storing data is more secure than using cookies.

     How to align two elements left and right using tailwind CSS ?
    You can easily float the elements to the left and right using Tailwind CSS. This can be done using either tailwind flex or flow-root classes.

    Classes used:

    • flow-root: This class quickly clears floated content within a container by adding a flow-root utility.
    • position: This is used for controlling the placement of positioned elements.

     What is the purpose of the not-sr-only class in Tailwind CSS?
    This class accepts lots of value in tailwind CSS in which all the properties are covered in class form. This class is used to improving accessibility with screen readers. 

    Screen Readers classes:

    • sr-only: This class is used to hide an element visually without hiding it from screen readers
    • not-sr-only: This class is used to undo the sr-only class effect.

    Syntax:

    <svg class="sr-only|not-sr-only">...</svg>

    Difference between double equal vs triple equal JavaScript

    • Double equal: The double equal(‘==’) operator tests for abstract equality i.e. it does the necessary type conversions before doing the equality comparison.
    • Triple equal: The triple equal(‘===’) operator tests for strict equality i.e it will not do the type conversion hence if the two values are not of the same type, when compared, it will return false. 

     What are closures in JavaScript?
    A closure is a feature of JavaScript that allows inner functions to access the outer scope of a function. Closure helps in binding a function to its outer boundary and is created automatically whenever a function is created.