Thank you everyone for supporting me..👇👇👇 Answer for the JS questions are here: 👇👇👇 1. // if a=31 and b=42 .. Using JS find div , sub, and modulus of these two variables. let a = 31; let b = 42; let div = a/b; let sub = a-b; let mod = a%b; document.write("The div is: " + div); document.write("The sub is: " + sub); document.write("The mod is: " + mod); ------------------------------------------------------------------------------------ 2. // find circumference of cicle if r = 33; using JS. const pi = 3.1416; let r = 33; let C = 2 *pi *r; document.write("The circumference of cirlce is: "+ C); ---------------------------------------------------------------------------------------------------------- 3.// write firstname, lastname address and phone.no of a person using JS. let fname = "PRAROZ"; let lname = "CHANNEL" let add = "KZbin" Let p_no = "123450000"; document.write("My name is: "+ fname +" "+ lname); document.write("I live in: " + add); document.write("Phone no is: "+ p_no); -------------------------------------------------------------------------- 4. /* Grade of students if 80 above A 60-80 then B 40-60 then C less than 40 FAILED. let marks = 65; if(marks >=80 ){ document.write("My Grade is A."); }else if(marks =60){ document.write("My Grade is B."); }else if(marks =40){ document.write("My Grade is C."); }else{ document.write("I Failed the Exam."); } --------------------------------------------------------------------------- 5. // write 5-30 numbers using all loops . for(let i = 5; i
@behindthescene27273 жыл бұрын
was expecting this,bro! #javascript
@RozSez20013 жыл бұрын
Hope you enjoyed it!
@rajeshyadav907673 жыл бұрын
Nice
@RozSez20013 жыл бұрын
Thanks
@tanishsingh20593 жыл бұрын
love from India sir i watch almost all videos really you are a supb
@RozSez20013 жыл бұрын
thank you very much😍😉
@smsmalgalay80314 ай бұрын
Thank you so much
@smsmalgalay80314 ай бұрын
2-The circumference of cirlce is: 207.3456
@alenarussia45083 жыл бұрын
Bro how to add icons make a video on icons in login box
@RozSez20013 жыл бұрын
kzbin.info/www/bejne/rYvSkJqir8efo6s
@moneymakingmachine99392 жыл бұрын
1709.83
@smsmalgalay80314 ай бұрын
let a=31; let b=42; let div=a/b; let sub=a-b; let mod=a%b; document.write("The div is:"+div +""); document.write("The sub is:"+sub); document.write("The mod is:"+mod); The div is:0.7380952380952381 The sub is:-11The mod is:31