Posts

Showing posts from February, 2025

FSD Slip-13 Practical Create an HTML form for Student Feedback Form with Name, Email ID, Mobile No., feedback (Not good, good, very good, excellent) and write a JavaScript to validate all field using Regular Expression.

Create an HTML form for Student Feedback Form with Name, Email ID, Mobile No., feedback (Not good, good, very good, excellent) and write a JavaScript to validate all field using Regular Expression.   <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Student Feedback Form </ title >     < script >         const validation =() =>         {             // Get input values             let name = document . getElementById ( "name" ). value . trim ();             let email = document . getElementById ( "email" ). value . trim ();             let mobile = document . getElementById ( "mobile" ). value . trim (...

FSD-1 MScCS-Slips-CS561MJP-FSD1

                                                   MScCS-Slips-CS561MJP-FSD1 —----------------------------------------------1---------------------------------------------------------------------- Q.1) Create an HTML form for Login and write a JavaScript to validate email ID and Password using Regular Expression. Q.2) Create an HTML form that contain the Student Registration details and write a JavaScript to validate Student first and last name as it should not contain other than alphabets and age should be between 18 to 50. —---------------------------------------------2---------------------------------------------------------------------- Q.1) Create a Node.js file that will convert the output "Full Stack!" into reverse string. Q.2) Using node js create a web page to read two file names from the user and append contents of the first file into the second file...