Posts

Showing posts from August, 2018

what is android studio ???

Image
Android Studio is the official integrated development environment (IDE) for google's android OS, built on jetbrains' intellij IDEA software and designed specifically for android development. It is available for download on windos, MACOS and LINUX based operating systems. It is a replacement for the Eclips   Android Development Tool (ADT) as primary IDE for native Android application development. Android Studio was announced on May 16, 2013 at the google I/O conference. It was in early access preview stage starting from version 0.1 in May 2013, then entered beta stage starting from version 0.8 which was released in June 2014. The first stable build was released in December 2014, starting from version 1.0. The current stable version is 3.1.3 released in June 2018. YOU CAN DOWNLOAD ANDROID STUDIO FROM HERE https://developer.android.com/studio/

what is unity ???

Image
unity is a across-platform game engine developed by unity technologies, first announced and released in june 2005 at apple inc. worldwild developers conference as an os x-exclusive game engine. As of 2018, the engine has been extended to support 27 platforms.the engine can be used to create both 3D and 2D games as well as simulation for desktop and laptops, home consoles, smart TV, and mobile devices several major versions of unity have been released since its launch, with the latest stable version being unity 2018.2.2, released on august 10, 2018.

Header files of the C++ standard library.

Image
algorithm          ios           map             stack bitset              iosfwd.      memory    stdexcept complex        iostream     new         streambuf dequeue        istream      numeric      string exception      iterator      ostream      typeinfo fstream          limits         queue           utility functional         list            set            valarray iomanip         locale.      Sstreame.       Vector

java script data type.

Image
One of the most fundamental characteristics of a programming language is the set of data types it supports. These are the type of values that can be represented and manipulated in a programming language. JavaScript allows you to work with three primitive data types:  Numbers, e.g., 123, 120.50 etc  Strings of text, e.g. "This text string" etc.  Boolean, e.g. true or false. JavaScript also defines two trivial data types, null and undefined, each of which defines only a single value. In addition to these primitive data types, JavaScript supports a composite data type known as object. We will cover objects in detail in a separate chapter.  Note: Java does not make a distinction between integer values and floating-point values. All numbers in JavaScript are represented as floating-point values.