Question:- Tell Me Something About HTTP/3?
Answer:- HTTP/3 can be defined as a major revision of the (HTTP) Hypertext Transfer Protocol, and It is a technology that underpins the transfer of data on the web. HTTP/3 runs over QUIC – It is an encrypted general-purpose transport protocol that will multiplex various streams of data on one single connection.
Question:- How To Link Images And Files On The Web?
Answer:- There are two ways of linking files and images on the Web: 1. Absolute links have the full URL, and all directory information is encoded in the link. 2. Relative links relate where the current page is to where the image or document is located.
Question:- Define Child Selectors In CSS?
Answer:- Child Selector is mainly used to match all elements that are “child” of a given element. It usually gives the relation between two elements. The element > element selector will select those elements that are the children of a specific parent.
Question:- Name The Various HTTP Request Types Supported In Restful Web Services?
Answer:- Restful web services usually support HTTP request types such as GET, POST, PUT, and DELETE. DELETE is used to remove the resource from the server. Put is used to update an existing entity. GET retrieves data from the server. POST is usually used for creating a new entity, and it is used to upload a file or submit a completed web form.
Question:- What Is Pagination?
Answer:- Pagination can be used in almost every web application to divide the returned data and display it on various pages within a single web page. Pagination includes the logic of preparing and displaying the links to the different pages. Pagination is handled client-side or server-side.
Question:- Define Type Coercion In JavaScript?
Answer:- Type Coercion is referred to as the technique of automatic or implicit conversion of values from one data type to another data type. It also includes conversion from Number to String, Boolean to Number, String to Number, etc., when various types of operators are applied to the values.
Question:- Can You Name The Property Attributes For Four Corners?
Answer:- 1. 2. 3. 4.
Question:- Define Webpack?
Answer:- The Webpack can be defined as an open-source JavaScript module bundler. Webpack will take the dependencies and will generate a dependency graph that allows the web developers to use a modular approach for web application development purposes. It is also used from the command line, or it can be configured by using a config file named webpack.
Question:- List The Components Of The CSS Box Model?
Answer:- 1. Border: It represents the padding and content around the border. 2. Content: It defines the actual content to be displayed. 3. Margin: It represents the top layer of the box element 4. Padding: It defines the empty space around the element
Question:- List The Components Of The CSS Box Model?
Answer:- 1. Border: It represents the padding and content around the border. 2. Content: It defines the actual content to be displayed. 3. Margin: It represents the top layer of the box element 4. Padding: It defines the empty space around the element
Question:- What Is DOM?
Answer:- The Document Object Model (DOM) can be defined as a cross-platform programming interface that defines HTML and XML documents as objects and nodes. It will define the logical structure of the documents and document manipulated. DOM allows the programmers to create, modify, delete the document structure, content, and style.
Question:- List The Properties Of Transitions In CSS3?
Answer:- 1. transition-delay 2. transition-duration 3. transition-property 4. transition-timing-function
Question:- Define Media Queries In CSS3?
Answer:- Media queries in CSS define styles in CSS that are responsive based on the different shapes and sizes of the viewing window.
Question:- What Is Cross-Site Scripting (XSS)?
Answer:- XSS means Cross site scripting can be defined as a common attack vector that will inject malicious code into the vulnerable web application. Stored XSS, also called persistent XSS, is the more damaging. It will occur when we inject a malicious script directly into a vulnerable web application.
