Find Interview Questions for Top Companies
EGain Communications Interview Questions and Answers
Ques:- What is the use of Analyzing the tables?
Right Answer:
Analyzing tables helps optimize query performance by updating statistics about the data distribution, which the SQL Server query optimizer uses to create efficient execution plans.
Ques:- Write classes/methods to calculate the totallength of a set of lines given the start and end points taking into account overlapping.E.g.Line 1 start: -1.4, end: 3.2 Line 2start: 2.9, end: 4.1etc..Total length would be:line 1 length = 4.6 line 2 length =1.2, but as line 2 overlaps line 1 by 0.3, therefore length of set is 5.5(rather than 5.8).
Ques:- What is imported Style Sheet? How to link?
Right Answer:
An imported style sheet is a CSS file that is included in another CSS file using the `@import` rule. To link it, you can use the following syntax in your CSS file:

```css
@import url("styles.css");
```

Alternatively, you can link a CSS file directly in an HTML document using the `<link>` tag:

```html
<link rel="stylesheet" href="styles.css">
```
Ques:- What is the difference between JPEG file and GIF file?
Right Answer:
JPEG files are best for photographs and support millions of colors, but they use lossy compression, which can reduce image quality. GIF files are better for simple graphics and animations, support only 256 colors, and use lossless compression, preserving image quality.
Ques:- Why do style sheets exist?
Right Answer:
Style sheets exist to separate content from presentation, allowing for consistent styling across multiple pages, easier maintenance, and improved loading times.
Ques:- How can I specify two different sets of link colors?
Right Answer:
You can specify two different sets of link colors using CSS by targeting different states of the link. For example:

```css
a {
color: blue; /* Default link color */
}

a:hover {
color: red; /* Color when hovered */
}
```

You can also use classes to define different sets:

```css
.link-set-1 a {
color: green; /* First set color */
}

.link-set-2 a {
color: orange; /* Second set color */
}
```
Ques:- What is the diffrence between HTML & DHTML…?
Right Answer:
HTML (HyperText Markup Language) is a static markup language used to create the structure of web pages, while DHTML (Dynamic HTML) is an extension of HTML that allows for dynamic changes to the content and layout of a web page using a combination of HTML, CSS, and JavaScript.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

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