PLAY PODCASTS
How to Program with Java Podcast

How to Program with Java Podcast

112 episodes — Page 3 of 3

String Type in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode Learn all about the Java String variable type. The String is a widely used and fairly complex variable type, but we will cover everything you need to really understand what it's all about!

Jan 10, 201333 min

Inheritance in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode You will learn the ins and outs of Inheritance. This concept is one of the three key concepts of object oriented programming, so it's an important one to understand.

Jan 5, 201325 min

Objects and Static Keyword in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... We will talk in depth about the Java Object and what it's so important to the Java programming language. We will also touch on the static keyword, as it pertains to the Java Objects with respect to the Class blueprint.

Dec 19, 201231 min

Primitives in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode of the How to Program with Java podcast, we'll learn about Primitive data types and why they are used in Java. We'll talk about the difference between the primitive types and their Object Wrapper counterparts. We will cover when to use one over another and some important things to understand about Primitives!

Dec 12, 201226 min

Arrays in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode We will learn about Arrays in Java, why they are useful and what important things we should know about Arrays before we start to use them.

Nov 29, 201233 min

Methods in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... I will teach you everything you'll need to get off the ground with what a method is an how they are used in Java.

Nov 20, 201223 min

Java Hello World

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode You will learn how to create your first Java program. This is usually known in the programming community as your "Hello World" program. This signifies that you have everything properly setup and you have written the most basic code to get your first program running and operating correctly.

Oct 31, 201226 min

Syntax and Tools in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode of the How to Program with Java podcast We will talk about what Syntax is in the Java programming language, and why it's the toughest part of learning the language. Also, we'll talk about some tools that will make your life easier, especially when it comes to syntax!

Oct 14, 201225 min

Data Structures in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp Data Structures This episode of the How to Program with Java podcast talks about Data Structures. How they are used in Java, why they are important and when to use them. Examples of Data Structures: List, Map and Set.

Oct 4, 201229 min

What are Control Structures in Java?

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp Control Structures Wiki: A control structure is a block of programming that analyzes variables and chooses a direction in which to go based on given parameters. The term flow control details the direction the program takes (which way program control "flows"). Hence it is the basic decision-making process in computing; flow controldetermines how a computer will respond when given certain conditions and parameters. -describe it in more human terms - code read LINE BY LINE from top to bottom, and for the most part left to right) - CODE FLOW - choose your own adventure... only you can have loops - computer has a decision to make - What are the different kinds of control structures - IF statements - Loops - For - While - Do While Contact me with any questions here: [email protected]

Sep 27, 201228 min

Variables in Java

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp Fundamentals of Programming with Java - All programming languages share common traits - Java in particular is an Object Oriented programming language - Everything can be represented as an Object (think of of nouns in the English language) - a Chair, a Desk, a Person, a User etc. Variables - What is a variable? - In computer programming, a variable is a storage location and an associated symbolic name which contains some known or unknown quantity or information, a value. - cryptic, here's what it really means: - Store information for later use, and store it in a way that you can reference it - this is known as a variable name! - variable name is just a word, a word that represents what you're storing - if you go to a website, website asks for your name, you type it in, boom that's a variable Variables have Types - String - store a regular sentence (alphanumeric - numbers and letters) - Integer - Whole numbers on (no decimals) - Double - Number with decimals (about 16 significant figures) - Float - Number with fewer decimal places than Double (about 8 significant figures) Your Homework https://www.coderscampus.com/basic-programming-concepts/

Sep 22, 201231 min

Intro - Who is Trevor Page?

Here's episode 1 of the How to Program with Java Podcast. I'm very excited to kick off this podcast and can't wait to see where this journey takes me! Who am I? - Trevor Page - 38 Years old - I Live near Toronto, Ontario, Canada What do I do for a living? - Senior Software Engineer / Product Development Lead What is this podcast about? - Helping people learn how to code and get jobs in the industry - Compliments website https://coderscampus.com Here are the links I mention in the episode: http://howtoprogramwithjava.com/session1 https://www.facebook.com/HowToProgramWithJava http://twitter.com/programwithjava https://www.coderscampus.com/contact

Sep 18, 201219 min