Skip to content

Pulkit1822/CSE4001-Internet-and-Web-Programming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

This repository contains the question paper, a solution to it, and my answer sheets for the course: Internet and Web Programming (CSE4001) offered in the Interim Semester 2023-24.


Result

Here are my scores: Result


Contents

The repository contains:

Setup

To get started with web development on your system, follow these steps to set up the complete environment.

Prerequisites

  1. Text Editor or IDE: Install a text editor like Visual Studio Code or an IDE like WebStorm.
  2. Node.js: Required for running JavaScript on the server side and for using npm (Node Package Manager).
  3. Database: Install MongoDB or MySQL for database management.
  4. Version Control: Install Git for version control.

Windows

  1. Install Visual Studio Code

  2. Install Node.js

  3. Install MongoDB

    Or

    Install MySQL

  4. Install Git

Linux

  1. Install Visual Studio Code

  2. Install Node.js

    • Install using the package manager:
      sudo apt update
      sudo apt install nodejs npm
  3. Install MongoDB

    Or

    Install MySQL

    • Install using the package manager:
      sudo apt update
      sudo apt install mysql-server
    • Start the MySQL service:
      sudo systemctl start mysql
  4. Install Git

    • Install using the package manager:
      sudo apt update
      sudo apt install git

Mac OS

  1. Install Visual Studio Code

  2. Install Node.js

  3. Install MongoDB

    Or

    Install MySQL

  4. Install Git

Common Steps

  1. Verify Node.js and npm installation

    • Open a terminal and run:
      node -v
      npm -v
    • You should see the installed version of Node.js and npm.
  2. Verify MongoDB or MySQL installation

    • For MongoDB, run:
      mongo --version
    • For MySQL, run:
      mysql --version
  3. Verify Git installation

    • Open a terminal and run:
      git --version
    • You should see the installed version of Git.

Feedback

If you have any feedback, suggestions, or questions regarding this repository, please feel free to open an issue or contact me on any of the platforms below 😊

portfolio    Linkedin Logo    Gmail logo    Instagram Logo    Pinterest Logo    Twitter Logo   

Happy learning and coding!


If you find this repository useful, don't forget to star it! ⭐️

Written by Pulkit

About

Explore the official solution manual for the Internet and Web Programming exam, a valuable 4-credit resource for your semester

Topics

Resources

Stars

Watchers

Forks