The Date object is a datatype built into the JavaScript language. Date objects are created with the new Date( )…
Read More

The Date object is a datatype built into the JavaScript language. Date objects are created with the new Date( )…
Read More
The Array object lets you store multiple values in a single variable. It stores a fixed-size sequential collection of elements…
Read More
The String object lets you work with a series of characters; it wraps Javascript’s string primitive data type with a…
Read More
The Boolean object represents two values, either “true” or “false”. If value parameter is omitted or is 0, -0, null,…
Read More
The Number object represents numerical date, either integers or floating-point numbers. In general, you do not need to worry about…
Read More
JavaScript is an Object Oriented Programming (OOP) language. A programming language can be called object-oriented if it provides four basic…
Read More
If you want to get suggestions , when you type in an editable text field , you can do this…
Read More
Many times you would like to place a button on your webpage to print the content of that web page…
Read More
void is an important keyword in JavaScript which can be used as a unary operator that appears before its single…
Read More
JavaScript supports three important types of dialog boxes. These dialog boxes can be used to raise and alert, or to…
Read More
What is Page Redirection ? You might have encountered a situation where you clicked a URL to reach a page…
Read More
What are Cookies ? Web Browsers and Servers use HTTP protocol to communicate and HTTP is a stateless protocol. But…
Read More
What is an Event ? JavaScript’s interaction with HTML is handled through events that occur when the user or the…
Read More
A function is a group of reusable code which can be called anywhere in your program. This eliminates the need…
Read More
JavaScript provides full control to handle loops and switch statements. There may be a situation when you need to come…
Read More
The for…in loop is used to loop through an object’s properties. As we have not discussed Objects yet, you may…
Read More
The ‘for‘ loop is the most compact form of looping. It includes the following three important parts − The loop…
Read More
While writing a program, you may encounter a situation where you need to perform an action over and over again.…
Read More
You can use multiple if…else…if statements, as in the previous chapter, to perform a multiway branch. However, this is not…
Read More
While writing a program, there may be a situation when you need to adopt one out of a given set…
Read More
You can easily control your ringer volume and ringer profile i-e:(silent,vibrate,loud e.t.c) in android. Android provides AudioManager class that provides…
Read More
Android has a built in microphone through which you can capture audio and store it , or play it in…
Read More
What is an Operator? Let us take a simple expression 4 + 5 is equal to 9. Here 4 and…
Read More
Animation is the process of creating motion and shape change Animation in android is possible from many ways. In this…
Read More
JavaScript Datatypes One of the most fundamental characteristics of a programming language is the set of data types it supports.…
Read More
There is a flexibility given to include JavaScript code anywhere in an HTML document. However the most preferred ways to…
Read More
All the modern browsers come with built-in support for JavaScript. Frequently, you may need to enable or disable this support…
Read More
JavaScript can be implemented using JavaScript statements that are placed within the <script>… </script> HTML tags in a web page.…
Read More
A Dialog is small window that prompts the user to a decision or enter additional information. Some times in your…
Read More
Android application publishing is a process that makes your Android applications available to users. Infect, publishing is the last phase…
Read More
Android provides Built-in applications for phone calls, in some occasions we may need to make a phone call through our…
Read More
In Android, you can use SmsManager API or devices Built-in SMS application to send SMS’s. In this tutorial, we shows…
Read More
Email is messages distributed by electronic means from one system user to one or more recipients via a network. Before…
Read More
Android location APIs make it easy for you to build location-aware applications, without needing to focus on the details of…
Read More
A notification is a message you can display to the user outside of your application’s normal UI. When you tell…
Read More
Android drag/drop framework allows your users to move data from one View to another View in the current layout using…
Read More
1,651 total views, no views today
Read More
Implementing own components in pre built-in components with extending subclass with own defined class Android offers a great list of…
Read More
A style resource defines the format and look for a UI. A style can be applied to an individual View…
Read More
Events are a useful way to collect data about a user’s interaction with interactive components of Applications. Like button presses…
Read More
Input controls are the interactive components in your app’s user interface. Android provides a wide variety of controls you can…
Read More
The basic building block for user interface is a View object which is created from the View class and occupies…
Read More
1,599 total views, no views today
Read More
// Program sortare prin interclasare. Datele se gasesc in fisierul SIR.DAT #include<stdio.h> #include<conio.h> #define N 100 void Interclasare(int a, int…
Read More
An Android Intent is an abstract description of an operation to be performed. It can be used with startActivity to…
Read More
A thread is defined as the execution path of a program. Each thread defines a unique flow of control. If…
Read More
A Fragment is a piece of an activity which enable more modular activity design. It will not be wrong if…
Read More
C# allows using pointer variables in a function of code block when it is marked by the unsafe modifier. The…
Read More
We discussed that delegates are used to reference any methods that has the same signature as that of the delegate.…
Read More
A content provider component supplies data from one application to others on request. Such requests are handled by the methods…
Read More