
Search In
For loop:
In swift there are two types of for
loop:
1: for-in loop
for-in loop with Array:
let myIntArray = [
10,20,30,40,50,60,70];
var index = 0;
for value in myIntArray {
println(" MyIntArray[\(index)]=\(value)”);
}
for-in loo
Whilst setting up Sharepoint 2013 on Windows server 2012 R2, we need the IIS Admin Service running on the server. But sometimes service stopped running and raised the error says "Could not start the IIS Admin Service - error code 2146893818".
Anoth
Hello All,
Working with asp.net web api, we have multiple ways of handling error that is at controller level, method level we can use try and catch block and we can put our logic there to handle errors.
But to handle error occurred any where in our
Hello Readers,
In my previous blog I have explained about How to implement cron job using laravel 4.x
Now, In this Blog I will guide you How to add folder in controller using laravel 4.x
If we want to add our own folder in controller and define co
Unity 5 comes with the advancement and new approach. In Unity 5 there is no need to set physics manually but you do need to set max angular velocity of the object through coding individually . By doing this you can set max angular velocity to select
Jquery .attr():
Get the value of an attribute for the first element in the set of matched elements.
An attribute value may only be a string.
The attributes contains basic information along with some additional information about an HTML elemen
Prototype in JavaScript
A prototype is nothing but an object from which other objects inherit their properties and every object in JavaScript has a prototype by default.
Objects in JavaScript is primitive data type which may be Null, Undefined
In pessimistic locking a particular row in the database is exclusively locked so that other updates on the same record are blocked . This mechanism has the advantage that when a certain operation is going on the selected row other user cannot read or
Polymorphic association is little tricky to understand among all the rails association. Using this association one model can have belongs_to association with more than one model in a single line of association. As for example in a social networking s
Hi again, here you will learn how to insert data in already created table in SQLITE. You will find it helpful if you are well aware with basic terminology SQLITE if not please go through my previous blog. It will might help you to understand this b
