Companies Home Search Profile

300+ C# Coding Challenges for Beginners: Fundamentals 2023

Focused View

Seb D. Karter | MSc, MBA

10:07:08

43 View
  • 1. Introduction.mp4
    01:45
  • 2. C# Quiz 1.html
  • 3. C# Quiz 2.html
  • 1. Intro to .NET.mp4
    05:51
  • 2. Introduction to IDE (slides) and Visual Studio.mp4
    04:34
  • 3. IDE (Demo).mp4
    02:33
  • 4. Introduction to Csharp.mp4
    04:42
  • 5. First Csharp Program.mp4
    05:34
  • 6. First CSharp (demo).mp4
    04:50
  • 7. CSharp Variables.mp4
    11:47
  • 1. String Data Type.mp4
    08:16
  • 2. Boolean Data Type.mp4
    05:29
  • 3. Data Type Casting.mp4
    07:15
  • 4. Data Types.mp4
    09:33
  • 5. DateTime Struct.mp4
    10:20
  • 1. If Statement (Part 1).mp4
    08:25
  • 2. Else - If Statement.mp4
    09:16
  • 3. Switch Statement.mp4
    12:57
  • 4. enum (Part1).mp4
    08:11
  • 5. enum (Part2).mp4
    05:30
  • 6. User Input.mp4
    05:48
  • 7. Comments.mp4
    05:00
  • 8. Arithmetic Operators.mp4
    08:57
  • 9. Exception Handling.mp4
    05:17
  • 10. Assignment, Comparison and Logical Operators.mp4
    06:00
  • 1. Do While Loop.mp4
    08:59
  • 2. For loop (Part 2).mp4
    10:55
  • 3. For Loop (Part 1).mp4
    07:56
  • 4. While Loop.mp4
    07:56
  • 5. For Loop DEMO.mp4
    05:15
  • 6. Foreach loop.mp4
    06:14
  • 1. Method.mp4
    08:28
  • 2. Method Return.mp4
    07:10
  • 3. Math Methods.mp4
    02:32
  • 4. Method Parameter.mp4
    10:15
  • 5. ref, in, params Modifier.mp4
    08:58
  • 1. Introduction to Object-Oriented Programming (OOP).mp4
    04:36
  • 2. Constructor.mp4
    10:44
  • 3. Encapsulation.mp4
    09:44
  • 4. Inheritance.mp4
    10:11
  • 5. Polymorphism.mp4
    07:58
  • 6. Interfaces.mp4
    10:45
  • 7. Abstraction.mp4
    06:27
  • 8. Access Modifiers.mp4
    07:37
  • 9. Class Members.mp4
    08:35
  • 1. ARRAYS Loop through a 2D array and print each element to the console window.html
  • 2. ARRAYS Access elements of a 2D array in C#.html
  • 3. ARRAYS Create a 2D array and print its elements to the console window.html
  • 4. ARRAYS Change the element at position [1,1] of a 2D array to 7.html
  • 5. ARRAYS Access the first element of an array and print it to the console.html
  • 6. ARRAYS Create an array of integers and display its elements in the console window.html
  • 7. ARRAYS Using foreach loop to iterate through an array and print its elements.html
  • 8. ARRAYS Find the length of an array and display it in the console window.html
  • 9. ARRAYS Loop through an array and print all the elements.html
  • 10. ARRAYS Sort an Array in C#.html
  • 11. ARRAYS Change the value of an element in an integer array at a specified index.html
  • 12. CASTING Convert a decimal value to an integer value using explicit casting.html
  • 13. CASTING Explicitly cast a double variable to an integer.html
  • 14. implicit casting.html
  • 15. CASTING Implicit Casting in C# INTFLOAT.html
  • 16. SWITCH Using the `default` keyword in a switch statement.html
  • 17. IF Display a message based on user input using conditional statements.html
  • 18. IF Convert a given integer `num` to its corresponding string representation.html
  • 19. SWITCH Create a program that uses a switch statement to display the corresponding month of a given.html
  • 20. loop in C#.html
  • 21. LOOPS C# The DoWhile Loop Print numbers from 1 to 10 using DoWhile loop.html
  • 22. LOOPS Calculate the sum of all numbers between 1 and a given number using a dowhile loop.html
  • 23. multiplication table.html
  • 24. LOOPS Print all even numbers between 1 and 20 using a for loop.html
  • 25. LOOPS Iterate over an array of integers using foreach loop and print each element.html
  • 26. LOOPS Using break statement to exit a loop.html
  • 27. LOOPS Print all even numbers between 0 and 10 using a while loop.html
  • 28. MATH Calculate the absolute value of a number.html
  • 29. MATH Calculate the rounded value of a decimal number to the nearest integer.html
  • 30. Math Find the square root of a number.html
  • 31. passes a string parameter.html
  • 32. METHODS Create a C# method to calculate the sum of two integers.html
  • 33. optional parameters.html
  • 34. METHODS Calculate the sum of two numbers and display the result in the console window.html
  • 35. named arguments.html
  • 36. METHODS Overloading Calculate the area of a rectangle or a circle based on the given input.html
  • 37. METHODS Return the sum of two integers.html
  • 38. OPERATORS Calculate the sum of two numbers and display the result.html
  • 39. OPERATORS Divide two numbers and return the result.html
  • 40. OPERATORS Determine if two integers are equal.html
  • 41. OPERATORS Check if x is greater than y and return a boolean value.html
  • 42. OPERATORS Check if x is greater than or equal to y.html
  • 43. OPERATORS Find if x is less than y and return a boolean.html
  • 44. OPERATORS Logical AND operation exercse.html
  • 45. OPERATORS Logical Not Reverse the result, returns False if the result is true.html
  • 46. OPERATORS Check if a number is even or odd using logical OR operator.html
  • 47. OPERATORS Decrement the value of a variable by 1.html
  • 48. OPERATORS Calculate the remainder of dividing two integers.html
  • 49. OPERATORS Multiplication of two values in C#.html
  • 50. OPERATORS Check if two integer variables are not equal and print the result.html
  • 51. OPERATORS Increment a variables value by 1 using an operator.html
  • 52. OPERATORS Subtract two integers and return the result.html
  • 53. STRINGS Accessing Strings.html
  • 54. STRINGS Concatenate two strings using a method.html
  • 55. STRINGS Using Backslash Escape Character to Print Quotes.html
  • 56. STRINGS Display a message using string interpolation.html
  • 57. STRINGS Find the index of a specific character in a string.html
  • 58. STRINGS Replace all occurrences of a character in a string.html
  • 59. STRINGS Reverse a given string.html
  • 60. STRINGS Extract a substring from a given string.html
  • 61. STRINGS Replace a substring in a given string.html
  • 1. Calculator Challenge.mp4
    06:31
  • 2. Uppercase Challenge.mp4
    11:02
  • 3. Swapper Challenge.mp4
    05:05
  • 4. Guess Number Challenge.mp4
    06:51
  • 5. Reverse Sentence Challenge.mp4
    08:20
  • 6. Roman Numerals Challenge.mp4
    11:27
  • 1. Month Conversion Challenge.mp4
    05:44
  • 2. Sum All Numbers in String Challenge.mp4
    06:50
  • 3. Convert Numbers to Text Challenge.mp4
    09:09
  • 4. String Compression Challenge.mp4
    07:18
  • 5. Bubble Sort Challenge.mp4
    10:00
  • 6. Double Addition Challenge.mp4
    06:36
  • 1. Diamond Pattern Challenge.mp4
    07:51
  • 2. Prime Number Challenge.mp4
    07:44
  • 3. Parallelogram Challenge.mp4
    06:22
  • 4. Factorial Challenge.mp4
    10:21
  • 5. Decimal to Binary Challenge.mp4
    08:35
  • 6. Fibonacci Series Challenge.mp4
    09:32
  • 1. Palindrome Challenge.mp4
    11:28
  • 2. LOGIN Challenge.mp4
    07:58
  • 3. Reverse Array Challenge.mp4
    06:59
  • 4. Triangle Generation Challenge.mp4
    08:33
  • 5. Reference Table Challenge.mp4
    08:11
  • 6. Reverse Word Challenge.mp4
    07:44
  • 1. Introduction to Solid Principles.mp4
    05:01
  • 2. Dependency Inversion Principle DEMO.mp4
    07:15
  • 3. Single Responsibility Principle DEMO.mp4
    04:29
  • 4. Dependency Inversion Principle.mp4
    12:34
  • 5. Interface Segregation Principle.mp4
    09:31
  • 6. Single Responsibility Principle.mp4
    12:33
  • 7. Liskov Substitution.mp4
    11:33
  • 1. Introduction to Design Patterns.mp4
    09:53
  • 2. Singleton Design Pattern.mp4
    10:19
  • 3. Observer Design Pattern.mp4
    08:44
  • Description


    Practice your C# Skills with 300+ C# Exercises and Check your Solutions with Step-by-Step Video Explanations.

    What You'll Learn?


    • Fully understand how OOP (object oriented Programming) works and how to use it.
    • You will gain the knowledge necessary for C# job interviews.
    • You will understand the principles of object-oriented programming
    • Working With Abstract, Sealed, Static And Regular Classes
    • You will understand how to write high-performance C# code.
    • Control the flow of programs using conditional statements
    • Learn the basic, intermediate and advanced concepts of C#.
    • Learn the difference between value types and reference types

    Who is this for?


  • Beginner C# developer or Seasoned developer studying C#
  • What You Need to Know?


  • No prior coding experience required. We'll start from the very beginning.
  • More details


    Description

    Welcome to the "300+ C# Coding Challenges for Beginners: Fundamentals" course. In this volume, we will learn C# in depth and tackle C# challenges.

    If you want to take your C# skills to the next level with intensive practice, then this course is for you. Apply your knowledge to solve more than 300 C# exercises and check your solutions with step-by-step video lectures with visual effects and diagrams.


    Solve 300+ Exercises to Take Your C# Skills to the Next Level.

    • Solve more than 300 exercises and improve your problem-solving and coding skills.

    • Learn new C# tools such as built-in functions and modules.

    • Apply your knowledge of C# to solve practical coding challenges.

    • Understand how the code works line by line behind the scenes.

    • Identify different ways to solve a problem and determine which one is more concise and efficient.

    • Test your code with different values and inputs to verify its correctness.

    • Gain practical and valuable coding skills.


    ABOUT YOUR INSTRUCTOR

    Hello! My name is Ace Seb Karter. I am a passionate C# developer, a lifelong student, and a Game Developer with 10+ years of experience. Through my "boots on the ground" workshops, I’ve taught over 1,000 people how to become professional Software Engineers.

    My expertise includes C#, Unity 3D, Python, Java, JavaScript, HTML, CSS, and other technologies.

    My goal is to make coding fun and accessible to everyone. That's why my courses are interactive and have a clear structure.

    No previous experience is necessary for these courses.

    This course will help you gain knowledge, tips, tricks, and skills that will enhance your C# skills and prepare you for your next C# interview.

     

    So, are you ready? Let’s get started!

     

    TOPICS COVERED

    C# Basics: Variables, Primitive data Types, loops, flow control

    C# OOP: Classes, Objects

    C# Methods: Encapsulation, Polymorphism, Parameters, Static methods, Named arguments, Method overloading

    C# Type casting: Type conversion, Implicit casting, Explicit casting, Parse, TryParse, Conversion methods

    C# Constructors: Constructor overloading, Object initializer syntax

    C# Properties: Read-only/ Write only properties, Automatic properties

    C# Inheritance: base keyword, Method overriding, Sealed classes, Sealed methods

    C# Abstract Classes and Interfaces: Abstract classes, Abstract methods, Interfaces, Interface inheritance

    C# Namespaces: Namespaces, Nested namespaces, Importing namespaces, Using static

    C# Generics: Generic classes, Generic methods

    C# Arrays: Creating arrays,  Arrays with for each loop, Array of objects

    And much more!


    Improve Your C# Skills and Gain Valuable Practical Experience

    C# is currently one of the most popular programming languages, and its popularity continues to rise every year. It is used for real-world applications in diverse areas such as Web Development, Data Science and many more. Learning C# is your next step into the powerful world of computer science. Through practice, you can improve your coding and problem-solving skills. You will also learn new tools that you can use in C#.


    Your knowledge of C# will be extremely helpful in any field, including:

    • Web Development

    • Data Science

    • Artificial Intelligence

    • Game Development

    • Mobile App Development

    • Medical Software

    • Computer Vision

    • and... many more!

    Coding skills are essential to succeeding in the world of the future. Therefore, if you are thinking about entering any of these fields or if you are planning to expand your computer science skills, then this course is for you.

    The concepts and techniques that you will learn in this course are easily transferable to other programming languages like Java, JavaScript, and many more because you will practice how to analyze and solve problems using code.


    LEARNING GOALS

    By the end of this course, you will be able to:

    • Analyze a problem step by step and develop a solution in C#.

    • Solve a problem in C# using different approaches.

    • Use built-in C# functions and modules to solve a problem efficiently.

    • Understand how the code works behind the scenes.

    • Work with the main elements of C#: strings, lists, tuples, dictionaries, conditionals, loops, recursion, files, and more.

    • Test your code with various inputs and values to verify its correctness.


    LEARNING MATERIALS

    • Coding Challenges: 300+ coding challenges with detailed descriptions and hints to guide you through this journey.

    • Exercises Divided by Levels of Difficulty: the exercises are divided into levels, so you can start working on them according to your skill level and then solve more advanced exercises as you practice.

    • Video Lectures: Hours of video lectures and resources with step-by-step solutions and explanations of how to analyze the problems and how the code works behind the scenes

    • Visual Effects: You will learn how to solve these exercises with carefully designed visual effects, animations, and diagrams.

    • Test Cases: Each coding challenge has test cases to help you test if your solution is correct. Each problem can be solved in multiple ways, so these test cases will help you confirm if your solution is correct.

    CODING CHALLENGES

    • C# Strings

    • C# Lists and Tuples

    • C# Dictionaries

    • C# Conditionals

    • C# Loops

    • C# Recursion

    • C# Files

    • C# Miscellaneous and More Challenging Exercises

    Most exercises combine different elements from these topics, but the exercises are grouped by their most relevant category.


    What makes this course unique?

    This course is unique because of its emphasis on providing visual and detailed explanations of how the solutions work behind the scenes, so you will not only learn how to implement them in C#, you will actually understand the purpose of each line of code.

    Check your solutions with detailed video lectures and run the code on your device.

    You will receive a certificate of completion that you can add to your social media profiles to showcase your new skills.

    You will also have lifetime access to the course.

     

    You are very welcome to watch the preview lectures and check out the full course curriculum.

    If you are looking for an engaging, visual, and practical course, then you have found it.

    Enroll now, practice your problem-solving skills, and showcase your new C# knowledge.

    We will look at the most popular and often discussed questions during technical interviews. You will be prepared for your next interview, and you will be able to discuss C# concepts with great confidence.

     

    Again, welcome, and let's level up your C# skills!

    Who this course is for:

    • Beginner C# developer or Seasoned developer studying C#

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Seb D. Karter | MSc, MBA
    Seb D. Karter | MSc, MBA
    Instructor's Courses
    Hello! My name is Seb. I am a passionate Software Designer, lifelong student and a Game Developer with 10+ years of experience. Through my boots on the ground workshops, I’ve taught over 1,000 people how to become professional Software Engineers.  My expertise: C#, Unity 3D, Python, Java, JavaScript, HTML, CSS and other technologies.My goal is to make coding fun and accessible to everyone.  That's why my courses are fun with a clear structure. No previous experience is necessary for these courses.So, are you ready? Let’s get Started!
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 77
    • duration 10:07:08
    • Release Date 2023/10/12