Time Converter Using JavaScript | Simple JS Projects for Beginners
Time Converter Today, let’s build a Time Converter by applying the basic java script concepts. Refer to the below image. Instructions: The HTML input element for entering the number…
Python Program to Print Armstrong numbers between two intervals
Write a program to print all the Armstrong numbers in the given range A to B (including A and B). An N – digit number is an…
Python Program to Check if Given Input is a Letter, Digit or Special Character
Letter, Digit or Special Character You are given a character as input. Check if the given input is a Lowercase Letter or Uppercase Letter or Digit or…
CSS Reusability and Bootstrap class names | Coding Practice Test
CSS Reusability and Bootstrap class names The goal of this coding practice test is to quickly get you off the ground with the Bootstrap class names and…
Bootstrap Backgrounds and Buttons | Coding Practice
Bootstrap Backgrounds and Buttons The goal of this coding practice is to quickly get you off the ground with Bootstrap Backgrounds and Buttons. Use the below reference…
Interleave Strings | Python Program to merge two strings by adding characters in alternating order
Interleave Strings Given two strings, write a program to merge the given two strings by adding characters in alternating order, starting with the first string. If a…
Python Program to Check if given colors are present in the color palate
Shekhar is an artist. He likes to draw and paint. He is now drawing a portrait of a city road which is in the black color and…
Python Program to Check the eligibility criteria for donor
Python Comparison Operators An XYZ hospital has organised a blood donation camp. The eligibility criteria for donor was as follows 1) Age>=18 2) Weight >=50 kg 3)…
JS Program to log the value located at Given Index
Access the values of an array Given an array. myArray = [25, false, “green”, “apple”]Write a Js program to log the value located at the given index….
JavaScript Program to Create & Log an Array
Create & Log an Array Write a JS program to log an array with the given values.‘Orange’, 25, 100, true, 33.58. OutputThe output should be a single…