1 On4XLx1lPeEAvJLrmojd1g

7 Tips to Learn Programming Faster

November 13, 2018 admin 0

1. Learn by practicing. Always play with the code while learning 2. Code by your hand. It sharpens proficiency and you’ll need it to get a job 3. Grasp the fundamentals for long term benefits 4. Take breaks when debugging 5. Ask for help from anyone. You’ll need it 6. […]

12

Basic Stages of Software Development -Life Cycle

November 8, 2018 admin 2

Process Basic Stages of Software Development -Life Cycle The Software Development Life cycle is a process of building a good software and its Life cycle stages provides Quality and Correctness of good software. All the stages of Life cycle are important in itself. One Wrong step in Life cycle can […]

Untitled 1

What is iPhone?

November 8, 2018 admin 0

iPhone is a smartphone made by Apple that combines an iPod, a tablet PC, a digital camera and a cellular phone. The device includes Internet browsing and networking capabilities.

Untitled

Android Permission

November 8, 2018 admin 2

Protects Resources & Data What are Permissions? Android Protects Resources & Data with Permissions. Normally Used to : Limit Access to User Information (Eg: Contacts) Limit Access to Cost Sensitive APIs (Eg: SMS/MMS) Limit Access to System Resources (Eg: Camera ) Permissions are represented as Strings. Declare in the Manifest.xml […]

android adapters 2 638

Android Adapters

November 8, 2018 admin 4

Android provides several sub classes of Adapter that are useful for retrieving different kinds of data and building views for an Adapter View . The two most common adapters are: 1. Array Adapter 2. Simple Customer Adapter Array Adapter ArrayAdapter adapter = new ArrayAdapter<String>(this,         android.R.layout.simple_list_item_1, myStringArray); The arguments for this […]