Skip to main content

Posts

Showing posts from March, 2015

Object Orientated Programming Concepts - Java Intermediate Tutorial #1

Object Orientated Programming Concepts - Java Intermediate Tutorial #1 Please don't drag the nozzle across the timeline just cause its to long, this is important stuff. Here we will dive into the goodies of OOP and Java by learning how to work with a bigger project involving more than 1 class.

Java Forever And Ever - Java vs Windows .Net

Java Forever And Ever - Java vs Windows .Net Funny Video based on the Microsoft .net platform And Java... Why do we always use .NET? Are there no developing platforms?

Java SE 8 - lntroduction to Lambda Expressions

Java SE 8 - lntroduction to Lambda Expressions

Java Algorithms and Data Structures

Java Algorithms and Data Structures Welcome to my Java Algorithms tutorial. In this series I will cover everything there is to know about Java algorithms and data structures. An algorithm is just the steps you take to manipulate data. A data structure is the way data is arranged in memory. There are 3 main data structure operations I will focus on first being inserting, deleting and searching for data.

How Can I Become A Good Programmer

How Can I Become A Good Programmer Motivational video for new beginner programmers: By industrialist and entertainers like: bill gates, larry wall, mark zuckerberg and will i am.

Core Knowledge Needed to Write Java Code

Core Knowledge Needed to Write Java Code In this Java programming Tutorial I'll teach you all of the core knowledge needed to write Java code in 30 minutes. This is the most popular request from everyone. I specifically cover the following topics: primitive data types, comments, class, import, Scanner, final, Strings, static, private, protected, public, constructors, math, hasNextLine, nextLine, getters, setters, method overloading, Random, casting, toString, conversion from Strings to primitives, converting from primitives to Strings, if, else, else if, print, println, printf, logical operators, comparison operators, ternary operator, switch, for, while, break, continue, do while, polymorphism, arrays, for each, multidimensional arrays and more.

Java Binary Search Tree

Java Binary Search Tree Welcome to my tutorial on the Binary Tree in Java. On average a tree is more efficient then other data structures if you need to perform many different types of operations. In this tutorial I'll show you what a binary tree is, and how to create, add, traverse and find nodes. I'll also explain all the terminology used when describing tree structures. We'll cover nodes, paths (edges), traversing and much more.