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

Search In

Selection sort in C

Selection sort as the name suggests, first select the least element from the entire list in every iteration and swap it with the position for which iteration is being performed.   In the given figure it is seen that in the first iteration the

Linear Search in C

For doing search in C we use linear search a very simple and common searching process used for finding elements inside the array.   Linear search is also called as the sequential search.       Linear Search Algorithm Lin

  • 561
What is COALESCE in SQL Server

COALESCE():-      COALESCE is a function in SQL Server which returns the first non NULL expression amongst its parameter. If all the parameters are evaluated to NULL, It will return NULL Syntex:-    COALESCE( expre

Metacharacters Of Regular Expression

Regular expression also supports a number of special characters that may be affect the way for matching a pattern. For example: Enter the regex: sri.....                &nbs

How to update fields in text fields in product module OpenERP(Odoo)

In OpenERP first create custom module and inherits the hr module in your existing module.   Follow these step given below Step1- First create existing module like as test and than create .py file in your own module like as a test.py file and

Cyclomatic Complexity

Cyclomatic complexity metric was firstly introduced by Thomas J. McCabe in 1976,  based on control flow representation of the program.   It is used to refer the complexity of the program(source code). It is a measure of  the numbe

Implement Producer Consumer Problem Using Threading in Java

Producer–Consumer problem is also known as the bounded-buffer problem.It is multi-process synchronization problem.There are two processes one is producer and another is consumer that can share a common and fixed-size buffer. The producer insert the d

Re-Declaring JavaScript Variables

In javascrit,if you re-declare a variable, it wouldn't lose it value. Example -> var a=10; var a; alert(a); Output : 5 Here you can see, in JavaScript the output will be same but in other languages result would be undefined or NaN. Advantag

Laravel 4: how to run a raw SQL?

There are n number of situation where we want to write complex query so It is very difficult to write complex query using Laravel.So to overcome such problem Laravel provide raw query option. The syntax of writing raw query is:- Syntax: DB::select(

Mapping NULL values onto other values

In database, sometimes we have to insert the record with some NULL values. But at the time of displaying the data to the user, it doesn't make sense to display NULL values. In order to make the data more readable, we have to display values such as un

1 24 156
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: