Web-Technology Company Questions
Web-Technology Company Questions
Assetmonk
1. JavaScript is…….
a. Object-Oriented
b. Object-based
c. Assembly-language
d. High-level
2. “function” and “var” are known as:
a. Keywords
b. Data types
c. Declaration statements
d. Prototypes
3. Which of the following is the correct output for the following code:
int x=8;
if(x>9)
{
document.write(9);
}
else
{
document.write(x);
}
a) 9
b) 0
c) 8
d) Undefined
4. In JavaScript the x===y statement implies that:
a) Baths and y are equal in value type and reference address as well.
b) Both are x and y are equal in value only
Both are equal in the value and data type
d) Both are not same at all
5. function comparing ()
{
let x=9;
let y=9;
if(x==y)
{
return true
}
else
{
return false;
}
}
Comparing()
a. Compilation error
b. False
c. Runtime error
d. true
6. Choose the correct output from the following:
var string = "40";
var number=50;
console.log(string +number);
a. 4090
b. 90
c. 4050
d. Exception.
7. Choose the correct output for the following java script code;
function display(option)
{
return (option ? “ true”: “ false” );
}
console.log(display(true));
a. False
b. True
c. Runtime error
d. Compilation error
8. How to convert string to uppercase in javascript?
a. String.toLowerCase()
b. UpperCase.string()
c.LowerCase.string()
d.String.toUpperCase()
9. What is the output of console.log(40+20+”30”)
a. 70
b. 3060
c. 60
d.6030
10.What is array Example?
11. let num=53.7;
Console.log(Math.cell(num));
a. 53
b. 50
c. 54
d. 60
a. undefined
b.null
c. error
d.above all
15.What will be the output of the following code snippet?
(function()
{
setTimeout(()=>console.log(1),2000);
console.log(2);
setTimeout(()=>console.log(3),0);
console.log(4);
})();
a. 1 2 3 4
b. 2 3 4 1
c. 2 4 3 1
d. 4 3 2 1
16. Write Arrow Function Syntax.
17. What will be the output of following code snippet?
let sum=0;
const a=[1,2,3];
a.forEach(getSum);
print(sum);
function getSum(ele)
{
Sum+=ele;
}
a. 6
b. 1
c. 2
d. None
18. Choose the correct snippet from the following to check if the varible “a” is
not equal the null:
a. if(a!==null)
b. if(a!)
c. if(a!null)
d.if(a!=null)
COGNITIVZEN TECHNOLOGIES:=
1.What is class attribute in html?
2.What is tag and attribute in html?
3.What css ?
4. What types of lists in html?
a. False
b. Composition
c. True
d. Runtime error
4. <input> is
a. None of the above
b. All of the above
c. A format tag
d. An empty tag.
5. ES6 also known as? Select any one of the below
a. ECMAScript 2015
b. Javascript
c. ES6
d. ECMAScript 2016
6. What will be the output of the following javascript function?
<p id=”demo”></p>
<script>
function javascript()
{
//javascriptabs()method
document.getElementById(“demo”)innerHTML=math.abs(-
7.25);
}
</script>
a. -7.25
b. -7
c. 7
d. 7.25
7. Const WEBSITE_URL=”http://www.abc.com”;
WEBSITE_URL=”http://www.xyz.com”;
Console.log(WEBSITE_URL) ;
a. Error
b. None of the above
c. http://www.abc.com
d. http://www.xyz.com
Excelsoft:=
1. What is object in java script?
Infoane technical pattern:=
1. Write a javascript program to check the given string is anagram or
not?
2. Write a javascript program to check the given two arrays are equal or
not?
3. Usage of javascript?
4. Concepts of javascript?
LIT :=
1. Full of HTML?
2. How to change the text color?
3. Full form of css?
4. Which tag is used the highest heading tag?
5. What is HTML and its features?
Mizik gbbal slolutions:=
1. Explain value and types in javascript?
2. What is the difference between == and ===?
3. What are some of the advantages/disadvantages of writing javascript
code in a language that compiles to java script?
Napier Healthcare:=
1. Explain Types of css?
2. What is css?
3. Explain Css properties?
4. Why using css in html?
5. Write HTML Tags and Their uses?
Oxyloans:=
1. Choose the correct HTML tag for a large title?
a. H1
b. Heading
c. Head
d. H6
2. Which of the following is the correct syntax for referring the external
style sheet?
a. <style src=example.css>
b. <style src=”example.css”>
c. <stylesheet>example.css</stylesheet>
d. <link rel=”stylesheet” type=”text/css” href=”external.css”>
3. The Html attribute used to define the inline styles is
a. Style
b. Styles
c. Class
d. None of the above
4. The property in css used to change the backgroundcolor of an element is
a. Bgcolor
b. Color
c. Background-color
d. All of the above
5. If we want to use a nice green dotted border around an image.which css
property are we going to use?
a. Border-line
b. Border-style
c. Border-decoration
d. Border-color
Questions:=
What is pseudo class and pseudo elements?
What is I'd and class?
Difference between div and span?
Difference between wireframe and prototype?
What is flex box?
What is box modelling?
What is dom?
What is the principles and elements of design?
what are the elements of css?
explain child and adjucent selector?
diff between id and clss selector?
what is the use of div?
What is Class and I'd ?
What is Inline element and block level element?
Explain DOM?
What is Div span ?
Difference between pseudo class and pseudo element?
What is prototype?
What is inline and block element?
Difference between class and id?
Difference between visibility hidden and display none?
Which tag is used in html to get more responsive web?
Briefly explain about flexbox?
Napier:=
1. What is the output of below code
var y=1;
if(function f(){})
{
Y+=typeof f;
}
Console.log(y);
a. ReferenceError
b. Undefined
c. Function
d. Object
XRG Solutions:=
1. Explain nav bar concept?
2. What is mean by button and radius ?
3. Explain how many ways to represent color and link to the button?
Vsplash:=
1. Which HTML element is used to specify a header for a document or
section?
a. <section>
b. <top>
c. <header>
d. <head>
2. What is the correct HTML for making a drop-down?
a. <input type=”list”>
b. <input type=”dropdown”>
c. <select>
d. <list>
3. Footer>:nth-child(n){….}
<footer>
<div class=”widget widget1”>
<p>….</p>
</div>
<div class=”widget widget2”>
<div></div>
</div>
<div class=”widget widget3”>
<div class=”out”>…. </div>
</footer>
a. Yes
b. No
c. None
4. What is the correct HTML for adding a background color?
a. <body style=”background-color:yellow;”>
b. <body bg=”yellow”>
c. <background>yellow</background>
5. What is the correct HTML for making a checkbox?
a. <input type=”checkbox”>
b. <input type=”check”>
c. <check>
d. <checkbox>
6. What is the correct HTML for inserting an image?
a. <image src=”image.gif” alt=”Myimage”>
b. <img href=”image.gif” alt=”MyImage”>
c. <img src=”image.gif” alt=”MyImage”>
d. <img src=”image.gif” alt=”Myimage”>Image.gif</img>
7. What is the correct HTML element for inserting a line break?
a. <lb>
b. <br>
c. <break>
Vitech:=
1. What is HTML?
2. What is javascript?
Trimindtech
1. What is table tag?
2. Explain what is Padding ?
3. Explain what is Border?
4. Explain what is Margin?
5. What is box model?
6. Explain Function in JS?
7. Difference b/w div tag and span tag?
8. Datatypes are used in js or not?
9. CSS linking to html?
Techouts:=
1. Explain Html <Tags> and its purpose?
2. Explain CSS Properties ?
Tech M:=
1. Explain HTML FORMS?
2. Explain HTML TABELS?
3. Explain HTML LISTS?
4. Explain CSS PROPERTIES?
5. Explain RADIO BUTTONS?
6. Why we are using ICONS?
REVUE SOFT:=
1. Write a html prog tags with login?
Pyro group:=
1.What is web technologie?