Photo

Software Development #7 - Inheritance Inheritance - Derives characteristics and behaviours from those above us. If a system has classes such as Person and Student. We know both of these objects have attributes in common ( student is person). This saves on duplicate code and we use a technique known as Inheritance to minimise copying. This allows systems to re use code and make programs smaller and easier to understand and maintain. #softwaredevelopment #csharp https://www.instagram.com/p/BtvS4iqhBEX/?utm_source=ig_tumblr_share&igshid=egid9crzx03i
0 notes
Photo

Software Development #6 - Instances To use a class within an OO system we create one or more instances of the class. The behaviour(methods) are defined once in the class, all instances of a class have their own properties and have access to the method defined in the class. Objects may send messages to one another, when an object receives a message, a method will be executed. To pass a message we have a sender object and receiver object, the receiver gets the message it carries out the task(method). https://www.instagram.com/p/BtEK7uMBdeG/?utm_source=ig_tumblr_share&igshid=9jppeoasn90y
0 notes
Photo

Software Development #5 - Classes. A CLASS is a template for creating OBJECTS. OO software will often use more than one copy of the object or INSTANCE. Each instance is referred to as an object with its own property values but share METHODS. A Class Diagram can be used to represent Variables and Methods , the attributes and their types are list first and methods below separate. The class name always starts with a Capital letter. https://www.instagram.com/p/BqsmP1yBGJB/?utm_source=ig_tumblr_share&igshid=r8k1fka1vjy3
0 notes
Photo

BabyPips #4 - The Different Ways to Trade Forex. Forex provides different ways in which investors can trade. Some of the most popular ones are SPOT forex, currency FUTURES, currency OPTION and currency EXCHANGE-TRADED FUNDS (ETF's). FUTURES - Contract to buy/sell a certain assest at a specified price on a future date. OPTIONS - An financial instrument that gives the buyer the option but not an obligation to buy or sell. ETFs- Offers exposure to a single currency or a basket of currencies. http://etfdb.com/etfdb-category/currency/ Spot - Currencies that are traded immediately "on the spot", using the current market price. https://www.instagram.com/p/BpwV9i_hiXZ/?utm_source=ig_tumblr_share&igshid=6pdauyjmmo1y
0 notes
Photo

Software Development #4 - Methods. An object has methods that define the behaviour of the object. Method are a set of instructions that complete a specific task. Methods are often used to send or receive messages to other objects such as update or share property values. (getName, setAge) https://www.instagram.com/p/BpwVMvchbLF/?utm_source=ig_tumblr_share&igshid=1ndh3idxywudl
0 notes
Photo

Software Development #3 - Object Orientated Programming. An model to reduce Programming complexity by encouraging code reuse. This divides systems into objects, objects represent different entities in the system. Object can ENCAPSULATE date or attributes with that object - PROPERTIES Objects can ENCAPSULATE logic associated with that object - METHODS https://www.instagram.com/p/BoCFGilBJ2X/?utm_source=ig_tumblr_share&igshid=1rf1lalmlhwjm
0 notes
Photo

Babypips #3 - Market Size and Liquidity. The forex market is considered an Over-the-counter(OTC) due to the fact it run electronically. US Dollar is king and makes up for 64% of foreign exchange reserves so everyone investor pays attention to the dollar. Liquidity - The amount of buying/selling volume happening at any given time.
0 notes
Photo

Software Development #2 - Hello World Once you have installed your version of visual studio its now time to create our first project...boring helloworld. 1. Select new project from start up page or File > New Project. 2. Select enviroment in which you would like to start. (console application) 3. Now name your project and press Enter. 4. You now have your first project understand the enviroment and application functions. 5.Insert Code and Debug. https://www.instagram.com/p/BmAixHRhbUN/?utm_source=ig_tumblr_share&igshid=p8ljhnezyvk3
0 notes
Photo

Software Development #1 - Install/Set-up Visual Studio. The following steps will show you how to download,install and configure VisualStudio for C#. 1. Click the link to download visual studio, https://visualstudio.microsoft.com/vs/community/. 2.Download which platform you wish to use Windows/Mac. 3. After file is downloaded follow the instructions untill completion. 4. After installation you lunch and register the product using your email and password https://www.c-sharpcorner.com/UploadFile/d0e913/visual-studio-community-2013-how-to-install-and-setup/ #softwaredevelopment#install#setup
0 notes
Photo

BabyPips #2 - What is Forex? Forex, is simply a short way in saying foreign exchange market or FX. This is a global market in which world currencies trade. currency symbols have three letters,the first two identify the country the last letter is the name of the currency. USD = [United States] [Dollar] See images for major currencies. #babypips#whatisforex
0 notes
Photo

Java: Beginner's Tutorial #1 - Installing Eclipse on Windows 7(x64) Installing Eclipse on Windows 7(x64): Step 1: Install JDK(Java Development Kit) Install JDK - https://www.ntu.edu.sg/home/ehchua/programming/howto/JDK_Howto.html#jdk-install Step 2: Download Eclipse Download Eclipse from http://www.eclipse.org/downloads. Eclipse IDE for Java Developers (32-bit or 64-bit) Step 3: Unzip Eclipse Simply unzip downloaded file into directory of your choice (e.g ""c:\mydocuments") Un-install Instructions: No need to run in-installer from control panel. Simply delete the entire Eclipse directory(e.g "c:\mydocuments")
0 notes