Fundamentals of Android

History of Android Android environment was developed by Google Inc., America. It was first released in September 2008. Introduction of Android Android has revolutionized the mobile industry, empowering millions of users with powerful and customizable devices, and providing a platform for developers to create innovative and engaging applications. Android’s widespread adoption and Read more…

Loading

Exception Handling

Introduction of Exception Handling in VB .net Exception: An Exception, in OOP programming, is a hidden, unwanted, abnormal unexpected, or exceptional event that occurs during the execution of a program and interrupts the normal flow of the program. When a program encounters an exception, it stops executing the current code block Read more…

Loading

Exception Handling Examples

Example : Exception Handling Examples in VB .Net to show the concept of System Exception Handling. Example : Exception Handling Examples in VB .Net to show the User Defined Exception Handling concept. Example : Exception Handling Examples in VB .Net to show the concept of Multiple Catch Statements.

Loading

Class and Object Examples

Example : A Class and Object Examples in VB .NET program using Subroutine in Console Application. Example : A VB .Net program to demonstrate Private Methods using a Console application. Example : A VB .Net program to demonstrate Shared(Global) Variables using a Console application. Example : A VB .Net program Read more…

Loading

Class & Object in Php

Introduction Class and Object are one of the most important features of OOPs. Definition Class A class is simply a template for objects. A class is created by using the ‘class’ keyword, followed by the name of the class and a pair of curly braces ({}). All the properties/variables and methods/functions Read more…

Loading

Error & its Type in Php

Introduction Error is one of the major hindrances in the programming world. The error is generated in the program mainly due to incorrect or partial/incomplete knowledge of programming languages syntax.  Definition An error is one or more faults or mistakes in a Php program that may be caused by writing Read more…

Loading

Function in Php

Introduction Functions are essential building blocks of any PHP program, hence called Backbone part of Php, as they help to break down complex tasks into simpler & smaller ones. Definition A function is a sub-program/block of codes of a (complete) program that can be used repeatedly by the developer inside Read more…

Loading

String in Php

Introduction The string is the core-components part of Php for creating and manipulating strings in various ways. Definition A string is a sequence of characters of arbitrary length. Characteristics String literals/contents are denoted by either single or double quotes. For example – ‘Employee’ or “Employee” or “512” or ‘512’. To Read more…

Loading

Array in Php

Introduction of Array in Php It’s one of the most popular, simple, linear and static data structures. Definition of Array in Php PHP array is a storage that holds multiple values of similar type in a single variable. Features of Array in Php An array holds a group of values. We can Read more…

Loading

Control Statements in Php

Control statements in Php are code statements used to control the flow of execution of a program based on certain conditions or criteria. PHP provides various types of control statements, including: Types of Control Statements in Php Conditional/Decision Control Statements in Php: Conditional statements allow the execution of specific code Read more…

Loading