Skip to main content

Posts

Design and Analysis of Algorithms Tutorial

What is DAA Algorithm? An algorithm is any well-defined computational action that takes some  values, or set of values, as input and produces some value, or set of  values, as output. An algorithm is thus a sequence of computational  procedure that transforms the input into output. An algorithm is an abstraction of the program to be executed on a physical  machine (model of computation). Why study DAA Algorithm? As the speed of processor increases, performance is generally said to be  less central than other software quality nature (e.g., security, extensibility,  reusability, etc.). However, large problem sizes are commonplace in the  field of computational science, which makes performance a significant  factor. This is because longer computation time, to name a few mean  slower results, less through research and largest cost of computation (if  buying CPU Hours from an external party). The study of Algorithm,  therefore, gives us a language to express performance
Recent posts

Introduction To HTML Tutorial

What is HTML? ·                         HTML is a computer standard Markup language, which is used for creating web pages or web applications. HTML stands for Hypertext Markup Language , where Hypertext refers to link two web pages, and Markup is a computer language which is used to apply layout and formatting for a page. A web browser receives an HTML document from the server and converts it into a webpage.  Following is a simple example for HTML page which gives an idea about how HTML page        looks:        <!DOCTYPE html> <html> <head>                 <title>This is title</title> </head>  <body>    <h1>This is a web-page</h1>    <p>This is First paragraph</p>  </body> </html>      In above example we have used tags, and elements which are building blocks of HTML. Such as <head>, <body>, <h1>, and <p> we will understand about these tags