top of page
For Loop : Task 1
Write a "for" loop that will perform exactly the same repetitive code as this: console.log(1) console.log(2) console.log(3)...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Switch : Exercise: Code the days of the week program as a switch statement
On the next line, define a new variable, name it day, and set its value to "Sunday". Start coding a switch statement, passing the day...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
If else : Exercise: Practice conditional statements
Complete the following steps to create: Are You Old Enough? Declare a variable age using the var keyword and set it to the number 10. Add...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Task 3: Using the modulus operator, %, to test if a given number is odd
You need to code a small program that takes a number and determines if it's an even number (like 2, 4, 6, 8, 10). To achieve this task,...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Task 2: Using the logical || operator
Imagine you are coding a video game. Currently, you’re about to code some snippets related to the game over condition. You need to code a...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Task 1: Using the logical && operator
You are coding an RPG game, where each character has certain skill levels based on the value saved in their score. Create a variable named...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Data type in Javascript
We are using variables in JavaScript for various purposes. it is mandatory to understand the data contained by the variable of which type...
satyanarayan behera
Aug 25, 20221 min read
Â
Â
Â
Variable in javascript
In JavaScript variable means to provide a name to store the data. With the help of the variable, we can access the data and perform the...
satyanarayan behera
Aug 22, 20222 min read
Â
Â
Â
Semi-colon in JavaScript
Semi Colon is a very important part of JavaScript programming. It informs the compiler to Differentiate from one statement to another...
satyanarayan behera
Aug 22, 20221 min read
Â
Â
Â
Comment in java script
In programming, if we want to provide any information or descriptions for further reference or future reference we can use comment...
satyanarayan behera
Aug 22, 20221 min read
Â
Â
Â
Importance of JavaScript
JavaScript is used to create dynamic user interfaces for the web it is basically used for a web page with animation live data button...
satyanarayan behera
Aug 22, 20221 min read
Â
Â
Â


GitHub & Git
GitHub is a code hosting platform for version control and collaboration At the heart of GitHub is an open source version control system...
satyanarayan behera
Jul 26, 20222 min read
Â
Â
Â


Your life expectancy may be extended by the Balancing exercise.
According to a recent study, middle-aged adults who are unable to stand on one leg for at least 10 seconds appear to be more likely to...
satyanarayan behera
Jul 19, 20221 min read
Â
Â
Â


AWS Infrastructure
AWS Region Selecting the AWS region : Compliance Customer reference Features available according to the region Pricing Availability Zone...
satyanarayan behera
Jul 19, 20222 min read
Â
Â
Â


AWS Networking
AWS Virtual Private Cloud VPC A networking service that you can use to establish boundaries around your AWS resources is Amazon Virtual...
satyanarayan behera
Jul 19, 20222 min read
Â
Â
Â


AWS storage and databases
Amazon Elastic Block Store (Amazon EBS) is a service that provides block-level storage volumes that you can use with Amazon EC2...
satyanarayan behera
Jul 19, 20222 min read
Â
Â
Â


The Sprint
Sprints are the heartbeat of Scrum, where ideas are turned into value. The Sprint is the name of the time-boxed period in Scrum where...
satyanarayan behera
Jul 3, 20225 min read
Â
Â
Â


Estimation in Scrum ( T Size & Stories Points)
Absolute estimation is also called time and effort estimation in traditional project management. Relative estimation means that instead...
satyanarayan behera
Jul 3, 20222 min read
Â
Â
Â


Acceptance criteria in Scrum
The Product Owner creates something called the acceptance criteria, which is essentially the checklist you will use to decide whether the...
satyanarayan behera
Jul 3, 20221 min read
Â
Â
Â


How to write Effective User Stories
User stories are made up of three different elements: the user, the action they will take, and the benefit to them. These elements might...
satyanarayan behera
Jul 3, 20221 min read
Â
Â
Â
bottom of page