Home » Archive by category "Online Computer Education" (Page 7)

Learn Operating Web Based Application ”List of E-Governance Sites” for CBSE Class 10 and 12, Lesson 6

E-Governance Sites Some of the Central initiatives for e-governance include: National e-Governance Plan (NeGP) National e-Governance Division (NeGD) e-Governance Infrastructure Mission Mode Projects Citizens Services Business Services Government Services Projects and Initiatives R&D in e-Governance Several state governments have also taken e-governance initiatives in the area of Agriculture, Commercial Taxes, e−District, Employment Exchange, Land Records, Municipalities, Gram Panchayats, Police, Road Transport, Treasuries, etc. Some of the key e-governance sites of India...
Continue reading »

Learn Operating Web Based Application ”E-Governance” for CBSE Class 10 and 12, Lesson 5

E-Governance E-Governance or electronic governance is the use of electronic form i.e. information and communication technology (ICT) tools for governance by the government for the citizens. The ICT tools include the Internet, Local Area Network (LAN), mobiles etc. The use of ICT facilitates provides access to information to the citizens by the government. The government has set up ICT enabled services, like, registration of birth/death certificate, booking of railway tickets, RTI...
Continue reading »

Learn Operating Web Based Application ”Using Online Reservation Systems” for CBSE Class 10 and 12, Lesson 4

Using Online Reservation Systems For using any online reservation system, there is a need that we do the following- Open the online reservation website – On your machine having an Internet connection, open a web browser like Internet Explorer, Google’s chrome, etc. To open a website- If you know the address of the website then type the address in the address bar, or If you do not know the address, open...
Continue reading »

Learn Operating Web Based Application ” Advantages of online reservation system” for CBSE Class 10 and 12, Lesson 3

Advantages of online reservation system   The online reservation system has several advantages both for the provider who may be a company or an organization and also for the consumer who uses the online reservation system for booking. We discuss the advantages of the online reservation system – Convenient–The user/consumer can book tickets at anytime from anywhere – from home, office, while travelling etc. The user needs to have just a...
Continue reading »

Learn Operating Web Based Application ” Online Reservation Systems” for CBSE Class 10 and 12, Lesson 2

  Online Reservation Systems An online reservation system allows a user to make reservation of tickets. A user can retrieve information and perform transaction related to reservation of ticket. Some of the reservations that can be made via online reservation systems are – Airline ticket Railway ticket Bus ticket Movie ticket Hotel booking Car rental Tour and travel booking The online reservation systems store information and allow the users to retrieve...
Continue reading »

Learn Operating Web Based Application ” Introduction of Operating Web-Based Applications” Lesson 1

    Introduction Operating Web-based Applications An application that can be accessed via a web browser, over a network connection and uses HTTP, is called a web-based application. Since a web-based application is accessed over the Internet, it can be accessed by anyone from anywhere. Nowadays, web-based applications are used for reservation of tickets, bookings, for e-governance, for online shopping with the provision of making payments online, commonly, using credit cards,...
Continue reading »

Learn online DBMS “Select Command in MySQL” Complete Lesson 14

SELECT COMMAND–The SELECT Command is used to query a database or retrieve information from it. There are various ways in which the SELECT command can be used. The basic structure of a SELECT command contains the SELECT clause followed by the attribute list (separated by comma (,)) you want to select, then FROM clause followed by the table name and lastly WHERE clause which is followed by the condition which can...
Continue reading »

Learn online DBMS “Delete Command in MySQL” Complete Lesson 13

DELETE COMMAND– In order to delete one or more tuples, DELETE command is used. If we want to delete the tuple for Teacher with ID=2345 the command is: DELETE FROM Teacher WHERE Teacher_ID=234;   If the WHERE clause is missing then it will delete all the tuples in a table.      DELETE FROM Teacher;      The above command would delete all the tuple in the table Teacher.        Alike UPDATE...
Continue reading »