From 771d4c6aa805c728a41cb79bcdda31bdce668c34 Mon Sep 17 00:00:00 2001 From: Gaurab KC <35660893+kecyGaurab@users.noreply.github.com> Date: Wed, 3 Apr 2019 14:17:44 +0300 Subject: [PATCH] solved till 2 --- Lect4ArraEx/ex1-sample.js | 11 +++++++++ Lect4ArraEx/ex2.js | 14 +++++++++++ Lect4ArraEx/ex3.js | 21 ++++++++++++++++ Lect4ArraEx/questions.txt | 50 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 96 insertions(+) create mode 100644 Lect4ArraEx/ex1-sample.js create mode 100644 Lect4ArraEx/ex2.js create mode 100644 Lect4ArraEx/ex3.js create mode 100644 Lect4ArraEx/questions.txt diff --git a/Lect4ArraEx/ex1-sample.js b/Lect4ArraEx/ex1-sample.js new file mode 100644 index 0000000..31e2467 --- /dev/null +++ b/Lect4ArraEx/ex1-sample.js @@ -0,0 +1,11 @@ +// Write a JavaScript program that accept two integers and display the larger. + +function largerInteger(a,b){ + if (a > b){ + return a; + } + else{ + return b; + } +} +console.log(largerInteger(4,-5)); diff --git a/Lect4ArraEx/ex2.js b/Lect4ArraEx/ex2.js new file mode 100644 index 0000000..a6d91d0 --- /dev/null +++ b/Lect4ArraEx/ex2.js @@ -0,0 +1,14 @@ +// Write a JavaScript conditional statement to find the sign of product of three numbers. Display an alert box with the specified sign. +//Sample numbers : 3, -7, 2 +//Output : The sign is - // + +function productSign(a,b,c){ + var product = a*b*c + if(product < 0){ + alert("-"); + } + else{ + alert("+"); + } +} +console.log(productSign(2,4,8)); diff --git a/Lect4ArraEx/ex3.js b/Lect4ArraEx/ex3.js new file mode 100644 index 0000000..b473afb --- /dev/null +++ b/Lect4ArraEx/ex3.js @@ -0,0 +1,21 @@ +// Write a JavaScript conditional statement to sort three numbers. Display an alert box to show the result. +//Sample numbers : 0, -1, 4 +//Output : 4, 0, -1 // + +function sortDescending(arr){ + for (i = 1; i < arr.length; i++){ + for (j = 0; j < i; j++ ){ + if( arr[i] >= arr[j]){ + var x = arr[i]; + arr[i] = arr[j]; + arr[j] = x; + } + + } + return arr; + }} + + + + +console.log(sortDescending([1,4,7])); diff --git a/Lect4ArraEx/questions.txt b/Lect4ArraEx/questions.txt new file mode 100644 index 0000000..1430e34 --- /dev/null +++ b/Lect4ArraEx/questions.txt @@ -0,0 +1,50 @@ +1. Write a JavaScript program that accept two integers and display the larger. +2. Write a JavaScript conditional statement to find the sign of product of three numbers. Display an alert box with the specified sign. +Sample numbers : 3, -7, 2 +Output : The sign is - +3. Write a JavaScript conditional statement to sort three numbers. Display an alert box to show the result. +Sample numbers : 0, -1, 4 +Output : 4, 0, -1 +4. Write a JavaScript conditional statement to find the largest of five numbers. Display an alert box to show the result. +Sample numbers : -5, -2, -6, 0, -1 +Output : 0 +5. Write a JavaScript for loop that will iterate from 0 to 15. For each iteration, it will check if the current number is odd or even, and display a message to the screen. +Sample Output : +"0 is even" +"1 is odd" +"2 is even" +---------- +---------- +6. Write a JavaScript program which compute, the average marks of the following students Then, this average is used to determine the corresponding grade. + +Student Name Marks +David 80 +Vinoth 77 +Divya 88 +Ishitha 95 +Thomas 68 + +The grades are computed as follows: +Range Grade +<60 F +<70 D +<80 C +<90 B +<100 A + +7. Write a JavaScript program which iterates the integers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz". +8. According to Wikipedia a happy number is defined by the following process: +"Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers, while those that do not end in 1 are unhappy numbers (or sad numbers)". +Write a JavaScript program to find and print the first 5 happy numbers. +9. Write a JavaScript program to find the armstrong numbers of 3 digits. +Note: An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, 371 is an Armstrong number since 3**3 + 7**3 + 1**3 = 371. +10. Write a JavaScript program to construct the following pattern, using a nested for loop. +* +* * +* * * +* * * * +* * * * * +11. Write a JavaScript program to compute the greatest common divisor (GCD) of two positive integers. +12. Write a JavaScript program to sum the multiples of 3 and 5 under 1000. + +