100% found this document useful (1 vote)
1K views2 pages

FSD Question Bank Module 1 Bis601

This document is an assignment for a Full Stack Development course, specifically for the subject code BIS601. It contains a question bank with various topics related to JavaScript, including variables, data types, functions, objects, and loops. Each question requires an explanation or demonstration of JavaScript concepts, along with examples and syntax where applicable.

Uploaded by

Raghu Nandan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
1K views2 pages

FSD Question Bank Module 1 Bis601

This document is an assignment for a Full Stack Development course, specifically for the subject code BIS601. It contains a question bank with various topics related to JavaScript, including variables, data types, functions, objects, and loops. Each question requires an explanation or demonstration of JavaScript concepts, along with examples and syntax where applicable.

Uploaded by

Raghu Nandan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

U S N

Subject: FULL STACK DEVELOPMENT Subject Code BIS601


Semester: VI Branch/sec ISE
Faculty Name: ANOOP N PRASAD ASSIGNMENT -1 / QUESTION BANK-MODULE-1

Question
number Questions
1 What is a script?Write a note on Statements & Comments in javascript with the help
of an example program.
2
What is a variable?How to declare and assign value to a variable.Explain with the
syntax .
3
Explain datatypes available in javascript
4
Demonstrate how to store a number,a string,a boolean using a variable in javascript
5
Explain the rules for naming variables.
6
What is an Array?how to create an array & store,access values to and from an
array.Explain with an example.
7
Write a note on Expressions and Operators in javascript.
8
Write a brief note on String Operator.
9
Illustrate Functions in javascript with syntax and examples
10
Can you assign an anonymous function to a variable and pass it as an argument o
another function?
11
What is Function Expressions?Explain IIFE in detail and specify when to use
anonymous functions and IIFEs.
12
What are the scopes of a variable in javascript?
13
How can you create objects in javascripts.Explain two ways of creating objects with
an example.
14
How do you add and delete properties in JavaScript objects?
15
What is this in JavaScript objects?Explain with an example
16
Illustrate the concept of Arrays of objects & Objects in arrays with the help of an
example.
17
What are Built-in Objects in Javascript.Explain in detail.
18
Explain Global Objects (Number Object & Math Object) in detail.
19
Explain Type Coercion in javascript .Give the difference between Strong typing and
Weak typing in javascript.
20
What happens when you perform operations with undefined and null?
21
Explain Decisions and Loops with syntax in Javascript.
22 var scores = [24, 32, 17];
var arrayLength = scores.length;
var roundNumber = 0;
var msg = '';

for (var i = 0; i < arrayLength; i++) {


roundNumber = (i + 1);

msg += 'Round ' + roundNumber + ': ';

msg += scores[i];
}
Write the output of the above code.
23 var i = 1;
var msg = '';

while (i < 10) {


msg += i + ' x 5 = ' + (i * 5) ;
i++;
}
Write the output of the above code

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy