Find Interview Questions for Top Companies
Sarla Technologies Pvt Ltd Interview Questions and Answers
Ques:- How do you print the grid?
Right Answer:
To print the grid in Photoshop, go to the "View" menu, select "Show," and then choose "Grid." After that, go to "File," select "Print," and ensure the grid is visible in the print preview before printing.
Ques:- How do I create a link that opens a new window?
Right Answer:
To create a link that opens a new window, use the following HTML code:

```html
<a href="https://www.example.com" target="_blank">Open Example</a>
```
Ques:- What is contextual selector?
Right Answer:
A contextual selector in CSS is a selector that targets elements based on their relationship to other elements in the document hierarchy. For example, `div p` selects all `<p>` elements that are inside a `<div>`.
Ques:- Document Style Semantics and Specification Language (DSSSL)?
Right Answer:
Document Style Semantics and Specification Language (DSSSL) is a language used for specifying the style and formatting of documents written in SGML (Standard Generalized Markup Language) and XML. It allows for the separation of content from presentation, enabling the transformation and rendering of documents in various formats.
Ques:- What are event bubbling and event delegation in JavaScript
Right Answer:
Event bubbling is a JavaScript event propagation method where an event starts from the target element and bubbles up to its ancestors in the DOM hierarchy. Event delegation is a technique that involves attaching a single event listener to a parent element to manage events for multiple child elements, leveraging event bubbling to handle events efficiently.
Ques:- What are semantic HTML elements and why are they important
Right Answer:
Semantic HTML elements are tags that clearly describe their meaning in a human- and machine-readable way, such as `<header>`, `<article>`, `<footer>`, and `<section>`. They are important because they improve accessibility, enhance SEO, and make the structure of the web page clearer for developers and browsers.
Ques:- What is the difference between var let and const in JavaScript
Right Answer:
`var` is function-scoped or globally-scoped and can be re-declared and updated. `let` is block-scoped, can be updated but not re-declared in the same scope. `const` is also block-scoped, cannot be updated or re-declared, and must be initialized at the time of declaration.
Ques:- What is the difference between HTML and HTML5
Right Answer:
HTML5 is the latest version of HTML, which includes new features such as native support for audio and video, new semantic elements (like `<article>`, `<section>`, and `<header>`), improved parsing rules, and better support for web applications with APIs like local storage and canvas. HTML, on the other hand, refers to earlier versions that lack these enhancements.
Ques:- What is a single page application SPA
Right Answer:
A Single Page Application (SPA) is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app, without requiring a full page reload.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users