
Create a Python program that reads a number as float, then prints whether it is positive, negative, or zero using a simple if/else structure.
Create a simple Python project that checks whether a user-entered number is even or odd using x % 2 == 0 in an if statement, then print the result.
Learn to check the maximum of three numbers in Python by taking user input for x, y, z and using if statements to compare and print the maximum.
Learn how to check divisibility in python by prompting for numerator and denominator, using the modulus operator to test x % y == 0, and printing the result.
Learn how to convert Celsius to Fahrenheit in Python by taking user input, applying the 9/5 and 32 formula with rounding, and printing the result.
Learn how to convert Fahrenheit to Celsius in Python by prompting for input, applying the (F-32)*5/9 formula, rounding results, and printing the Celsius value.
Builds a Python thermometer app that converts between Celsius and Fahrenheit using user input and unit detection, with rounding and print statements for clear results.
Learn to calculate mass, density, and volume in Python by prompting user input, converting to floats, and using conditional logic to compute and print the results.
Determine the quadrant of a point in Python by inputting x and y as floats and using sign checks to identify the first to fourth quadrants, origin, or axes.
Master checking triangle existence by inputting sides in Python, using the triangle inequality and if statements to reveal whether a triangle exists.
learn to check leap year in Python by prompting for a year and using year modulus four to determine and print the result.
This lecture shows how to check if a point lies inside a circle at origin in Python by computing hypotenuse with math.sqrt and the power function, comparing to the radius.
Learn to build a Python program that solves quadratic equations by importing math, reading coefficients from user input, computing the discriminant, and printing the roots to two decimal places.
Create a Python number guessing game that imports random, generates a number from 1 to 100, and guides the user with 'less' or 'greater' feedback until right guess, tracking trial.
Learn to print the ascii character table in Python using a for loop over a range, printing characters and inserting a line break every ten entries.
Create a Python 10x10 multiplication table using a while loop, with nested x and y values and formatted output to display the products.
Develop a Python multiplication table by implementing a nested for loop over range 1 to 10 and printing products, building on the previous while-loop example.
Learn to convert a decimal number to bases 2 through 9 in Python using user input, base validation, and a loop with modulus and division to build the result.
Learn to build a simple Python calculator, a non-gui program that performs addition, subtraction, multiplication, and division with user input and a zero-to-exit option plus division-by-zero checks.
Create a Python program that determines the number of digits in an integer by taking absolute value, counting digits with a loop that divides by ten, and printing the result.
Develop a python program that takes an integer, uses its absolute value, and computes the sum and product of its digits with a while loop and modulus ten.
Learn to implement a binary search on an ordered array in Python to find an element’s index. Uses a while loop with low, high, and mid on a sorted list.
Calculate the sum of the first n elements of a geometric series starting at 1 with ratio -1/2 in Python, using a while loop and user input.
Learn how to count even and odd digits in a number using Python, with input, a while loop, and simple counters for evens and odds.
Learn to compute factorials in Python using a while loop by taking user input. The code enforces nonnegative values, iterates with x until 1, and prints the result.
Calculate factorials in Python using a for loop, handling absolute values and user input to compute and print the result.
Learn to generate a Fibonacci sequence in Python using a for loop, initializing f1 and f2 and updating them while printing each term.
Learn how to compute the value of a Fibonacci element in Python using a while loop, finding positions like the 10th element (55) and the first and sixth elements.
Learn to compute the greatest common divisor of two numbers in Python by building a simple project using a while loop, modulus, and user input prompts.
Explore how to find the maximum digit in a floating point number using Python, including handling the decimal point, random numbers, and optional user input.
Develop a Python program that detects prime numbers and complex numbers using the math module and a square-root loop with user input, printing clear prime or complex results.
Develop a Python project to find quadratic equations with solutions in a specified coefficient range by inputting x1, x2, y1, y2, z1, z2 and importing math for square roots.
Learn to reverse a Python integer by repeatedly taking the last digit with x modulo ten, reducing x by ten with integer division, and building the reversed number y.
Develop Python skills by expanding alphabet strings from a start letter to an end letter using a while loop, with examples like a to z and f to m.
Explore replacing a substring in a Python string using find and a while loop, by selecting an old substring and inserting a new one, then printing the result.
Learn to select integers from a string in Python by parsing characters with a while loop, collecting digit sequences, converting them to integers, and printing the results.
Learn to sort words in a string by length in ascending order using python, by splitting input, computing lengths, and applying a bubble sort.
Learn to build a Python program that finds the longest word in a string by splitting input and comparing word lengths. Track the longest word with a simple conditional.
Build a Python program that computes the percentage of uppercase and lowercase letters in a user-provided string, counting characters with a for loop and printing two-decimal percentages.
Learn how to check if a string is a palindrome in Python by comparing mirrored characters using a for loop and the string length, with practical examples.
Learn to generate random numbers in Python using arrays by importing from random, using randint, and appending results in a for loop. Print the array elements to see the outputs.
Learn to find the maximum element in a Python array by generating random values, iterating with a for loop, and updating a max variable, then displaying the rounded result.
Learn how to find the minimum element in a Python array using a for loop and a min variable, with a random-generated list and a final printed minimum.
Learn how to generate a list of random numbers in Python, count even and odd values with a for loop and modulus check, and print the results.
Generate a mixed array of random numbers in Python and identify positive numbers using a for loop and conditional checks. Separate positives and negatives into lists and print results.
Learn to create a Python program that builds an array of random numbers, computes the arithmetic mean, and prints items greater than the average.
Replace list items with -1, 0, or 1 in Python using a for loop, turning positives into 1, negatives into -1, and zeros into 0.
Learn to check file extensions in Python by splitting the filename, lowering the extension, and validating it against a list. Handle files with no extension and report existence or absence.
Learn how to remove punctuation and symbols from text in Python, using lists of symbols like dots, commas, apostrophes, and quotation marks, with for and while loops.
Discover how to compute the intersection of two lists in Python with a for loop, print the common elements, and reveal a one line solution.
Learn to intersect two lists in Python with a single line using set operations, convert to a list to print the shared elements, and understand hashable type constraints.
Learn to find the longest ascending sequence in a Python list by generating random numbers, iterating with for loops, and tracking the maximum length and the corresponding values.
Explore python programming by generating a random list of numbers 0–4, converting to a set for uniqueness, and identifying the most frequent element by counting occurrences and printing it.
Learn to implement bubble sort in Python by creating an array, populating it, and using nested for loops to sort elements from lowest to highest.
Learn how to sort an array in Python using selection sort, with a practical project that demonstrates the selection method, loops, and basic array manipulation.
Learn to generate a matrix of random numbers in Python by importing random, building a 6x6 matrix with nested loops, and printing it.
Learn to find the row and column with maximum sum of elements in a matrix using Python, generating a random 6x6 matrix and computing the row and column sums.
Create a six by six matrix in Python and compute the sums of its rows and columns. Iterate through the matrix and print the row sums and column totals.
Explore a Python project that creates a random 5x5 matrix and sums its diagonals from both sides, using loops and indexing.
Learn to interchange the principal and secondary diagonals of a square matrix in Python using indexing and loops, with sample code and output demonstrations.
Sort the first row of a 6x6 Python matrix by reordering its columns, using for and while loops, random values, and printing the sorted matrix.
Build a simple Python project that generates a random 5x10 matrix and identifies all rows and columns containing a user-specified element, demonstrating matrix traversal and search.
Learn to generate beautiful Unicode digits in Python by mapping 0–9 to their Unicode characters, building a string with a loop, and printing a visually appealing Unicode output.
Create a simple Python project to calculate prices of products by iterating over items with a for loop, using a while loop for user input, and accumulating cost with quantity.
Learn to build a Python dictionary from two lists using a for loop or dict(zip(list1, list2)), with practical examples and code walkthrough.
Learn how to delete a random item from a Python dictionary by importing random, selecting a key with random.choice, and deleting it with del.
Define a Python function that returns the average of two arguments, obtain inputs, compute and return the result, and print the average with example runs.
Develop a Python function that fills a list with random numbers using randint, obtaining minimum, maximum, and quantity from user input and printing the resulting list.
Define a Python function to compute the arithmetic mean of a list using a for loop, summing values, dividing by the length, with user input and rounding to two decimals.
Learn to generate the Fibonacci sequence in Python by using a function, accepting a user-defined range, and printing the sequence step by step.
Learn to compute Fibonacci numbers in Python using recursion by defining a fib function with base cases 1 or 2 returning 1, and recursion for x-1 and x-2.
Learn to compute factorials in Python with recursion by defining a factorial function, using a base case of 1 and a recursive call, and calculating with user input.
Develop a Python function to compute the least common multiple using a while loop and modulus for two inputs, then print the LCM results.
Learn how to reverse the sequence of words in a string using Python by splitting the input into words, reversing the list, and joining it back for output.
Learn how to implement a binary search in Python to find a number in a list. The video builds the function, handles input, and returns the index or none.
Build a Python function called ring shift that recycles a list of numbers by moving elements via append, pop, and insert, using for loops and range to print updated values.
Learn to read a text file in Python by opening it, iterating over lines, and printing content after removing extra newline characters.
Practice reading file contents in Python using the read method, including opening the file, printing the data, and closing the file, then removing extra lines with split.
Learn how to read a text file in Python using the readline method, building a simple project that reads lines, handles file paths, and prints the collected data.
Learn how to read files in Python with the readlines method, opening a file, adjusting paths to forward slashes, printing contents, and removing the trailing newline.
Learn practical techniques to write text to files in Python, including opening with the correct path, appending content, using write and write lines, handling newlines, and reading back the results.
Learn how to read text from a file into a Python dictionary, parse prices as floats and sizes as ints, and group products into a goods dictionary.
Count lines, words, and letters in a text file with Python. Explore creating the file, opening it, and calculating lines, words, and letters.
Learn how to capture string errors in Python using try-except, validate numeric input, and handle value errors to prompt users to enter numbers only.
Demonstrate using try/except in Python to handle non existence of a number by validating user input for x, y, or z, printing the correct value or signaling a name error.
Learn how to handle non existent files in Python by using try-except to display a clear file not found error, request a file path input, and read existing content.
Learn to detect division by zero in Python with try-except and clear error messages. The example reads two numbers, divides, and prints an error if the divisor is zero.
Explore how Python raises and handles index errors when a non-existent index is accessed, with input validation, try/except blocks, and clear error messages.
Learn to raise exceptions in Python by validating user input and triggering a value error when the input falls outside the expected range, with practical, beginner-friendly examples.
Learn to define a Python class with a constructor to store employee first names and surnames, build a staff list with user input, and print joined names.
Learn to fill a list with natural numbers in Python by prompting for a range, iterating with a for loop, and printing the resulting list.
Learn to fill a Python list with random numbers using randint, with user-supplied min and max, built via a for loop and range, including int casting and simple debugging.
Select even numbers from a Python list using a one-line list comprehension that filters i for i in x if i % 2 == 0 and prints the result.
Learn how to convert a dictionary to a Python list using dict.items, separating string and integer values into y and z, and print the resulting list.
Learn how to unpack a matrix into a one-level list in Python by iterating through rows and items and printing the flattened result.
Learn to read data from a file into lines and characters using Python, building a program that reads a file into a list and prints it.
Calculate the duration of a year on a planet in Python by inputting orbital radius and orbital speed, converting units to kilometres, and computing the year in seconds.
Explore Python programming by generating a random three-digit number and computing the sum of its digits using arithmetic operations and modulo, with practical code examples.
Learn how to compute the area and perimeter of a right-angled triangle in Python using the math module, input x and y, derive z, and print results.
Learn to calculate the total surface area of a cylinder in Python by importing pi, inputting height and radius, and summing circle and side areas.
Create your first Java project, name it project one, and implement a hello world program with a main method printing 'Hello world' to the console.
Developers implement a java printwriter example to print output with a print line using system.out, creating project two in a package print and a class writer with a main method.
Explore implementing arithmetic operations in Java by building a main method that computes addition, subtraction, multiplication, division, and modulus with int and float results, printing each outcome.
Learn to read two numbers from user input in Java, perform addition, multiplication, subtraction, or division, and print the result using a buffered reader over system.in.
Build a Java program that uses the Gregorian calendar in a main method to display day, month, year, hour, minute, and second in a formatted date-time string.
Learn how to swap two different values in Java using a call by reference approach, demonstrated with multiple classes, constructors, and printouts before and after the swap.
Explore method overloading in Java by building a program that uses a buffered reader to read two integers, computes sum or multiplication, and prints the result.
Implement string overloading in Java by reading two string numbers, constructing an overload class, and printing their addition result.
Learn Java method overriding by building two classes, using extends and super, and overriding the display method to show x, y, and z values.
Use the final keyword as a variable in java to hold a reg number, create an employee with a constructor, and display the number with a display method.
Learn how to use the final keyword as a method in Java by defining a final void display method, extending a class, and invoking the display in main.
Learn how to use the finalize keyword as a method in Java and its relation to garbage collection, demonstrated with simple class and main method examples.
Learn to use static variables in Java by creating an employee class with a static company string, a constructor, and a display method that prints reg number, name, and company.
Build a Java program for an interface that collects employee details from user input, evaluates skill ratings, computes an average and overall percentage, and displays results.
Master using a superclass in Java by creating first and second super classes, extending them, and displaying x, y, and z with a show method in the main class.
Explore how to use the this keyword in Java through a hands-on demo that initializes Num1 and Num2 in a constructor and prints their values in a show method.
Learn to print nine user-entered integers as a 3 by 3 matrix in Java, using a Matrix Printer class and nested loops to format the output.
Build a Java matrix addition project that reads two matrices from user input using BufferedReader, computes their sum, and prints the result in matrix form.
Learn to write a Java program that performs matrix subtraction for a 3x3 matrix using buffered input, building on a 2x2 example, with clear user prompts and result output.
Master Java matrix multiplication by building and multiplying two 4x4 matrices, reading inputs with a buffered reader, using a multiplication factor, and printing the final result.
Learn to print a seven-level triangular pattern in Java using nested for loops, with System.out.print and println, selecting a character for each row.
Develop a triangular pattern in Java using for loops and print statements, producing the inverse of the previous design with a public static main method and x, y, z variables.
Develop a right-sliding triangular pattern in Java using nested for loops, printing symbols with System.out, and iterating x and y from 7 down to 1.
Create a triangular pattern in Java with nested for loops in the main method, printing symbols via system.out.print, and invert the pattern from one to seven.
Create Pascal triangle in Java by reading the number of rows from the user. Print a formatted triangle using Scanner for input, nested loops, and System.out.format.
Learn how to implement Floyd's triangle in Java, using java.util.Scanner for input and nested loops to print rows of numbers.
Learn to build a Java program that prints a multiplication table for a user-provided number using java.util.Scanner and a for loop from 1 to 10.
Learn to build a Java program that reads three integers via scanner and uses if statements to determine and print the largest number.
Create a Java calculator using mass operators for addition, subtraction, multiplication, and division, employing a while loop and switch cases with a buffered reader for user input.
Build a Java factorial calculator using a for loop and a scanner to read a positive number, then display the result.
Create a Java program that reads a student's score with a scanner and uses if-else to determine grade as fail, pass, or excellent by score ranges, with positive numbers only.
Read a number from user input using Scanner and classify it as negative or positive with an if-else statement, printing the result accordingly.
Build a Java program that reads a number from the user and uses x % 2 in an if statement to print whether it is even or odd.
Learn to implement the Fibonacci sequence in Java by initializing variables, using a for loop, and printing results up to a chosen count.
Develop a Java program that checks palindrome numbers by reversing digits with a while loop, using a scanner for input, and comparing the reversed value to the original.
Develop a Java program that accepts a character, uses a buffered reader and a switch statement to identify vowels (a e i o u) and consonants (default), handling uppercase inputs.
Print arrays in Java by iterating with a for loop over x.length and printing each element with System.out.println.
Learn how to read an array from user input in Java and print it with for loops and a buffered reader reading from System.in, including array length handling.
Learn to build a Java program that reads seven integers from the user, sorts them in ascending order using nested loops and swaps, and prints the sorted array.
Learn how to create a string array in Java, read seven inputs with a BufferedReader, and print the resulting values using for loops.
Learn how to sort an array in Java using Arrays.sort, print the sorted results, and implement a print method to format the array output.
Learn how to search an element in a Java array using Arrays.binarySearch, obtain the 0-based index, and print the result with a practical main method example.
Learn how to insert an element into a Java array by building a program that reads values, selects a position, and shifts elements to place the new value.
Reverse an array in Java by importing java.util, creating an ArrayList, and using Collections.reverse to show before and after reversal, with hands-on practice.
Learn to write a Java program that finds the minimum and maximum elements in an array using Collections.min and Collections.max on Arrays.asList, and print the results.
Merge two arrays in Java by combining x and y with Arrays.asList and addAll, convert the result to an array, and print it with Arrays.toString.
Learn to build a Java program that sorts a user-entered array, using a sort method and for loops with scanner input to arrange values from lower to upper.
Learn to use abstract classes in Java by defining an abstract class with an abstract method and a concrete method, extending it with a subclass, and invoking methods from main.
Implement an abstract class and abstract method in Java to compute the area of a rectangle or triangle, using concrete rectangle and triangle subclasses and a main method.
Learn how to convert an int array to a string in Java using Arrays.toString, print the result, and troubleshoot a missing public static void main in your class.
Learn to compute the average of a Java array by initializing integers, summing with a for loop, computing the average as a float, and printing the result.
Explore for loops in Java with two demonstrations, counting down from 10 to 1 and up from 1 to 10, printing values and fixing a common semicolon mistake.
Demonstrate how to create an infinite loop in Java using a simple main method and print statements to show endless output.
Learn to generate random numbers in Java by importing java.util, creating a Random object, and using a for loop with nextInt to print results and demonstrate range examples.
Learn to reverse a number in Java by reading input with a scanner and using a loop (while or for or do-while) to build and print the reversed value.
Learn to convert Fahrenheit to Centigrade in Java by reading user input with a scanner, applying the formula (fahrenheit - 32) / 1.8, and printing the Centigrade result.
Convert Celsius to Fahrenheit in a Java program by reading a Celsius value, applying the formula f = 1.8 * c + 32, and displaying the result.
Learn to reverse a number in Java using a for loop, reading input with Scanner, updating the reverse value, and printing the result, building on the earlier while loop approach.
Create a simple Java program to print prime numbers by taking user input, using a public static void main, a Scanner for input, and nested loops to identify primes.
Develop a Java program that swaps two numbers using a swap values function, printing values before and after swapping to illustrate the process.
learn a Java arithmetic swap method to exchange two numbers using x=x+y, y=x-y, x=x-y and print the results.
Learn to print the current date and time in Java using simple date format (SDF), date objects, and System.out.println with day, time, and month formats.
Learn to build a simple Java program that reads a year via scanner and determines if it is a leap year using modulus checks for 400 and 100.
Build a simple Java program that determines whether a user-entered number is prime. The code uses Scanner input and a for loop with modulus checks to report prime or not.
Create a Java program that reads a number with a scanner, computes its square root using Math.sqrt, and reports whether it is a perfect square.
Learn to implement a Java method to convert decimal numbers to binary and print the binary results using a while loop, modulus two, and a main method.
Create a Java app that reads a user number with a scanner, uses a while loop with modulus ten and division to sum its digits, and prints the result.
Learn to implement a Java method that finds the two top maximum numbers in an array, tracking max1 and max2 with a for loop and if-else logic, and printing results.
Learn how to convert a string to a character array in Java using toCharArray, iterate with a for loop, and print the resulting array with System.out.println.
Learn how to convert strings to boolean, integer, and double in Java using Integer.parseInt and Double.parseDouble, with case-insensitive boolean handling and results printed via System.out.println.
Develop a Java program to check Armstrong numbers by summing the cubes of digits, taking a positive input from the user, and reporting whether the number is an Armstrong number.
Calculates arithmetic mean in Java by reading the numbers you choose with a scanner, summing them in a for loop, then dividing by the count to print the result.
Learn to build a Java program that calculates the HCF and LCM of two user-provided numbers using a while loop and modulus operations.
Learn how to convert a decimal input to its octal representation in Java using a scanner, loops, and modulus operations, then print the octal result.
Creates a Java program to convert a user-entered binary number to its decimal value using a scanner, a while loop, the modulus operation, and clear output.
Develop a Java program that converts a user input decimal number to hexadecimal by repeatedly dividing by 16, mapping digits to 0–9 and a–f, and printing the result.
Learn how to create and display the current locale in Java, using Locale.getDefault and methods like getDisplayLanguage, getCountry, and getLanguage. Explore alternative ways, including system properties, to obtain locale details.
Explore Java array lists, create and populate an ArrayList with strings, add elements at specific indices, and remove elements by index, with hands-on code demonstrations.
Explore iterating a Java HashMap with an iterator and Map.Entry to print keys and values, using a day-of-the-week example.
Learn how to sort hashmaps by keys in Java, using a string and integer HashMap, and print elements before and after sorting to show alphabetical key order.
Learn how to sort a Java hash map by values using a custom comparator, iterate entries, and display results before and after sorting.
Learn to implement a private static Java method that finds the longest substring of a string by iterating characters, tracking candidates, and returning the result.
Learn to build a Java program that models employees, implements a toString method, generates getters and setters, and prints data for an array list.
Sorts employee objects by salary using the Comparable interface in Java; implements Comparable in Employee, defines compareTo, builds a list, and sorts with Collections.sort, showing results before and after.
Learn to sort objects in Java using the comparator interface, including implementing a sort with a custom employee class and integrating with array lists and collections sort.
Build a Java program to detect the first non-repeated character in a string using a HashMap, a Scanner for input, and break logic; observe case sensitivity.
Learn to generate permutations of a string in Java by building a small project that reads input, computes permutations with a helper method and for loops, and prints the results.
Java program finds the longest palindrome substring in a given string by computing candidates with a center around indices, using substring, loops, and a helper method.
Learn how to sort a Java array list of strings in descending order using collections sort and reverse order, with a before-and-after demonstration of the results.
Learn how to remove duplicate elements from a Java list by converting to a LinkedHashSet to preserve order, then reinserting unique items back into the list.
Learn how to implement a Java thread by defining public void run, creating a main method, and starting the runnable thread with start, including extending thread and using a constructor.
Learn how to create and start a Java thread using the runnable interface, implement the run method, and print output from a runnable task.
Join two threads in Java by creating two thread objects, starting them, and using join to wait for each to complete, while each prints started and completed messages.
Learn to remove multiple spaces in a string in java using string tokenizer and string buffer, with a while loop and import java.util.
Learn to compute the union of two arrays in Java by sorting inputs and combining elements to form the final union.
Learn how to implement a Java program that finds the intersection of two arrays by creating methods, manipulating arrays, and using a while loop to identify common elements.
Demonstrate Java exception handling by building a program with a try-catch block, showing arithmetic exceptions when dividing by zero and guiding users to avoid zero as a divisor.
Explore how to implement multiple catch blocks in Java to manage arithmetic and array index out of bound exception, using try-catch structures and clear user outputs.
Demonstrates Java's finally block in exception handling, showcasing a try-finally structure, return behavior, and console output in a sample Java program.
Demonstrates Java try-catch-finally blocks by computing with division by zero, catching arithmetic exceptions, printing error details, and showing that finally executes regardless of the error.
Explain how to use throw new ArithmeticException in a Java leap year check, printing results with System.out and highlighting how errors are surfaced for non leap years.
Learn how to create a user defined exception in Java by defining a custom exception class and using a try-catch block to print the exception.
Explore constructor inheritance in Java by extending classes in a multi-level hierarchy: student, school, and student school. Observe constructor execution and messages printed via System.out.println in the main method.
Learn to implement a superclass in Java inheritance by building a Student class and a School subclass, using constructors, super calls, and printing student details like name, grade, and subject.
Learn how to clone objects in Java by implementing Cloneable, using the clone method, and handling CloneNotSupportedException while displaying a name and score.
Learn how to obtain sublists from a Java array using clone, an ArrayList, and the subList method, with index-based slicing and printing the results.
Learn how to synchronize a list in Java using collections.synchronizeList, create a synchronized ArrayList of strings, populate it with values, and iterate to print each element.
Learn to get the last occurrence of an object in a Java array list using lastIndexOf, with a running example that prints size and indices.
Demonstrate single inheritance in Java by extending area with a get rectangle class, and computing the rectangle area from width and height in main.
Demonstrate multi-level inheritance in Java by building A, B extends A, and C extends B, with show methods that print A, B, and C.
Demonstrate hierarchical inheritance in Java by building classes level a, level b, level c, and level d that extend level a and implement show methods printing each level message.
Explore essential Java string functions by practicing string creation, printing, and concatenation, then transforming case with lowercase and uppercase, replacing characters, adding spaces and newlines, and retrieving string length.
Develop a Java program that counts the number of words in a string entered by the user, using a static method, a for loop, and a scanner for input.
Explore how to find Armstrong numbers in Java using multithreading by creating a GetArmstrong class that extends Thread, computes values from 1 to 500, and prints matching numbers.
Learn to print prime numbers in Java using multithreading by building a get prime class that extends thread, runs a prime-check loop from 2 to 20, and starts the thread.
Learn how to print alphabets A to Z in Java using multithreading by creating a character class that extends Thread and prints letters with spaces.
Learn how to print alternate alphabet letters in Java by starting from 'a' and skipping every other letter, using a thread in the run method with a 100 ms pause.
Print numbers in Java by extending thread, implementing run with a for loop from 1 to 10 to print each number, optionally sleeping 1000 milliseconds between prints.
Learn to build a Java program that checks even numbers using multi-threading by creating a class with a run method and a 1–10 loop printing whether each number is even.
Learn how to use multi-threading in Java to check numbers from 1 to 10 for oddness, printing whether each value is an odd number or not.
This lecture shows how to compute the squares of numbers in Java using multithreading by creating a get square class that extends thread and prints 1 to 10.
Learn to compute the cube of numbers in Java using multithreading by implementing a GetCube class that extends Thread and runs a loop from 1 to 10 printing each cube.
Create your first C program by printing hello world with printf in the main function, using return 0, a semicolon, and an escape character to move to the next line.
Learn how to accept a user's name in C using scanf with %s and display it with printf, including declaring a 100-element character array and printing the result.
Learn how to read two integers from a user in C, store them in x and y, compute their sum in result, and display the result using printf.
Build a simple interest calculator in C by collecting principal, rate, and time, applying the formula and printing the computed result.
Learn to multiply two floating point numbers in C using double for precision, collect inputs with scanf, and display a formatted result with two decimal places.
Write a simple C program to read a character and display its ascii value, showing how uppercase and lowercase codes differ and how to use scanf and printf.
Learn how to compute the quotient and remainder of two integers in C by taking user input, calculating using division and modulus, and printing the results.
Learn to swap two numbers in C using x = x + y; y = x - y; x = x - y, with scanf input and printf output.
Explore an alternative method to swap two numbers in C, using a temporary variable, showing numbers before and after swapping.
Learn how to swap two strings in C by collecting user input, allocating memory with malloc, and using strcpy to exchange values, with practical examples.
Learn how to add complex numbers in C by using a struct to represent complex numbers, read two complex values, compute their sum, and display the result.
learn to sum the digits of an input number in C by extracting digits with modulo ten and division, using a while loop, and printing the result.
Learn to compute the area of a circle in C by defining pi with #define, prompting the user for radius, and printing the result with two decimal places.
Calculate a circle’s area in C by defining pi with #define, reading the radius with scanf, computing area as pi*r*r, and printing with two decimals.
Learn to calculate the area of a rectangle in C by prompting the user for length and breadth, computing the area as length multiplied by breadth, and displaying the result.
Learn to write a C program that calculates the area of a square by inputting the side length, computing area as s*s, and displaying the result.
Learn how to calculate the area of a triangle in C by taking user input for height and base, using float for the area, and printing the result.
Learn how to calculate the volume and surface area of a cube in C by inputting the side, computing Vo = S*S*S and 6*S*S, and printing results.
Practice in C programming by building a simple program that calculates a cylinder's volume using pi, radius, and height, then prints the result.
Learn to compute the volume of a sphere in C by prompting for a radius, validating it, computing 4/3 pi r^3 with pow, and printing the result or invalid value.
Generate random numbers in C using rand and modulus inside a for loop, assign to y, and print with printf across ranges from 1 to 10, 100, and 1000.
Learn to calculate gross salary in the C programming language by adding 10% and 12% of the basic salary and printing the result.
Learn to build a C program that calculates the percentage from five subject marks using float arithmetic, summing grades, and computing the final percentage.
Learn to build a simple C program that prompts to shut down a Windows laptop, using a system call to execute a shutdown command on 32- and 64-bit systems.
Learn how to pull the IP address of your computer using C by invoking the ipconfig command from a simple C program, and verify it matches the system output.
Learn to print date and time in C by including the time header, using time_t, and printf to display today's date and time.
Learn how to write a C program that reads a number, uses modulo two with an if statement, and prints whether the number is even or odd.
Learn to detect vowels and consonants in C using a switch statement, handling both uppercase and lowercase characters, with user input via printf and scanf.
Learn how to read three numbers from the user in C, compare them with if/else statements, and print which one is the greatest.
Develop a C program to compute the roots of a quadratic equation from user input. Declare r1, r2, r3, determinant, real and imaginary parts, compute determinant, and print roots.
Explore how to detect a leap year in C by prompting for a year, using if statements and modulus to determine leap years and display results.
Learn to display a student's grade in C using nested if statements. Validate marks up to 100 and map ranges to grades A to F.
Learn to compute the sum of a given number in C using a for loop, accumulate into z with x and y, using scanf, and print the result.
Create a factorial calculator in C by writing a function outside the main function. Return a long long result and compute the product through a for loop using user input.
Learn how to generate a multiplication table in C by taking user input, using a for loop from 1 to 10, and printing the results with printf.
Learn to generate a Fibonacci sequence in C by initializing variables, prompting for the range, and using a for loop with an if-else to print the series.
Learn to reverse any integer you input in C by extracting digits with modulo ten inside a while loop and printing the result.
Learn to reverse a number using an array in C by reading digits into an array, then printing them in reverse order with for loops.
Learn to reverse a string in C by including string, reading a word, applying strrev to the input, and printing the reversed word.
Learn how to check if a number is a palindrome in C by reversing digits with a loop and comparing to the original number, with practical code examples.
Create a C prime number generator by implementing a function that checks divisibility from 2 to a user-defined range and prints the primes.
learn to compute the highest common factor and lowest common multiple in C by creating a function outside main, using a while loop, and handling input with scanf and printf.
Learn to detect Armstrong numbers in C by building a program that sums the cube of each digit and compares to the original number, with examples.
Learn to generate Armstrong numbers in C by prompting for a range and using for and while loops to compute and print numbers up to the chosen limit.
Learn to build a C program that generates a half pyramid using X series by prompting for the number of rows, then employing nested for loops to print each row.
Learn to create a half pyramid in C using numbers by collecting the number of rows from the user and printing a nested for loop pyramid with printf.
Create a full pyramid in C using for loops, a nested loop, and a while loop, printing spaces and the asterisk based on user-specified rows.
Learn how to create an inverted half pyramid of numbers in C using nested for loops, user input for rows, and printf formatting.
Create a C program that generates a Pascal triangle by a triangle function outside main, using long integers and for loops to print the requested number of rows.
Create a C program to check perfect numbers using a while loop and modulus, accumulating divisors in z and reporting if the input is a perfect number.
Learn to implement a C program that prints a diamond pattern by building upper and lower halves with nested loops, taking the number of rows from user input.
Develop a basic calculator in C by taking an operator and two numbers, then execute addition, subtraction, multiplication, or division via a switch statement and formatted output.
Learn to reverse an array in C using a pointer, with user input via scanf and output via printf, using a for loop to iterate and print in reverse order.
Learn to reverse an array without using a pointer in C by copying elements into a second array, reversing via for loops, and printing the result after user inputs.
Learn to determine the length of a string in c using a pointer-based approach. Implement an int Len(char *p) that counts characters until the null terminator and returns the length.
Learn how to add two matrices in C using multidimensional arrays. The lecture shows collecting rows, columns, and elements, computing the sum, and printing the result.
Learn to subtract two matrices in C using multidimensional arrays by inputting rows and columns, entering both matrices, and printing the result.
Learn how to multiply two matrices in C using multi-dimensional arrays, including input of matrix dimensions, validation of multiplication, and computing and printing the result.
Learn to transpose a matrix in C by building a simple project that reads rows and columns, uses for loops to compute the transpose, and prints it.
this lecture teaches adding two numbers in c using pointers: prompt and read two values, store their addresses in pointers, compute the sum via the pointers, and print the result.
Master summing array elements in C using a pointer, by inputting six numbers, looping with for, and printing the resulting sum.
Learn to sort a string in C by implementing a sort function using pointers, string length, malloc, and strcpy, then reverse and arrange characters from a to z.
Learn to find the maximum element in an array in C by reading the array range, iterating with a for loop, and updating the maximum and its position.
Learn how to merge two arrays in C with a dedicated merge function, sort and combine them, collect user input for both arrays, and print the merged result.
Learn how to insert a single element into a C array by shifting elements to a chosen position, prompting for range and location, and printing the updated array.
Learn how to delete an element from a C array by selecting a position, validating it, shifting subsequent elements left, and printing the updated array.
Build a simple C program to find the frequency of each alphabet character in a user-entered string, using a while loop, a for loop, and counting from a to z.
Learn a simple C program to remove spaces between strings by reading input with a while loop and if checks, and printing the collapsed spaces result.
Learn how to concatenate two strings in C by building a simple project that reads two strings, includes string.h, uses strcat to join them, and prints the result.
Learn to find the length of a string in C by including the string header, using a 200-sized array and a length variable, and calling the length function to print.
Learn how to copy strings in C using strcpy, importing the string header and declaring a source and destination to print both the original and copied content.
learn to extract a substring in C by reading a string, obtaining position and length, and printing the result with a loop and standard input output.
Learn to find the minimum element in a C array by inputting elements, looping to update the minimum and its position, and printing the result.
Learn to remove vowels from a string in C by creating a vowel_check function with a switch, handling lowercase and uppercase vowels, iterating with for loop, and printing the result.
Learn to store and manage student data in C using structures, defining a struct, collecting name and reg number, subjects, and total marks with loops and printf/scanf.
Learn to add two distances using a C structure by creating a simple program that sums feet and inches, with inch-to-foot conversion and final total output.
Learn to store student or employee data in C using a union, combining a student struct with a union and capturing name, reg number, gender, and marks.
Discover how to write to a file in C by opening the file with fopen, writing text with fprintf, and closing it, including overwriting behavior.
Learn how to read files in C by opening a file with fopen, reading with fgets, and printing the contents to the screen.
Delete a file in C by using the remove function, prompting for a file path, and displaying success or error messages.
Learn to copy a file in C by prompting for source and destination paths, opening the files, reading characters from the source, writing to the destination, and closing both files.
Learn how to merge two files into a third in C by opening f1 and f2, reading their contents, and appending them into f3 using a loop.
Learn to print your own C source code as output by opening a file, reading it with a do-while loop, and printing each character, including comments.
Create a simple C project that converts binary numbers to decimal using a while loop, prompting user input and printing the decimal result with examples.
Learn how to convert binary numbers to hexadecimal in C, using a while loop and modulus operations, with user input and printing the hexadecimal result.
Learn to convert decimal to octal in C by reading a number, using a while loop and division by eight with modulus, and printing the octal result.
Learn to convert a decimal number to binary in C by using input, a while loop, and modulus 2 to build and print the binary equivalent.
Learn to convert decimal numbers to binary bitwise in C, using x, y, z, user input, a for loop, right shifts, and bitwise and to print binary digits.
Generate binary patterns in C using nested for loops and print; use count and modulus to produce 0s and 1s across five rows, extendable to ten.
Learn to compute the squares of n numbers in C, using a for loop and user input, printing each number and its square.
Learn to build a simple C program that reads a number from the user with scanf, computes its square by n * n, and prints the result.
In this C programming lesson, learn to check if a number is positive, negative, or zero using an if-else construct, with user input and clear printf messages.
Learn to check if a number is positive, negative, or zero using a nested if statement in C, with input via scanf and output via printf.
Learn to compute the sum of the first and last digits of a number in C by taking user input, extracting digits with modulus and division, and printing the result.
Write a simple C program that finds and prints all factors of a positive number using a for loop and modulus, with user input via scanf and output via printf.
Learn to compute the average of n numbers in C by reading inputs in a for loop, summing them, dividing by n, and printing the result with formatting.
Convert uppercase to lowercase in C by reading a string, looping through characters, and adding 32 for 65–90 ASCII values; include string header and print the result.
Create a binary pattern in C by asking for the number of rows and using nested for loops and modulus two to print 0s and 1s.
Learn to convert binary numbers to octal in C using a while loop and user input, with printing the octal result and notes on related conversions to hexadecimal and decimal.
Learn how to design a diamond pattern in C by initializing variables, prompting the user for rows, and rendering upper and lower layers with nested loops, spaces, and asterisk characters.
Learn to implement a diamond outline pattern in C using nested for loops and user input to specify the number of outlines, printing spaces and X characters.
Write a C program to generate a diamond of numbers by requesting the number of rows and using nested loops to print the upper and lower layers.
Design and implement Floyd's triangle in C by using nested for loops, prompting for the number of rows, and printing spaces between numbers to display 1 to n in rows.
Learn to implement a hollow diamond pattern in C by prompting for row input and using nested for loops to print spaces and X series, creating upper and lower layers.
Create a hollow square pattern in C programming by prompting for the square size, using nested for loops and conditionals to print borders and spaces.
Create a hollow hourglass pattern in C by reading the number of rows and using nested loops to print spaces and X characters for the upper and lower halves.
Learn to implement a star hash pyramid in C using nested loops, printing spaces and hashes with exterior logic and optional x series customization for the pyramid.
Create a nested star hash pyramid in C by collecting the number of rows, then using nested for loops and conditionals to print the pattern.
Develop a C programming skill by printing an alphanumeric triangular pattern, combining letters and numbers on even and odd rows, with user input for rows and a simple nested loop.
Develop a numeric diamond pattern in C using for loops, printing spaces and numbers to form the upper and lower halves, with user input for rows and printf formatting.
Create a simple numeric pattern in C using nested for loops and user input to print the requested number of rows. Observe the pattern formatting with spaces and line breaks.
Explore numeric pattern design in C by using nested for loops to print a two-sided pattern based on user-provided rows, with conditional printing and line breaks.
Learn to create a numeric pattern in C using nested for loops, prompt for rows, print numbers with printf and newline, and clean up unused variables in part 3.
This lecture presents a last-part design of numeric patterns in C programming, reading rows and using two for loops to print a pattern that faces the other way.
Explore how to generate a Pascal triangle in C by building a long Pascal function and using nested loops to print each row based on user-specified rows.
Explore a different form of Pascal triangle design in C, using nested loops and if statements to print rows based on user input.
Learn how to print Pascal's triangle in C without using functions, using nested for loops and arithmetic to generate each row from user-specified rows.
Learn to create a half cone pattern in C by initializing x, y, z, prompting for rows, and printing with nested for loops and printf.
Learn C programming by building an alpha pattern printer. Use user input for rows and nested loops to print spaces and characters into a simple pattern.
Learn to create an alphabet pattern in C using nested loops, starting from character a, reading the number of rows, and printing successive letters per row.
Learn to create numeric patterns in C using nested for loops, with initialization of x, y, z, user input for rows, and printing numbers to display the pattern.
Explore design patterns in C by implementing an inverted half-cone pattern with user input, using for loops and variables to print rows.
Develop a simple pattern in C by initializing variables, prompting for the number of rows, and using nested for loops to print the pattern row by row.
Learn to implement a numeric diagonal pattern in C using nested for loops and conditional printing, producing a diagonal sequence across a user-defined number of rows.
Explore creating a new pattern in C programming by initializing x, y, z and using for loops to print a slope pattern based on user-input rows.
Learn to create a steep slope pattern in C programming, implementing an inverse slope with nested for loops, user-input rows, and printed characters to render the pattern.
Learn to determine if a C input is an integer or a float by reading it as a string, checking for a dot with a flag, and printing the result.
Explore creating a numeric slope pattern in C using for loops and user input for row counts, printing numeric values to form the pattern.
Learn how to create a pyramid pattern in C by using variables x, y, z, and n with for loops, scanf, and printf to generate the pyramid form.
Learn to create a rectangular pattern in C using nested for loops, printing numbers and underscores across configurable rows. Implement user input for rows and output a scalable pattern.
Learn to create a rectangular star pattern in C by initializing row and column variables, taking user input for rows and columns, and using nested loops to print X characters.
Explore building an inverted cone pattern in C by using nested for loops, user input for rows, and printf to render the inverted pyramid.
Learn to generate a rhombus pattern in C by using nested for loops, spaces, and number printing, including user input for rows.
Learn to generate a square kite pattern in C by initializing x, y, z and n, then printing spaces and numbers with nested loops and printf.
Create a simple C program that generates a square star pattern by prompting for the number of rows and printing a grid of asterisks using for loops.
Create an X pattern in C using nested for loops and a 100-by-100 array; accept user input for rows and print the pattern with conditional checks.
Create a border-only triangle in C by implementing a separate function and invoking it from main, using loops and printf to draw the outline.
Create your first C++ project by writing a hello world program using iostream, std namespace, and a main function that returns zero after displaying 'Hello World'.
Declare and initialize int, float, double, char, and string variables in C++, include the string header to use string, set z to x plus y, and print results with cout.
Explore local and global variables in C++, learn how to declare and use them in the main function, and see how local variables take precedence over globals during calculations.
Learn to build a simple C++ user input system that reads numbers with cin, prompts with cout, and prints the entered values, including multiple inputs.
Learn to accept a string from a user in C++ by declaring a char array, using cin.getline to read input, and printing the entered string.
Develop a simple c++ program that adds two numbers using input streams, prompting separately for the first and second numbers to improve user experience and correctness.
Learn to perform addition, subtraction, multiplication, division (as float), and modulus in C++ with a simple input/output program using x and y.
Build a C++ program that adds an arbitrary number of integers using a for loop, initializes sum to zero, reads input with cin, and prints the total with cout.
Master the C++ if statement by coding a simple project that checks x against 35, outputs results, and demonstrates conditional logic with example values.
Learn how nested if statements work in C++, validating x equals 80 and y equals 52, and observe how output prints only when both conditions are met.
Master how to use if else statements in C++ to handle conditions and guide user input. Provide examples such as checking password, printing outputs, and handling failed conditions.
Using the C++ else if statement, this lecture demonstrates categorizing a student’s mark from 0 to 100, taking user input and printing grade results with range checks.
Explore how to implement a C++ switch statement to grade input A–F, using cases, break, and a default for invalid grades in a hands-on practice project.
Explore nested switch statements in C++ through a practical example with x and y variables, demonstrating how inner and outer switch cases print sequential results and behavior when values change.
Create a simple C++ project that demonstrates a while loop by initializing x to 10, looping while x < 20 with x++, and printing the value of x.
Learn to implement a do while loop in C++, initializing x to 1, printing values 1 through 20, and incrementing x, with comparison to a while loop.
Master the for loop in C++ with a simple project that prints values from 1 to 20, and compare it to while and do while loops.
Implement a C++ program to print prime numbers from 2 to 100 using nested for loops, modulus checks, and conditionals, illustrating basic loop logic.
Learn to write a C++ program that calculates a triangle's area by inputting height and base, using a float-based formula 0.5 times base times height and displaying the result.
Learn how to build a simple c++ program that reads a number and uses modulus by two to determine and display whether the number is even or odd.
Build a C++ program that asks the user for a number, uses a do-while loop to extract each digit with x % 10, accumulates the sum, and prints the result.
Build a simple C++ program that reads three numbers using if statements and prints which one is greatest, with input prompts and outputs.
Learn to swap numbers in C++ using three variables x, y, and z with a simple algorithm, showing numbers before and after swapping.
This c++ practice swaps two numbers using two variables with x = x + y; y = x - y; x = x - y, reading input and showing results.
Build a C++ project to calculate gross salary from a basic salary by adding 10% and 12% of the basic, then display the result.
Build a simple interest calculator in C++, using cin and cout to input principal, rate, and period, and compute interest as principal times rate times period divided by 100.
Create a simple c++ program that prompts a year and uses if (year % 4 == 0) to determine and print whether it is a leap year, with examples.
Write a recursive C++ function to compute the highest common factor of two numbers, using parameters x and y, and print the result.
Learn to build a simple C++ program that calculates the lcm of two numbers using input, max logic, modulus checks, and a break to stop repetition.
Learn to build a simple c++ program that calculates the HCF and LCM of two numbers using a function outside main, with long inputs, and prints the results.
Learn to compute factorials, nCr and nPr in C++ by building three functions for nCr, nPr, and factorial, and reading n and r from input.
Use a while loop in C++ to reverse digits of user-entered number. Iterate by taking remainder with ten and updating rev as rev * 10 + remainder, then print reverse.
Learn how to reverse an array of numbers in C++ using for loops, input a range, store in an array, and print the reversed sequence.
Build a simple C++ program to check palindromes by reversing digits with a while loop and modulo ten. Compare to the original and print whether it is a palindrome.
Write a C++ program that reads a number, uses a for loop and modulo to count divisors, and reports whether the number is prime.
Learn to write a C++ program that lists all prime numbers up to a user-specified limit by testing divisibility with a list_prime function and printing primes from 2 to n.
Learn to implement a C++ program that checks Armstrong numbers by summing the cubes of digits using a while loop, input validation, and conditional output.
Generate Armstrong numbers in a user-defined range using C++ by looping through numbers, summing cubes of digits, and printing all Armstrong numbers up to the chosen limit.
Learn to calculate factorial numbers in C++ using a simple for loop from user input to output the factorial value. Explore factorial computation with recursion in the next lecture.
Learn to compute factorials in c++ with a recursive function fact taking int n that returns n * fact(n-1) when n > 1, else 1, using input and output streams.
Learn to generate a Fibonacci series in C++ in two ways: without a function and with a recursive function, using a for loop and user input for terms.
Explore implementing a recursive fibonacci function in C++, with base cases for 0 and 1, integrated in main to print a fibonacci series using a loop and user input.
Explore c++ mathematical functions by using the cmath header to compute sine, logarithm, absolute value, floor, square root, and power with variables like x, y, a, and b.
generate random numbers in C++ by including the standard C library, using the run function, prompting the user to set the range and maximum value, and printing results.
Learn to convert binary to hexadecimal in a C++ project by reading binary numbers only, using a while loop, updating hex with remainder calculations, and printing the hexadecimal equivalent.
Learn to convert binary to octal with a simple C++ program using a while loop, modulus, and division; handle input and print the octal result with examples.
Initialize bin, dec, x, y, z and request binary input. Use a while loop to extract digits with modulus and update dec, then print the decimal equivalent.
Learn to convert a decimal number to its octal in C++ by reading input, using a while loop and modulus to build the octal result, and printing the final value.
Learn to convert decimal to binary in a C++ program by reading a decimal input, repeatedly dividing by two, collecting remainders, and building the binary result.
Convert a decimal input to its binary bitwise representation in C++, using a for loop and right shift to print each bit up to 31 positions.
Learn to find the first and last numbers in a C++ array by reading n values into an array, using a for loop, and printing array[0] and array[n-1].
Learn how to pass arrays to functions in c++ by creating a get_avg function that takes an array and its size, sums elements, and returns the average.
Develop a C++ practice project that reads an array, uses a for loop and if statements to find the maximum element and its position, and prints the result.
Learn to find the minimum element in a C++ array by initializing the first element as the minimum, iterating with a for loop, and updating the minimum and its position.
Learn to reverse array elements in C++ by building a simple program that reads array elements, uses for loops to reverse in place, and prints the reversed array.
Learn how to insert a new element into a C++ array by shifting elements, choosing range and position, and printing the updated array with example code.
Learn how to delete an element from a c++ array by prompting for range, validating position, shifting subsequent elements, and displaying the updated array.
Learn to merge two arrays in C++ using a merge function that compares elements from both arrays, builds a merged result, and prints the final merged array after user input.
Learn to add two matrices in C++ by inputting two matrices, performing element-wise addition with nested for loops, and printing the resulting matrix.
Learn how to subtract two matrices in c++ by initializing matrices, taking user input for rows and columns, and printing the resulting matrix using nested for loops.
Learn to transpose a matrix in C++ by building a simple project that reads rows and columns, inputs the matrix elements, computes the transpose, and prints the result.
Learn to multiply two matrices in c++, by inputting dimensions, checking that columns of the first match rows of the second, performing nested-loop multiplication, and printing the result.
Learn simple string formatting in C++, using a char array and cout to print hello world. Explore basic string handling and prepare for deeper string lessons.
Learn to determine a string’s length in C++ by using a for loop to count characters until the null terminator and print the resulting length.
Learn to check string length in C++ by including the c string header, creating a 100-character buffer, reading a string, and using a function to obtain and print its length.
Learn how to compare two strings in C++ using a for loop, including inputting two strings, iterating with indices, and using a flag to determine whether the strings are equal.
Learn to compare two strings in C++ by using strcmp, including the string header, declaring char arrays, reading inputs, and reporting equality when strcmp returns zero.
Learn to copy strings in c++ with a for loop, inputting into str1 and copying characters into str2. Validate the result with message 'string copy successfully'.
Learn how to copy strings in C++ using strcpy, including the string header, declaring char arrays, taking input, performing the copy, and displaying the result.
Learn how to concatenate two strings in c++ using a for loop by reading two inputs, measuring their lengths, and appending one to the other, then printing the result.
Learn to reverse a string in C++ using a while loop by swapping characters from the ends after reading input and computing string length.
Learn to reverse a string in C++ using the strrev function, contrasting it with a prior while-loop approach, by including the string header, accepting input, and printing the reversed result.
Explore reversing a full sentence in C++, by writing a rev_sentence function that uses substr, reverse, and getline to capture input and print the reversed text.
Build a simple c++ program to check if a user-entered string is a palindrome by comparing mirrored characters with a for loop and string length, including the string header.
Learn to convert uppercase to lowercase in c++ using a while loop and a simple case lower function, with user input and the lowercase result printed.
Learn to convert uppercase to lowercase in C++ using the strlwr function, with a simple program that includes the string header, reads input, and displays the lowercase result.
Create a case_upper function that converts a lowercase string to uppercase using a while loop and ASCII value manipulation, then apply it to user input.
Learn how to convert lowercase to uppercase in C++ using the strupr function, including string header, reading a string, invoking strupr, and printing the result.
Learn to remove vowels from a string in C++ by checking both lowercase and uppercase vowels, iterating with a for loop, and producing a vowel-free result.
Learn to count the frequency of a chosen character in a user-entered string using C++ by reading input with getline, iterating through the characters, and reporting the number of occurrences.
Learn to check vowels and consonants in C++ using if statements, handling both lowercase and uppercase vowels, and print whether the input character is a vowel or a consonant.
Count vowels, consonants, digits, and whitespaces in a string using a C++ program, illustrating input with getline, a for loop, and conditional checks.
Learn how to search for an element in a C++ array using a for loop to input values and a while loop with middle index logic to report its position.
Discover how to check for an element in an array using a recursive function in C++, building a dedicated search function and applying it to array elements.
Learn how to sort an array using bubble sort in C++ by implementing a bubble sort function, reading elements, and printing the sorted array.
Learn to sort an array with the insertion method in C++ by building a simple program that inputs elements, performs insertion sort, and prints the sorted array.
Learn how to sort arrays in C++ using the selection method by initializing an array, selecting the minimum element, swapping, and printing the sorted results.
Explore call by value in C++ by building a simple program that adds two numbers with a function that returns their sum.
Learn how to implement call by reference in C++ by swapping two integers with a ref_swap function, using a temporary variable and displaying numbers before and after swapping.
Learn how to swap two numbers in C++ by using a pointer to pass addresses and print results before and after.
Master C++ file writing by using fstream to open a text file path, write content with the output stream, and close the file to save changes.
Learn how to read from a file in C++ using ifstream, include fstream, set the file path, use a for loop to print the data, and close the file.
Learn how to add two numbers in C++ using a function, including passing x and y, returning their sum, and printing the result.
Learn to subtract two numbers in C++ using a function, passing x and y and returning the result, then inputting values in main and printing the subtraction result.
Discover how to create a simple C++ class to compute a rectangle's area by defining public members for length and breadth, reading input, and printing the result.
Learn how to pass arguments to a c++ function with a void show example using a char and an int to print a character multiple times; observe default arguments.
Explore how inline functions in C++ replace a function call with actual code, speeding up simple operations. See inline addition and subtraction demonstrated with concrete integer examples.
Learn to compute a C++ string’s length using a pointer by defining a Len_str function, iterating with a while loop until the null terminator, and printing the result with cout.
Learn to design a pyramid pattern in c++ using nested for loops, printing spaces and a design character for a user-specified number of rows.
Learn to print a right angled triangle in C++ using nested for loops, handling user input for rows and producing formatted output with cout and endline.
Create a C++ program that prints a diamond pattern by requesting the number of rows and using nested loops to render the upper and lower halves with spaces.
builds a numeric right-angle triangle in C++ by prompting for the number of rows, then using a nested for loop to print 1 to x on each line with spaces.
Develop and print an alphabet right angle triangle in c++ by prompting for an uppercase end character, then using nested for loops to print letters from A to that character.
design and print a pascal triangle pattern in c++ by using nested for loops, calculating numbers per row, and prompting for the number of rows.
Learn to create Floyd's triangle in c++ by using nested for loops, inputting row count, and printing consecutive numbers with a running z value.
Create a numeric pyramid pattern in C++ by reading the number of rows and printing with nested for loops, building the pyramid with aligned spacing.
Learn how to write hello world in c sharp, using a main method and console.writeLine, and reinforce skills by building projects to master basic syntax.
Learn how to sum two numbers in C# by prompting for input, converting strings to integers, computing the sum, and displaying the result.
Build a C# console project that reads a number, uses modulus two to test even or odd, and prints the result with clear console output.
Learn to count the number of ones in a number using C# by building an array, converting input to integers, iterating with a for loop, and displaying the result.
Learn to read a character in C#, display its ASCII value by converting the character to an integer, with examples for uppercase letters, digits, and symbols.
Create a simple C# console program to determine leap years by checking if the input year is divisible by four, and print whether it is a leap year.
Learn to swap two numbers in C# by reading two integers into num1 and num2, using a temp x swap variable, and displaying before and after values.
Learn how to convert Celsius to Fahrenheit in C# by prompting for input, converting to int, applying the (Celsius * 9 / 5) + 32 formula, and displaying the result.
Learn how to read a string from the console, iterate over its characters, compute its length, and display the result in C#.
reverse digits in C# using a do-while loop, modulus ten, and reverse = reverse * 10 + remainder, with examples like 12345 and 978765.
Learn to count words in a C# string by building a simple project that uses a do-while loop, checks whitespace, and outputs the word count.
Learn to check vowels and consonants in C# by prompting a character input and using conditional logic to identify vowels and consonants in both uppercase and lowercase.
Count vowels and consonants in a user input string using C# with a for loop and vowel checks for a, e, i, o, u to tally results.
C# practice shows how to count alphabets, digits, and special characters in a string using a simple for loop and character checks.
Learn to search for a substring within a string in C# by taking user input, using index checks, and reporting the position or absence of the substring.
Learn how to print date and time in c# by creating a DateTime object, applying multiple formats with console write line and toString, and using uppercase M for months.
Learn to define a C# struct for an employee with name, occupation, and salary, create and populate an instance, and print the employee data to the console.
Learn to implement nested structures in C# by modeling employee data with a date of birth inside a company structure. Collect input and print details using structs and console reads.
Explore calculating a rectangle’s area in C# by using a public struct with x and y, setting length and breadth, and printing the area without the new keyword.
Explore recursion in c# by implementing a static long power(x, y) that multiplies x by power(x, y-1) until y reaches zero, showing ten raised to power two equals 100.
Explore static properties in C# by creating a public class with a static string and getters and setters, then print hello world via the static property to reinforce beginner practice.
Explore how to implement and invoke static constructors in C# by creating a class with static members, initializing name fields, and observing constructor execution order.
Learn about single cast delegate in C#, assign static methods to delegates, and explore how to invoke them with examples like hello world and hello peter.
Explore how to create and use multicast delegates in C# by defining addition and subtraction methods, wiring them to a delegate, and multicast invoking multiple operations with parameters.
Define a single delegate, declare an event, and invoke it in a C# program, illustrating how an int parameter is passed and shown via an event-driven method.
Explore how to implement multicast delegates and events in C#, defining a public delegate, an event, and methods for addition and subtraction, and subscribing multiple handlers in main.
This lecture demonstrates using c# trig functions such as sine, cosine, tangent, arc sine, arc cosine, and arctan with code examples converting degrees to radians.
Learn how to read a number from the console, convert to int, compute its square root with Math.Sqrt, and display the result in C#.
Build a simple C# console app that computes the cube root of a user-entered number using Math.Pow with an exponent of one third and prints the result.
Learn how to create DateTime objects in C#, add days and months with DateTime methods, and print updated results to the console for date calculations.
Learn how to add two binary numbers in C# by building a simple project that reads binary inputs, converts them to integers, and prints the sum.
Build a simple C# program to sum numbers from 1 to n using a for loop and console input. Parse the end number with int.Parse and display the result.
Learn to implement a Fibonacci sequence in C# by prompting for the number of elements, using a for loop, and printing the series.
Explore how to build a C# program that checks whether a user-entered number is prime using a for loop and modulus, returning prime or not prime.
Implement a C# palindrome checker that reads a number, uses a do while loop to reverse its digits with modulus and division, and prints whether the number is a palindrome.
Learn to build a simple C# program that calculates the factorial of a number using a for loop, initializing variables and multiplying to produce the result.
In this C# practice, learn how to check whether an input number is an Armstrong number by summing the cubes of its digits and comparing to the original number.
Learn to reverse a number in C# by using a while loop, modulo ten, and rev = rev * 10 + y, reading an integer input from the console.
Learn to convert a decimal number to binary in C# by using a loop with modulus two and division by two, constructing and printing the binary digits, with examples.
Learn how to create an alphabet triangle in C# using nested for loops, printing incrementing and decrementing characters from A.
Convert digits to text in C# by inputting a number and printing its digits as words using a while loop and simple mapping.
Learn to build a C# project that checks for duplicate numbers in an array using array copies, nested loops, and a duplicate counter to report repeated elements.
Explore how to add two matrices in c sharp by taking matrix sizes and elements, performing element-wise addition, and printing the result.
Learn to implement bubble sort in C# by sorting an array, printing the original and sorted results, and using nested for loops and a for-each to display values.
Learn how to implement insertion sort in C# by creating a static insertion method outside main, sorting an int array, and printing original and sorted results.
Create a simple C# project that reads two integers and computes their gcd and lcm using a do-while loop and console output.
Create a binary triangle in C# by prompting for the number of rows and using nested loops to print alternating 0s and 1s.
Create a seven-row rectangular pattern in C# with for loops and console output. Declare int x and y, loop x from 1 to 7, and print using Console.Write and Console.WriteLine.
Learn to create a triangular pattern in C# using nested for loops, take user input for the number of rows, and print the pattern with console write and write line.
Build a simple C# arithmetic calculator that reads two numbers, performs addition, subtraction, multiplication, division, and modulus, and prints the results.
Apply the if else statement in C# by comparing two input numbers and printing which is greater, using console prompts and int parsing to practice conditional logic.
Master the else if statement in C# to classify input numbers as even or odd using modulus and conditional logic.
Practice in C# for finding the greatest of three numbers by reading inputs, parsing to integers, and using if-else logic to announce which value is greatest.
Learn to create a multiplication table in C# using a while loop, with user input, looped output from 1 to 10, and guidance toward for and do-while variants.
Learn how to create a C# multiplication table with a for loop by prompting for a number and printing products from 1 to 10.
Learn to add two numbers in C# using a public void addition function outside main. Read inputs from the console, compute the sum, and call it from Program.
Write a simple C# console program that reads two integers, loops through possible divisors, checks x mod z and y mod z, and prints the HCF.
Write a simple C# program that reads an integer, uses a do-while loop to divide by ten until zero, and outputs the number of digits as the magnitude.
Develop a simple C# program to calculate the factors of a number using a for loop and modulus check, then print factors to the console.
Explore C# console programming by building a simple project that detects the state of a number as positive, zero, or negative using an if statement.
Learn to find the minimum and maximum numbers in an int array using C#'s max and min functions, then print the results to the console and run the example.
Learn how to calculate acceleration in C# by prompting for velocity and time via the console and computing acceleration as velocity over time.
Create a C# console program to sum digits of a user-entered number using a while loop and modulo ten. See examples like 57 yielding 12 and 350 yielding 8.
Develop a simple C# program that creates a Random object, uses a for loop to generate numbers from 1 to 20, and prints them with Console.WriteLine.
Learn to create a simple C# project that asks for width and length, computes area as length times width, and displays the floor area in square feet.
Build a C# console app that calculates the third number using the Pythagoras theorem by prompting for two integers and returning the result as a double.
Build a 9x9 triangular numeric shape in C# using nested for loops and an int array. Print rows of ones and increasing numbers to form the triangle.
Learn to build a binary triangle in C# by prompting for the number of rows, then using a nested for loop to print zeros and ones in a pattern.
Learn to calculate the sine of an angle in a C# console app by prompting for degree input and computing the sine with a loop.
Create a C# project to calculate the cosine of zero with a static method. Use x and y in a for loop to verify the cosine of zero equals one.
Build a C# project that converts a binary number to decimal using console input and a while loop, computing the decimal by remainders, base doubling, and printing the result.
This lecture demonstrates a C# practice to convert a decimal input to octal by using a while loop, storing remainders in an array, and printing the octal equivalent.
Build a C# program that converts a user-entered decimal number to hexadecimal, using loops and character calculations with console input and output to produce the hex representation.
Embark on an exciting journey into the world of programming with the "500+ Beginners CODING Practices in Python, Java, C, C++, & C#" course. Designed specifically for beginners, this course offers an extensive collection of coding exercises and projects across five of the most popular programming languages. Whether you're just starting out or looking to reinforce your programming skills, this course provides the hands-on experience you need to become proficient in Python, Java, C, C++, and C#.
What You Will Learn:
This course is packed with over 500 coding exercises that cover the essential concepts of programming through practical, real-world projects. Here’s a glimpse of what you’ll master:
1. User Input Projects:
Basic Input/Output: Learn how to interact with users by accepting inputs and displaying outputs in each language.
Data Validation: Implement projects that check user inputs for accuracy, ensuring robust and user-friendly applications.
Interactive Games: Create simple text-based games that rely on user inputs to function, like number guessing games and quizzes.
2. Number Manipulation Projects:
Swapping Numbers: Write programs to swap two numbers using various methods, including temporary variables and arithmetic operations.
Arithmetic Operations: Develop projects that perform basic calculations like addition, subtraction, multiplication, and division.
Prime Number Checkers: Create programs that determine whether a given number is prime.
3. String Manipulation Projects:
Palindrome Checker: Develop programs that check whether a string reads the same forward and backward.
String Reversal: Write code to reverse the characters in a string, a fundamental exercise in understanding data manipulation.
Word Count: Build applications that count the number of words in a sentence or paragraph.
4. Control Flow and Decision-Making Projects:
Even/Odd Number Checker: Implement programs that determine whether a number is even or odd.
Leap Year Calculator: Write a program that checks if a given year is a leap year.
Grading System: Create a simple grading system that assigns letter grades based on numerical scores.
5. Looping and Iteration Projects:
Factorial Calculator: Develop programs to calculate the factorial of a number using loops.
Fibonacci Series: Implement a project that generates the Fibonacci sequence up to a certain number.
Pattern Printing: Write code to print various patterns like triangles, squares, and pyramids using loops.
6. Array and List Manipulation Projects:
Array Sorting: Implement sorting algorithms like bubble sort and selection sort.
Sum of Elements: Write programs that calculate the sum of elements in an array or list.
Finding the Maximum and Minimum: Develop projects to find the largest and smallest elements in a list or array.
7. Object-Oriented Programming (OOP) Projects:
Class and Object Creation: Learn how to create classes and objects to model real-world scenarios.
Inheritance and Polymorphism: Implement projects that demonstrate the power of OOP concepts like inheritance and polymorphism.
Simple Banking System: Create a basic banking application that handles deposits, withdrawals, and balance inquiries.
8. File Handling Projects:
Reading from and Writing to Files: Develop programs that read data from files and write data to files.
File Encryption/Decryption: Implement simple encryption and decryption techniques for files.
Log File Analysis: Create a project that processes and analyzes log files.
9. Data Structures and Algorithms Projects:
Linked List Implementation: Write code to create, traverse, and manipulate linked lists.
Binary Search: Implement the binary search algorithm to efficiently find elements in a sorted array.
Stack and Queue Operations: Develop projects that simulate stack and queue operations.
Benefits of Taking This Bootcamp Course:
Extensive Practice: With over 500 coding exercises, this course ensures you get the hands-on experience needed to solidify your understanding of programming concepts across multiple languages.
Language Versatility: By working on projects in Python, Java, C, C++, and C#, you’ll develop a versatile skill set that is applicable in various areas of software development.
Problem-Solving Skills: Each project is designed to challenge you and enhance your problem-solving abilities, making you a more effective and efficient programmer.
Real-World Applications: The projects you work on are not just theoretical; they’re practical exercises that reflect real-world programming scenarios, giving you the confidence to tackle real coding challenges.
Portfolio Development: By the end of this course, you’ll have a portfolio of projects that you can showcase to potential employers, demonstrating your coding skills and your ability to work with different programming languages.
Career Advancement: Mastering these languages and completing this extensive range of projects will make you a strong candidate for entry-level programming positions, internships, and more.
Who Should Take This Course?
Complete Beginners: If you’re new to programming, this course is the perfect starting point. It provides clear, structured lessons that gradually build your skills through practice.
Aspiring Developers: If you’re looking to break into the tech industry, this bootcamp will equip you with the fundamental skills needed to succeed.
Students and Professionals: Whether you’re a student looking to supplement your learning or a professional aiming to reskill, this course offers a wealth of practical exercises to boost your proficiency.
Enroll now in the "500+ Beginners CODING Practices in Python, Java, C, C++, & C#" course and start your journey to becoming a skilled programmer. With this course, you’ll gain the knowledge, experience, and confidence needed to excel in the world of programming, opening doors to new opportunities and career paths in the tech industry.
Python is an interpreted, high-level and general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.
Python is dynamically typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly, procedural), object-oriented, and functional programming. Python is often described as a "batteries included" language due to its comprehensive standard library.
Python was created in the late 1980s as a successor to the ABC language. Python 2.0, released in 2000, introduced features like list comprehensions and a garbage collection system with reference counting.
Python 3.0, released in 2008, was a major revision of the language that is not completely backward-compatible, and much Python 2 code does not run unmodified on Python 3.
The Python 2 language was officially discontinued in 2020 (first planned for 2015), and "Python 2.7.18 is the last Python 2.7 release and therefore the last Python 2 release." No more security patches or other improvements will be released for it. With Python 2's end-of-life, only Python 3.6.x and later are supported.
Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let application developers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture. The syntax of Java is similar to C and C++, but it has fewer low-level facilities than either of them. As of 2019, Java was one of the most popular programming languages in use according to GitHub, particularly for client-server web applications, with a reported 9 million developers.
Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle) and released in 1995 as a core component of Sun Microsystems' Java platform. The original and reference implementation Java compilers, virtual machines, and class libraries were originally released by Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java Community Process, Sun had relicensed most of its Java technologies under the GNU General Public License. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation is the OpenJDK JVM which is free open source software and used by most developers including the Eclipse IDE and is the default JVM for almost all Linux distributions.
The latest versions are Java 15, released in September 2020, and Java 11, a currently supported long-term support (LTS) version, released on September 25, 2018; Oracle released for the legacy Java 8 LTS the last free public update in January 2019 for commercial use, while it will otherwise still support Java 8 with public updates for personal use up to at least December 2020.
C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions. It has found lasting use in applications previously coded in assembly language. Such applications include operating systems and various application software for computer architectures that range from supercomputers to PLCs and embedded systems.
A successor to the programming language B, C was originally developed at Bell Labs by Dennis Ritchie between 1972 and 1973 to construct utilities running on Unix. It was applied to re-implementing the kernel of the Unix operating system. During the 1980s, C gradually gained popularity. It has become one of the most widely used programming languages, with C compilers from various vendors available for the majority of existing computer architectures and operating systems. C has been standardized by the ANSI since 1989 (ANSI C) and by the International Organization for Standardization (ISO). As of September 2020, C is the most popular programming language.
C is an imperative procedural language. It was designed to be compiled to provide low-level access to memory and language constructs that map efficiently to machine instructions, all with minimal runtime support. Despite its low-level capabilities, the language was designed to encourage cross-platform programming. A standards-compliant C program written with portability in mind can be compiled for a wide variety of computer platforms and operating systems with few changes to its source code.
C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes". The language has expanded significantly over time, and modern C++ now has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Oracle, and IBM, so it is available on many platforms.
C++ was designed with a bias toward system programming and embedded, resource-constrained software and large systems, with performance, efficiency, and flexibility of use as its design highlights. C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applications, including desktop applications, video games, servers (e.g. e-commerce, Web search, or SQL servers), and performance-critical applications (e.g. telephone switches or space probes).
C# is a general-purpose, multi-paradigm programming language encompassing strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented, and component-oriented programming disciplines.
[Ref: Wikipedia]