C# Programming Sample: Switch-Case Operator

C# TASK:

Create an application that allows the user to input money value for bank deposit, and deposit rate (in percents). Once the user provides this data, he should be able to derive the state of deposit based on amount of months he inputs. And vice versa, he should be able to derive amount of months required for the deposit to reach the amount of money he inputs. Use switch-case construct for handling the different choices of the user. Continue reading

Javascript Code Examples: FOUR FUNCTION CALCULATOR

Introduction: The aim of this project is to create a four function calculator using JavaScript programming language. The calculator designed performs addition, subtraction, multiplication and division of tow given numbers.

Code Implementation:

After the basic HTML declarations, we define the type attribute which specifies the type of document for the Internet media. In this project we define <style type="text/css"> which means that the content is CSS. Continue reading

Android Development Examples: Application Development

ANDROID TASK:

Create new Android application which would allow the user to input some text, and then transfer this text to a separate TextView by clicking on it.

SOLUTION:

In this sample we are going to create a basic Android application using the official SDK, Android Studio (the installation of which also requires Java SDK being installed). Once Android Studio is installed and started, you will need to start a new Android Studio project. Continue reading