
Search In
1. QUEL
It is the query language in the system INGRES. It is based on relational calculus. The fundamental aspect of the query languages based on the relational calculus is tuple variable ( which is a variable that "ranges over"&nb
1.Global Variables
2.Instance Variables
1.Global Variables:
They start with a $ sign.
If we do not initialize values to global variables , they take a default value of nil.
Example:
$ global_va
Boxing
The automatic conversion of value type e.g int,char,float etc to a reference type e.g object is termed as Boxing. In general the value type variables are stored in memory space called stack but whenever there is a boxing process the value typ
These are the steps you can follow to create simple products in magento with custom options them
1. Login to Admin menu, go to Catalog -> Manage Products.
2 In the upper-right corner of the Manage Products page, click the A
Important Notes
a. Please ensure that you clear the browser cache to ensure proper functioning of the changed user interface. Steps to clear browser cache :
press Ctrl-Shift-Delete (Windows) or Command-Shift-Delete (Mac).
Select ‘Cached im
This tutorial will help a user to learn how to create a property with specified attribute values or modify the attributes of a property that already exists in JavaScript
1. Creating a property:
// using Object.defineProperty() for creating a ne
Eclipse provides lots of keyboard shortcuts which can save your lot of time.
Here is a list of shortcuts that you might want to try out: -
**Navigation Shortcuts**
*Shortcut Description*
Ctrl + Shift + R Open / Search for resources, e.g. f
Sometime we need to generate CSV from data as per requirement. You can easily create CSV file by following the below steps:
Write the following Maven configuration in pom.xml file in your project:
<dependency>
<groupid>net.sf.opencsv&
Method Referencing
Method reference is feature related to lambda expressions. Method references are more readable form of Lambda expressions for already written methods. “::” operator is used to define method reference. It provides a way to a meth
C uses malloc() and calloc() function to allocate memory dynamically at runtime. Similarly it uses the function free() to free dynamically allocated memory.
New operator can be used to create objects of any type.It takes the following general form:
