Programming Archive

Facebook query language[FQL] is the SQL styled query language used to fetch the data from the graph api which we can tweak to build an application. Before beginning you need to know the basics of graph api and facebook platform which can be explained by this article. Facebook ‘s FQL is the easy way to fetch the information needed by your application.The query language is easily understandable since it resembles the SQL. We are going to create a facebook application to make the clear understanding about the facebook query language.The application is simple we will create a page which shows how many friends are still single. how many friends are Engaged Which city has your maximum number of friends See how to setup the basic facebook application Setup the [&hellip

Read More...

Google announced API explorer to help new developers to get started with Google API without any programming.The latest tool from google aimed at new developers wanting to try out Google API’s right from the browser.You can execute the api calls and can analyse the response data that help you learn API’s working

Read More...

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.for example, we can store 5 values of type int in an array without having to declare 5 different variables, each one with a different identifier. Instead of that, using an array we can store 5 different values of the same type, int for example, with a unique identifier

Read More...