Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Java And C++ Complete Course for Java And C++ Beginners
Rating: 4.3 out of 5(754 ratings)
84,466 students

Java And C++ Complete Course for Java And C++ Beginners

Java and C++ Programming Language in Java and C++ Complete Course for Beginners, C++ And Java All In One Course
Last updated 7/2024
English
English [Auto],

What you'll learn

  • You will learn how to write a complete Java program that takes user input, processes and outputs the results
  • You will learn OOPS concepts in Java
  • You will learn java concepts such as console output, Java Variables and Data Types, Java Operators And more
  • You will be able to use Java for Selenium in testing and development
  • You will learn C++ concepts such as console output, C++ Variables and Data Types, C++ Operators And more
  • You will learn how to write a complete C++ program that takes user input, processes and outputs the results
  • You will learn common programming constructs as they are implemented in C++ including C++ 11. Topics include the use of C++ for memory management, file input/o
  • You will learn about references, exceptions, and object-oriented programming C++

Course content

2 sections83 lectures5h 43m total length
  • Java Hello World Program4:15

    Create and run a basic hello world program in Java using Eclipse, set up a Java project and package, and print hello world from a class with a main method.

  • Java Arithmetic Operators2:54

    Explore Java arithmetic operators, including addition, subtraction, multiplication, division, and modulus, using a scanner to read integer A and B and print integer results.

  • Java Unary Operators4:08

    Explore Java unary operators, including unary minus and boolean results. See post and pre increment, as well as post and pre decrement, demonstrated with simple integer variables.

  • Java Bitwise Operators5:54

    Explore bitwise operators in java, including not, and, xor, and left/right shifts, with byte-level examples using 12 and 10 to illustrate two's complement and results such as -13 and 3.

  • Java Relational Operators2:11

    Explore Java relational operators, including ==, <, <=, >, >=, and !=, using a boolean result variable and printed outcomes to show true or false results.

  • Java Conditional Operator1:41

    Explore Java conditional operators, using boolean variables to demonstrate logical or (||) and (&&) and how results reflect true or false in examples.

  • Java Input And Output Techniques8:02

    Learn Java input and output techniques using System.out.println, print, and string concatenation, and use the Scanner class for keyboard input.

  • Java Strings3:43

    Discover how to create and manipulate Java strings using a character array and the string constructor, read input with a scanner, print results, and concatenate strings with the + operator.

  • Java String Functions11:32

    Explore Java string functions by showing how to use built-in methods like length, equals, equals ignore case, charAt, startsWith, endsWith, indexOf, lastIndexOf, replace, substring, split, and trim to manipulate text.

  • Java String Buffer and String Builder4:15

    Explore string buffer and string builder in Java, learning about capacity, append, insert, and reverse operations through practical demonstrations.

  • Java Static Keyword6:29

    Explore how the Java static keyword creates class-level variables and methods, showing shared state across objects. Learn that static can access only static data, while non-static methods access both.

  • Java Class And Objects2:58

    Explore how to define a Java class and create objects, using a Student class with name, id, and major, setters, and a display method to print each object's data.

  • Java Boolean Datatype1:56

    Learn the boolean datatype in Java by declaring boolean variables, assigning true or false, and printing them to show booleans hold only true or false.

  • Java Character Type Data2:09

    Explore the Java character type data by initializing a char with a single-quoted literal, printing it, and using ASCII and Unicode hex values such as 0041.

  • Java This Keyword3:24

    Learn how the this keyword refers to the current object, resolves variable ambiguity, and initializes a and b with this.a and this.b, including calling the parameterized constructor via this(0,0).

  • Java User Defined Exceptions5:02

    Explore user defined exceptions in Java by defining a custom below age exception, throwing it when age is under 18, and handling it with try-catch and stack traces.

  • Java Switch Case Statement4:57

    Explore how to use Java switch case statements with a scanner input to read a character and handle cases A, B, C, D and a default, with breaks.

  • Java Arrays4:12

    Explore how to declare and initialize Java arrays—int, float, and char—with zero-based indexing and manual or input values, and print them using for and for-each loops.

  • Java Array List2:39

    Demonstrates creating an ArrayList of city names, adding cities, checking size, iterating with a for-each loop, and inserting at index 2 to show the updated order.

  • Java Thread Synchronization6:08

    Explore Java thread synchronization with a transfer and message transfer example, showing how a synchronized block creates a critical section and serializes message prints.

  • Java Vectors3:16

    Explore Java vectors by adding integer elements, printing contents with a for-each loop, and updating the size when inserting 100 at index 3.

  • Java Packages3:29

    Explore Java packages by defining a my math class in the math package, importing it in a package demo, and using subtract, multiply, divide, and a recursive factorial.

  • Java Polymorphism Function Overriding4:00

    Explore Java polymorphism through function overriding by comparing an animal base class with dog and frog subclasses, invoking super and overridden movement methods to demonstrate method overriding.

  • Java Sets.5:03

    Explore the Java set interface and its objects, perform union, intersection, and difference, and observe duplicates removed and null elements handled.

  • Java Real Type Data.2:26

    Explore real type data in Java with float and double types, using 50.26f, performing type casting from int to float, and observing fractional results like 16.666666 and 3.14285714.

  • Java Polymorphism functions overloading3:44

    demonstrates Java polymorphism through function overloading with three area methods, resolving calls by parameter types and counts to compute rectangle, square, and circle areas using static methods.

  • Java Stack Class3:16

    Demonstrates managing a Java stack of integer wrapper objects using push, pick, size, isEmpty, and pop, showing top elements 50 down to 10 as they are popped.

  • Java Queue.3:04

    Learn how to create and manipulate a queue in java using java.util and a linked list, including add, size, isEmpty, peek at the first element, and remove operations.

  • Java Programming Abstraction10:21

    Explore abstract classes and abstract methods in Java, showing how to declare abstract methods, extend a base class, enforce implementation in subclasses, and instantiate concrete classes.

  • Java Priority queue5:32

    Explore Java priority queue basics by implementing the Comparable interface, defining a rank-based compareTo method, and using add, poll, and toString to manage and display students in order.

  • Java Inheritance3:22

    Demonstrate Java inheritance using an Employee base class with a protected salary and subclasses, Developer and Tester, each adding a bonus. Display inherited salary plus bonus as 40,000 and 50,000.

  • Java Commenting Techniques2:35

    Explore Java commenting techniques, including single line comments with the double slash and multi-line block comments, and learn Eclipse toggle and block comment workflows.

  • Java Linked List4:03

    Explore Java linked list operations by constructing a list of integer wrappers, adding elements individually and via addAll from an array, then printing size and contents.

  • Java Interfaces18:20

    Explore Java interfaces, including defining and extending interfaces, implementing them in classes, creating interface objects, and using default and static methods, constants, and abstract classes.

  • Java Multithreading by extending thread class4:22

    Extend the thread class to implement multithreading in Java, override the run method, and manage a 0 to 9 loop with Thread.sleep for 100 milliseconds while handling interrupted exceptions.

  • Java Multithreading by runnable interface4:08

    Explore multithreading using the Runnable interface by implementing run, creating threads, and printing thread IDs with loop indices to illustrate parallel execution and varying output sequences.

  • Java Hash Map4:28

    Explains hash map in Java, a map implementation that allows null keys and values, does not guarantee order, and demonstrates put, retrieval, and key-based updates.

  • Java Hash Table4:46

    Learn how a Java hash table maps string keys to integer values with put and get, updates keys, and reveals the maximum value.

  • Java Functions5:52

    Explore Java functions, including user defined and library functions, with factorial and power examples, recursion and non recursive behavior, return types, and prototypes.

  • Java Final Keyword5:04

    Learn how the final keyword in Java enforces initialization of a final variable, prevents overriding of a final method, and blocks extending a final class, with A and B.

  • Java Comparator To Sort2:58

    Learn to implement the java.util comparator interface, supply a compare method, and sort a city list alphabetically to demonstrate the Java comparator in action.

  • Java Continue Statement2:59

    The lecture demonstrates the Java continue statement in a while loop, showing how continue skips the rest of the loop body and eventually breaks.

  • Java Break Statement1:35

    Demonstrate the Java break statement inside an infinite while true loop that prints the current value of a, increments it, and exits when a equals ten before finishing the program.

  • Java For Loop4:49

    Explore the Java for loop by building a sum from 0 to 9 that reaches 45, showcasing initialization, condition, and increment, and illustrating loop scope and inline versus separate statements.

  • Java While Loop2:56

    Use a while loop in Java to sum numbers from 0 to 9 by initializing a and sum to zero and updating sum as a increases, final sum equals 45.

  • Java File Handling4:42

    Java file handling demo copies content from sample.txt to sample copy.txt using file input and output streams, reading and writing character by character in a try-catch-finally block.

  • Java Constructor Of A Class4:37

    Explore Java constructors by creating an account class with parameter and non-parameter constructors, initializing name, account number, and balance, and using set details, deposit money, and get details.

  • Java Exception Handling10:06

    Explore Java exception handling with try-catch-finally, preventing division by zero and parsing errors, using multi-catch and a universal catch, and reading user input with buffered reader and io exceptions.

  • Java Enumeration and iterators5:23

    Demonstrates enumeration and iterators in Java by populating a word list from strings using a vector, converting to a linked list, and iterating over elements with an iterator.

  • Java Wrapper Classes8:08

    Learn how Java wrapper classes encapsulate primitive values, create integers with constructors, convert strings with parse int methods, and generate binary and hexadecimal representations using wrapper methods.

  • Java Access Specifiers6:47

    Examine java access specifiers—default, public, private, and protected—within the same package; see how inheritance and the super keyword reveal or hide members via display methods that show x, y, z.

  • Java Built-In Exceptions4:39

    Explore Java built-in exceptions, handling array index out of bounds, null pointer, and number format errors with try-catch blocks and practical remedial messages.

Requirements

  • Basic Understanding of Computers
  • No prior knowledge of Java and C++, things will be covered in this course

Description

Why Learn Java?

Java is a general-purpose, versatile and popular programming language. It's great as a first language because it is concise and easy to read, and it is also a good language to have in any programmer's stack as it can be used for everything from web development to software development and scientific applications.

Take-Away Skills:

This course is a great introduction to both fundamental programming concepts and the Java programming language. By the end, you'll be comfortable programming in Core Java.

This Course is the first of a series of courses that make up the Core Java Specialization. The Core Java Specialization, in turn, is part of a series of programming specializations and designed to provide the skill set necessary to be hired as an IT developer using Java in many corporate environments. This course includes hands-on practice and will give you a solid knowledge of the Java language. After completing this course, you will be able to identify Java’s benefits, program in basic Java syntax using Java data types, and incorporate branches and loops. The audience for this course: - Anyone interested in learning Java - Programmers - Technical Managers - Application Developers

Topics Covered:

Module-1: Java Fundamentals

  • Basic Java Program

  • Compile and run a Java program

  • Understanding console output

  • Java Variables and Data Types

  • Java Operators

  • Conditional statements

  • Loops

  • Break and continue

  • Arrays

  • Single Dimensional array

  • Double Dimensional array

  • String Class

  • String methods

Module-2: Java OOPS Concepts

  • Classes and Objects

  • Java methods

  • Passing parameters to the methods

  • Call by value and call by reference

  • Java Constructor

  • Method Overloading

  • Constructor Overloading

  • this keyword

  • Static variables and methods

  • Java Inheritance

  • Method Overriding

  • super keyword

  • final keyword

  • Java Interfaces

  • Java Packages

  • Access Modifiers

  • Exception Handling

  • Array List

  • Hash Map

  • JDBC 

    C++ Complete Training Course 2022

This course will help you learn C++ basics and give you hands-on experience to create your own projects and work with computer memory. With its adaptability and fast rendering, you’ll find the C++ programming language used everywhere, from web browsers to game development and operating systems to science and machine learning tools.

This C++ Programming Course is designed to meet the industry benchmarks. This C++ programming course will give you extensive knowledge of Object-Oriented Programming in C++, Coding Styles and Design Patterns, Generic Programming and Standard Template Library.

The course examines common programming constructs as they are implemented in C++ including C++ 11. Topics include the use of C++ for memory management, file input/output (I/O), pointers, references, exceptions, and object-oriented programming. Basic data structures such as linked lists, stacks, and queues are covered in terms of their usage and implementation using C++.

Also, this course has been created to help you learn all the basics concepts that are the core of C++ Programing. This way, you will not only program in this language, but you will also understand the logic behind this programming language and will be able to create various applications in it on your own. Indeed, if you don’t have prior programming experience, the hardest part is understanding the programming logic and this course covers all the topics to help you succeed in C++ programming.

Subjects/topics you will learn through the course are

  • C++ Overview

  • Functions and variables

  • Classes

  • Operator Overloading

  • Initialization and Assignment

  • Storage Management

  • Inheritance

  • Polymorphism

  • Exception

  • Templates

See you Inside the course. Thank you

Who this course is for:

  • Beginner in Java development And C++ development
  • Beginner in software development