Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to make mouser hower motion on image using CSS

Hello Reader's if you want to make the animation in the image then you can use the cssmaker css. And here by using the css code below you can see and learn how to make this:- .classname { transition:All 1s ease; -webkit-transition:All 1s ease; -moz-

SQL : How to get Nth record in SQL Table ?

In the following article we will go through a solution to a very common requirement of getting Nth record in a SQL server table. Let us first create a table and add sample data to this table. Col1 in the table is an identity column. CREATE TABLE #Ta

To Implement two stacks in an array in C++?

To Implement two stacks in an array #include<iostream> #include<stdlib.h> using namespace std; class twoStacks { int *a; int size; int top1, top2; //top of two stacks public: twoStacks(int n) // constructor {

Accessing Values in Strings in python

Python does not support a character type treated as strings of length 1, thus also consider a substring. To access substrings, use the square brackets for slicing along with the index or indices to obtain your substring. For example − #!/usr/bin/pyt

Accessing Values in Lists in Python

To access values in lists, use the square brackets for slicing along with the index or indices to obtain value available at that index. For example − #!/usr/bin/python list1 = ['physics', 'chemistry', 1997, 2000]; list2 = [1, 2, 3, 4, 5, 6, 7 ]; p

Conversion of binary value to an integer

Description: Given an array of one's and zero's convert the equivalent binary value to an integer. Eg: [0, 0, 0, 1] is treated as 0001 which is the binary representation of 1 Examples: Testing: [0, 0, 0, 1] ==> 1 Testing: [0, 0, 1, 0]

SQL : How to get count of duplicate records?

In the following article we will go through a solution to a very common requirement of getting count of duplicate rows from SQL server table. Let us first create a table and add sample data to this table. Col1 in the table is an identity column. CRE

SQL : How to remove duplicates in SQL table?

In the following article we will go through a solution to a very common requirement of removing delete duplicate rows from SQL server table. Let us first create a table and add sample data to this table. Col1 in the table is an identity column. CREA

Implements Runnable” Vs “extends Thread” in java

Implements Runnable Vs extends Thread in java In java language, as we all know that there are two ways to create threads. One using Runnable interface and another by extending Thread class. I read a statement for Thread and I was confused. The stat

prev 1 2 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: