AngularJS with HTML DOM

In AngularJS it is possible to bind application data to an attribute of HTML DOM element. AngularJS with HTML DOMAngularJS HTML DOM : Example<!DOCTYPE html> <html><head> <script src="angular.min.js"></script> </head><body><div ng-app="" ng-controller="controller1"><p>Toggle check buttons to check the status..</p><table border="1"> <tr> <td>Disable Button</td> <td>Show Button</td> <td>Hide Button</td> </tr> <tr> <td><input type="checkbox" ng-model="isChecked1"></td> <td><input type="checkbox" [...]

C++ Inheritance basics

In this chapter we will be learning about C++ Inheritance basics. Tutorial explains you different types of inheritance in C++ programming language. Basics of inheritance Inheritance is one of the basic features of object oriented programming. In the process of inheritance, one object can acquire the properties of another class.ExplanationIn the above picture, it is clearly mentioned that we are having two classes i.e base and derived class. Base class contains general information about the specific entity Derived class contains more specific [...]

SQL SELECT Statement

A. SQL SELECT Statement : Fetching Records SQL SELECT Statement is used to collect only required records out of number of records. This chapter will explain the SQL SELECT statement [Pictorial Representation].Select Statement is used to fetch required records from a database table. Select Statement returns data in the form of result table. Result table returned by Select Statement is also called as Result Sets.B. Select : SyntaxSQL> SELECT column1, column2, columnN FROM table_name;Here [...]

SQL Syntax

In this chapter we are going to write simple query to understand the SQL Syntax. Consider the following table on which we are triggering the query. Table name is "Student".Table contain the 5 fields (i.e S_Id,FirstName,LastName,City,Marks) and 4 records. Example Query : 1 We have already created table[*] and we need to filter the above table by firing one simple SQL query. Consider following simple SQL query. -SELECT * FROM Students;Example Query : 2 Another query example to select only records [...]

Advantages Of Object Oriented Programming

Advantages And Features Of Object Oriented Programming

Advantages Of Object Oriented Programming :OOP provides a clear modular structure for programs. It is good for defining abstract data types. Implementation details are hidden from other modules and other modules has a clearly defined interface. It is easy to maintain and modify existing code as new objects can be created with small differences to existing ones. objects, methods, instance, message passing, inheritance are some important properties provided by these particular languages encapsulation, polymorphism, abstraction are also counts in these fundamentals of programming language. It [...]

Enabling JavaScript in Firefox

JS Enable in Firefox

How to check whether JavaScript is enabled in firefox or not ? In Firefox 9.0.1 you can check to see if JavaScript is enabled by navigating to the Content settings under Options. Step by Step Procedure to enable JavaScript in Firefox :Click on the Firefox Icon Choose Options -> Options from the menuClick the Content tab in the Options pop up.Make sure that Enable JavaScript is checked Click OK to finish the processJavaScript May provides Script to do following things -Move Or Resize [...]

C++ Characteristics

C++ Provides huge Function Library that's why its popularity is increasing day by day and more programmers are inclining towards C++ due to its multiple features -C++ is an Object Oriented Programming Language (OOPL). C++ have huge Function Library C++ is highly Flexible language with Versatility. C++ can be used for developing System Software viz., operating systems, compilers, editors and data bases. C++ is suitable for Development of Reusable Software. , thus reduces cost of software development. C++ is a Machine Independent Language.