Friday 22 December 2017

Difference Between Static And Dynamic Website or Page?

Static Website

Static Website   can display different contents that cannot be changed by the user

Static Website contents can be changed only by the developer.

Static Website pages are created using tools like HTML, JavaScript, css, images, audio, and video

Static Website   runs faster than dynamic website

Static Website is very cheap to develop

Example:

Every visitor to that page will be greeted by the exact same text,Image, audio or video  every time he visits the page because it is fixed and no action can performed by the user.User can feel but not change it.

Dynamic Website

Dynamic Website can display different contents and user can interact with the page and action can be performed by the user.

Dynamic Website pages are created using tools like PHP, ASP, ASP.net, JSP, Perl and Python

Dynamic Website runs slower than Static Website

Dynamic Website is very expensive to develop

Example:

When you visit the dynamic website then you can perform action (click event) on the page because it is user friendly and user can change it

No comments:

Post a Comment

apply function in R

1) apply function: It takes 3 arguments matrix,margin and function.. Example: m<-matrix(c(1,2,3,4),nrow=2,ncol=2) m #1 indicates it is ap...