Posts

Showing posts from September, 2018

Sentences in English

A group of words which make complete sense is called "sentence". We have 4 type of sentences.They are 1.Declarative or Assertive sentence    Informations (e.g) Sun rises in East. I went to school. 2.Interrogative sentence     Questions (e.g) What are you doing? How did it go? 3.Imperative sentence    Commands and requests   (e.g) Open the gate Please help me. 4.Exclamatory sentence   Strong feelings (e.g) Oh my God!. So sad!

Creating dynamic table using jquery

we can create html controls dynamically when we need using jquery.This will be very helpful  to bind data in table . Jquery var th = "<tr> <th >Country</th></tr>"; $('#tbltest thead').empty().append(th); var tr ="";       tr += "<tr><td >India</td></tr>";      tr += "<tr><td >US</td></tr>";      tr += "<tr><td >FRANCE</td></tr>"; $('#tbltest tbody').empty().append(tr); HTML  <table  id="tbltest "> <thead></thead> <tbody></tbody> </table>

Know little bit about Websites

Nowadays internet plays a vital role in our life.Each page we are seeing in internet is called web page.Collection of web pages are called "Website"  . Websites have some more components than we see.We will see those things vividly in this article.              We have various technologies to develop websites.There are 2 kind of websites are available,namely                       * Static websites                       * Dynamic websites *Static websites Contents of this website won't change dynamically. These kind of websites are developed using HTML(web design language)/Twitter Bootstrap/Mdl bootstrap and CSS(provide styles to websites). These websites won't be changed automatically. * Dynamic websites Contents of this website will be changed dynamically.  These kind of websites have 3 main parts namely Front ...

Adding new column in existing table with default value in Sql

Here i'm going to explain how to add a new column with default value in sql.We need follow the below syntax to add new column. ALTER TABLE table_name add column_name int NOT NULL DEFAULT(1) (e.g) ALTER TABLE Employee  add  emp_age  int NOT NULL DEFAULT(18)