
Search In
The mouseover event fires when a pointing device points over an element.
The mouseout event triggers when the mouse pointer leaves the element.
In Html-
Syntax:-
<element onmouseout="myScript">
e.g-
Two dimensional array is a form of matrix in which users can have rows and columns as per need. We can think of table in which x no.of rows and y no.of columns are available.
Syntax:
int item = a[i,j]
This is a two dimensional array wh
I am currently using xlrd in python to read excel sheet.
In column 1 contains test titles and column 37 contains test step. In column 1, there are some cell values like heading/Test case etc. I want to read all the rows in column 37 which are in bet
Can some one please explain what is done in the following code.
I found it in in Stack overflow. I asked the question in the same web site and got the following reply Stackoverflow isn't meant for the purpose of explaining code . Since I a
Dropdown Menu is used where user has to show list of items for example in selecting countries and state name or finding this list of any latest technology , movies or it should be anything that gives us option to do a choice. This dropdown menu allow
Hi,
Here I am writing a simple way to use Comparator interface.
We use Comparator interface to order the objects.
First of all we need to import java.util package.
It have two methods :
Compare(Object o1, Object o2)
equals(Object o).
Th
Containable behavior was introduced in CakePHP 1.0. It helps you out to find out the data from the associated models/tables in a consistent way.
Containable simplifies the binding operation in your model bindings. To use the new behavior, you need
SQL data type is an attribute that tell us the type of the object.
SQL server has 6 type of datatype
Exact numeric data type
1. bigint- Range start from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
2. int- Range start from -2,147,483,6
Listing, Managing and Using Ruby versions in Rails application
I am writing this blog to discuss how can we see ruby versions installed in our system. In addition to it this blog
also contains how can we manage them and use different versions
I have this function:
xa <- 9
xb <- 6
za <- 20
a1 <- xa / za
b1 <- xb / za
Validation <- function (a1, b1)
if (a1 / b1 >= .85 && a1 / b1 <= 1.15) {print(TRUE)}
resu
