diff --git a/22_mathpi/68_mathpi.js b/22_mathpi/68_mathpi.js index 1b8b5ee..8d3386e 100644 --- a/22_mathpi/68_mathpi.js +++ b/22_mathpi/68_mathpi.js @@ -1 +1,41 @@ -console.log("Hi") \ No newline at end of file +// Num +console.log("**********************************Num********************************") +let score = 200; +const balance = new Number (100); + +console.log(balance) // [Number: 100] +console.log(typeof(balance)) // object + +let newBalance = balance.toString() +console.log(typeof(newBalance)) // string + +let price = 450.8585255 + +let updatePrice = price.toPrecision(6); +console.log(updatePrice) // 450.859 + +let newPrice = price.toFixed(2) +console.log(newPrice) // 450.86 + +const bankBalance = 100000 +console.log(bankBalance.toLocaleString()) // 100,000 +console.log(bankBalance.toLocaleString('en-IN')) // 1,00,000 + +console.log("**********************************Math********************************") + +console.log(Math.abs(-80)) // 80 +console.log(Math.abs(80)) // 80 +console.log(Math.round(85.36)) // 85 +console.log(Math.ceil(89.9)) // 90 +console.log(Math.floor(89.9)) // 89 +console.log(Math.sqrt(25)) // 25 squar of 5 +console.log(Math.pow(5, 2)) // 5 X 5 = 25 + +console.log(Math.random()) // random number +console.log(Math.ceil(Math.random()*51) +(9000 - Math.ceil(Math.random()+ 1000)) + 5) + + +const min = (Math.random() * 5 + 1000); +const max = (Math.random() * 2 + 8999); + +console.log(Math.floor(Math.random() * (max-min + 1) + min)) \ No newline at end of file diff --git a/25_Revision/18_api/02_promise.js b/25_Revision/18_api/02_promise.js index 0a200a4..78eac80 100644 --- a/25_Revision/18_api/02_promise.js +++ b/25_Revision/18_api/02_promise.js @@ -61,7 +61,6 @@ promiseFour.then((userDetails)=>{ console.log("Promise Resolve or Reject Compleated"); // }) - // --------------------------------------------------------------------- const promiseFive = new Promise(function(resolve, reject){ @@ -117,4 +116,4 @@ fetch('https://jsonplaceholder.typicode.com/users') console.log(data) }).catch((e) => { console.log("error: ", e); -}) \ No newline at end of file +}) diff --git a/26_miniproject/project03/1index.html b/26_miniproject/project03/1index.html new file mode 100644 index 0000000..4bda177 --- /dev/null +++ b/26_miniproject/project03/1index.html @@ -0,0 +1,138 @@ + + + + + + Bonafide Certificate Generator + + + + + + +
+

BUDDHA INSTITUTE OF TECHNOLOGY

+

Industrial Area, Gaya

+

Bonafide Generator

+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + + + + diff --git a/26_miniproject/project03/a.html b/26_miniproject/project03/a.html new file mode 100644 index 0000000..7494e20 --- /dev/null +++ b/26_miniproject/project03/a.html @@ -0,0 +1,391 @@ + + + + + + Bonafide Certificate Generator + + + + + + +
+

BUDDHA INSTITUTE OF TECHNOLOGY

+

Industrial Area, Gaya

+

Bonafide Generator

+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ +
+
+ +
+
+ +
+

Ref. No.:-

+

Date:

+
+ +

TO WHOM IT MAY CONCERN

+ +

+ Certified that S/o + had been admitted during + the session in the branch of + bearing Roll No – + . He is a bonafide student of + this institution. He is promoted to + Semester. The dues payable fee will be . +

+ +

+ This Institute has been recognized by AICTE through their F.No. + & affiliated to + affiliation no. + and subsequently recognized by Department of Science & + Technology, Govt. of Bihar, Patna. +

+ + + +

+ Account Holder Name – Buddha Polytechnic Institute
+ Bank Name – State Bank of India
+ Address – Gandhi Maidan, Gaya
+ Account No. – 36922955550
+ IFSC – SBIN0006553 +

+ +
Principal
+
+
+ + + + diff --git a/26_miniproject/project03/b.html b/26_miniproject/project03/b.html new file mode 100644 index 0000000..3bc190a --- /dev/null +++ b/26_miniproject/project03/b.html @@ -0,0 +1,336 @@ + + + + + + Bonafide Certificate Generator + + + + +
+

BUDDHA INSTITUTE OF TECHNOLOGY

+

Industrial Area, Gaya

+

Bonafide Generator

+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ +
+
+

Ref. No.:-

+

Date:

+
+

TO WHOM IT MAY CONCERN

+ +

+ Certified that S/o + had been admitted during + the session in the branch of + bearing Roll No – + . He is a bonafide student of + this institution. He is promoted to + Semester. The 3rd Year dues payable fee will be . +

+ +

+ This Institute has been recognized by A.I.C.T.E through their F.No. + Northern/1-43657927785/2024/EOA, dated: 08-May-2024 & affiliated to + SBTE, Patna, Bihar affiliation no. KK(SBTE)02/2022(Part-4)-2957/Patna, + Dated-30.07.2024 and subsequently recognized by Department of Science & + Technology, Govt. of Bihar, Patna. +

+ + + +

+ Account Holder Name – Buddha Polytechnic Institute
+ Bank Name – State Bank of India
+ Address – Gandhi Maidan, Gaya
+ Account No. – 36922955550
+ IFSC – SBIN0006553 +

+
Principal
+ +
+ +
+
+ + + + + diff --git a/26_miniproject/project03/bonafied.html b/26_miniproject/project03/bonafied01.html similarity index 100% rename from 26_miniproject/project03/bonafied.html rename to 26_miniproject/project03/bonafied01.html diff --git a/26_miniproject/project03/index.html b/26_miniproject/project03/index.html index 529f37d..8a0eceb 100644 --- a/26_miniproject/project03/index.html +++ b/26_miniproject/project03/index.html @@ -4,9 +4,173 @@ Bonafide Certificate Generator - - - + + + @@ -53,12 +217,12 @@

Bonafide Generator

- +
- +
@@ -66,6 +230,14 @@

Bonafide Generator

+
+ + +
+
+
+ + + +
+

Yeh PDF naam ke liye banayi gayi hai:

+

+
+ + + + diff --git a/26_miniproject/project07/resume.html b/26_miniproject/project07/resume.html new file mode 100644 index 0000000..87b7e30 --- /dev/null +++ b/26_miniproject/project07/resume.html @@ -0,0 +1,198 @@ + + + + + + + Resume – Rajeev Kumar Singh + + + +

RESUME

+

RAJEEV KUMAR SINGH

+ + +
+ Permanent Address                 Correspondence Address +
+
+
+ S/O Sri Udyanand Singh
+ P.O – Matia, P.S – Barhat
+ Dist – Jamui (Bihar)
+ Mob No: 6201288059 +
+
+ Cherki Road Domuhan, Bodhgaya
+ P.O – M.U, P.S – M.U
+ Dist – Gaya (Bihar) +
+
+ + +
Objective
+

+ To crave a niche for myself in the field of adoption by using my creativity and + sincerity in the highest interest of the organization. +

+ + +
Area of Interest
+ + + +
Educational Qualification
+ + + +
Work Experience
+ + + +
Other Experience
+ + + +
Personal Details
+ + + + + + + + + + + + + + + + + + + + + + + + + +
NameRajeev Kumar Singh
DOB13th Dec 1982
NationalityIndian
Marital StatusMarried
GenderMale
Languages KnownHindi / English
+ + + + +