
Search In
This is the Implementation of Stack using Array in C. The concept of Stack is to work on LIFO(Last In First Out). The Element can be Pushed into the Stack of Size 5. The Below code shows How the stack works. The Last Element inserted by the user is s
Hello all,
In JavaScript we can create objects in many ways, some of them are listed below:
We can create objects by using new keyword and we can assign a value to the object while creating in or we can also set the various properties of that obj
In Joomla admin when we creating Menu and give the menu alias name it's working fine.
But sometimes, the case when we change the alias name of one menu.
For example: we change example.com/mymenualias1 to example.com/mymenualias2
We are redirected
Well, in Java technology an int is a primitive type while an Integer is an Object or wrapper class. Meaning, if you made a new Integer:
Integer integerObj = new Integer(6);
You could call some method on integerObj:
String str = integerObj.toStrin
Welcome to Findnerd. We are going to explain the storage procedure and functions. It is also known as stored routines. Stored routines is available from Mysql5.7.
There is table named proc which is required to work with stored routines. It will be cr
HTML5 Provides new feature of geolocation API which can help user to find his current location and share the location to the web site.
It works with the javascript which capture the latitude and longitude of the user. It works with the global naviga
Hello folks,
How css triangle works ? actually when we create css triangle, its means we are just showing and hiding borders of any element.
The angle intersects at (45°) so the intersection edge is used by border here and we can also skew an angle
Extreme Programming (XP):- A software development approach which assists better software standard and responsiveness to modify customer requirements.
Being a part of agile software approach, it encourage frequent delivery. Development circle/patter
When we use jQuery event handler, adding return false works same as adding both e.preventDefault and e.stopPropagation on the jQuery.Event object.
e.preventDefault() will stop the event to occur and return false also prevents that event from propaga
Hello Readers,
Jquery blur is the jquery method which is used to attach the function to the jquery event and the function get executed to a given element after the event occurs. Event lose the focus when we click on input field and it performs the a
