Free Course Image Rust for beginners

Free online courseRust for beginners

Duration of the online course: 2 hours and 21 minutes

5

StarStarStarStarStar

(1)

Master Rust programming with Microsoft's free online course for beginners. Learn key concepts, from variables to error handling, through practical demos and guided lessons.

In this free course, learn about

  • Introduction and Setup
  • Basic Syntax and Data Types
  • Functions and Custom Types
  • Control Flow and Error Handling
  • Ownership, Borrowing, and Strings
  • Collections, Traits, and Next Steps

Course Description

Embark on your journey into the world of Rust with a comprehensive beginner course, designed specifically for those who are new to this powerful programming language. With a duration of 2 hours and 21 minutes, this course is packed with valuable insights and actionable lessons that will guide you through the basics of Rust, step by step.

Although no reviews have been submitted yet, the structured approach and detailed content make it a promising resource for anyone looking to dive into Rust. As part of the Information Technology category, this course falls under the subcategory of Multipurpose Programming Languages, which also encompasses languages like Python, Ruby, Java, and C.

The course begins with an introduction to Rust, discussing what makes it a standout language and the compelling reasons for learning it. You'll delve into the vibrant Rust community and see how it can support your learning journey. The next steps involve setting up your development environment by installing the necessary tools.

One of the highlights is creating your first Rust application, providing a hands-on experience that solidifies your foundational knowledge. You'll then explore Cargo, Rust’s build system and package manager, and understand its pivotal role in managing your Rust projects.

As you progress, the course breaks down core concepts such as variables, scalar and compound data types, functions, structs, enums, control flow using if/else and match, as well as loops. Each of these topics is complemented with practical demos to help cement your understanding.

Error handling, a crucial aspect for any robust application, is covered in-depth, along with the principles of Rust's unique ownership and borrowing systems. These concepts are essential for mastering Rust's memory management and safety features.

Furthermore, the course introduces you to advanced topics like strings, collections, and traits with corresponding demos to provide hands-on practice. By the end of the course, you will be well-equipped with the knowledge and skills to continue your Rust journey confidently.

The course concludes with a summary and next steps, offering guidance on how to further develop your skills and navigate the extensive resources available within the Rust ecosystem.

Whether you are a complete beginner or someone looking to add another language to your programming repertoire, "Rust for Beginners" provides a solid foundation and a clear path forward. Join this course to unlock the full potential of Rust and let it become a valuable tool in your programming toolkit.

Course content

  • Video class: Introduction to the series [1 of 35] | Rust for Beginners 03m
  • Exercise: What is a key feature that makes Rust unique compared to other programming languages?
  • Video class: What is Rust and why should you learn it [2 of 35] | Rust for Beginners 03m
  • Exercise: What is a key feature that distinguishes Rust from C and C++?
  • Video class: Learn about the Rust community [3 of 35] | Rust for Beginners 02m
  • Exercise: _Which of the following is a way to chat synchronously with other Rust stations?
  • Video class: Install the tools to develop with Rust [4 of 35] | Rust for Beginners 04m
  • Exercise: What is the recommended method for installing Rust?
  • Video class: Create your first application [5 of 35] | Rust for Beginners 04m
  • Exercise: _What is the first step to create and run a Hello World program using Rust compiler?
  • Video class: What is Cargo? [6 of 35] | Rust for Beginners 02m
  • Exercise: What tool do Rust developers commonly use for building and managing Rust projects?
  • Video class: Learn about variables [7 of 35] | Rust for Beginners 04m
  • Exercise: _What is the difference between immutable and mutable variables in Rust programming language?
  • Video class: Demo: Declare and use variables [8 of 35] | Rust for Beginners 05m
  • Exercise: What is required to make a variable mutable in the demonstrated program?
  • Video class: Learn about scalar data types [9 of 35] | Rust for Beginners 03m
  • Exercise: _Which of the following statements is true about Rust's integer types?
  • Video class: Demo: Create and use scalar data types [10 of 35] | Rust for Beginners 05m
  • Exercise: What is the result of dividing 9.0 by the floating point number defined as y?
  • Video class: Learn about compound data types [11 of 35] | Rust for Beginners 02m
  • Exercise: _What is the main difference between arrays and tuples in Rust?
  • Video class: Demo: Create and use compound data types [12 of 35] | Rust for Beginners 03m
  • Exercise: What happens when an array in Rust is accessed with an out-of-bound index during compile time?
  • Video class: Functions [13 of 35] | Rust for Beginners 01m
  • Exercise: _What is the keyword used to define a function in Rust?
  • Video class: Demo: Functions [14 of 35] | Rust for Beginners 02m
  • Exercise: What should the 'last char' function return when the input string is empty?
  • Video class: Structs [15 of 35] | Rust for Beginners 02m
  • Exercise: _What are the three flavors of structs in Rust?
  • Video class: Demo: Structs [16 of 35] | Rust for Beginners 05m
  • Exercise: What is the main concept explained in the provided video transcript?
  • Video class: Enums [17 of 35] | Rust for Beginners 03m
  • Exercise: _What is an enum in Rust and how is it commonly referred to in functional languages?
  • Video class: Demo: Enums [18 of 35] | Rust for Beginners 04m
  • Exercise: What does the KeyPress variant of the WebEvent enum in Rust represent?
  • Video class: If/else and match [19 of 35] | Rust for Beginners 03m
  • Exercise: _What is the difference between if/else and match expressions in Rust?
  • Video class: Demo: If/else and match [20 of 35] | Rust for Beginners 04m
  • Exercise: What will be printed when running the Rust code provided in the terminal?
  • Video class: Loops [21 of 35] | Rust for Beginners 03m
  • Exercise: _What is the main difference between while loops and for loops in Rust?
  • Video class: Demo: Loops [22 of 35] | Rust for Beginners 04m
  • Video class: Error handling [23 of 35] | Rust for Beginners 05m
  • Video class: Demo: Error handling [24 of 35] | Rust for Beginners 07m
  • Video class: Ownership [25 of 35] | Rust for Beginners 08m
  • Exercise: _What is the difference between storing a 32-bit integer and a vector in Rust?
  • Video class: Demo: Ownership [26 of 35] | Rust for Beginners 01m
  • Video class: Borrowing [27 of 35] | Rust for Beginners 03m
  • Exercise: _What is borrowing in Rust?
  • Video class: Demo: Borrowing [28 of 35] | Rust for Beginners 04m
  • Video class: Learn about strings [29 of 35] | Rust for Beginners 04m
  • Exercise: _What are the two types of strings that are commonly used in Rust programming?
  • Video class: Demo: Create and use strings [30 of 35] | Rust for Beginners 04m
  • Video class: Collections [31 of 35] | Rust for Beginners 03m
  • Exercise: _What is a VecDeque in Rust and when should you use it?
  • Video class: Demo: Collections [32 of 35] | Rust for Beginners 05m
  • Video class: Traits [33 of 35] | Rust for Beginners 03m
  • Exercise: _What is the purpose of Traits in Rust programming language?
  • Video class: Demo: Traits [34 of 35] | Rust for Beginners 05m
  • Video class: Next steps [35 of 35] | Rust for Beginners 01m
  • Exercise: _What is the best way to continue learning Rust after completing this beginner's series?

This free course includes:

2 hours and 21 minutes of online video course

Digital certificate of course completion (Free)

Exercises to train your knowledge

100% free, from content to certificate

Ready to get started?Download the app and get started today.

Install the app now

to access the course
Icon representing technology and business courses

Over 5,000 free courses

Programming, English, Digital Marketing and much more! Learn whatever you want, for free.

Calendar icon with target representing study planning

Study plan with AI

Our app's Artificial Intelligence can create a study schedule for the course you choose.

Professional icon representing career and business

From zero to professional success

Improve your resume with our free Certificate and then use our Artificial Intelligence to find your dream job.

You can also use the QR Code or the links below.

QR Code - Download Cursa - Online Courses

More free courses at Programming Languages ( Python, Ruby, Java, C )

Download the App now to have access to + 3300 free courses, exercises, certificates and lots of content without paying anything!

  • 100% free online courses from start to finish

    Thousands of online courses in video, ebooks and audiobooks.

  • More than 48 thousand free exercises

    To test your knowledge during online courses

  • Valid free Digital Certificate with QR Code

    Generated directly from your cell phone's photo gallery and sent to your email

Cursa app on the ebook screen, the video course screen and the course exercises screen, plus the course completion certificate

+ 9 million
students

Free and Valid
Certificate

60 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video and ebooks