
Search In
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
From my previous blog,we all know that what prefabs are. Now,I want to explain how we instantiate prefabs and what are its advantages.
public class preafabDemo : MonoBehaviour
{
var ball:GameObject;
// Use this for initializati
AJAX is a topic which comes under PHP AJAX Stands for Asynchronous JavaScript and XML. AJAX is used to update segment of web pages, without refreshing the whole page. By using AJAX we can create dynamic web pages easily and very fast.
Hi i want to disable (delete) these permissions from my app
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission androi
To record the audio, Android provide a class "MediaRecorder" , you just need to create its instance.
Step 1:-
In your xml, take two buttons to start and stop recording.
Step 2:-
Declare the needed variables
private MediaRecorder audio
ARRAYS
1). An array is a collection of homogeneous elements.
2. An array is a derived data type.
3) Any array is like a built-in data types. All we have to do is to declare an array variable so that we can use it.
Example of Array to find the sum
One summer later, the ALS Association says about 40% of the ice bucket money, $47.1 million, has been spent or budgeted toward specific purposes. In time, it says the plan is to pour all $115 million back into five main spending buckets. Oakley Glass
Union is a derived type as structures are. Union can be declared in the same manner as structures just the keyword used in defining union in union where keyword used in defining structure was struct.
union car{
char name[50
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
Hello Readers,
slice() is the jquery method which is used to select the subset part of all the part of the element or it is used to select the element from start to end position having indexing zero. Both start and end are integer value and start pa
