

Usikker på hvor
starte?
Track
Sertifikat
Webutvikling med C#
4.8+
★★★★★
★★★★★
2360 omtaler
Beginner
Dette sporet er delt inn i flere kurs, som starter med de grunnleggende konseptene i C#, og beveger seg sakte mot mer avanserte konsepter, og til slutt fører til webutvikling med ASP.NET. Vis mer
C#
SQL
HTML/CSS
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Build a strong foundation in C#, mastering essential syntax, data types, and object-oriented programming concepts
- Enhance your C# skills with advanced techniques, improving efficiency, readability, and maintainability of your code
- Learn the fundamentals of SQL, understanding how to query and manipulate databases effectively
- Advance your SQL knowledge by mastering joins, subqueries, indexing, and performance optimization
- Get introduced to .NET with C#, exploring its framework, libraries, and tools for building robust applications
- Understand the essentials of HTML to create structured, well-formatted web pages
- Take your C# expertise to the next level with advanced .NET techniques, learning how to build scalable and high-performance applications
- 282 chapters
- 33 hours
- 293 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / C# Basics
In this section we will get an introduction to C#. Moreover, we will also learn some basic elements of the C# language.
- Why C#?Forhåndsvisning
- C# SyntaxForhåndsvisning
- Displaying OutputForhåndsvisning
- Challenge: Outputting a TriangleForhåndsvisning
- CommentsForhåndsvisning
- Challenge: CommentsForhåndsvisning
- VariablesForhåndsvisning
- IdentifiersForhåndsvisning
- Challenge: Variable DeclarationForhåndsvisning
- Basic Operators & ExpressionsForhåndsvisning
- Challenge: OperatorsForhåndsvisning
In any programming language we have to deal with different types of data. In this section we will learn about that.
- Integer Data TypesForhåndsvisning
- Challenge: Declaring Explicitly Typed VariablesForhåndsvisning
- Floating-Point and DoubleForhåndsvisning
- BooleansForhåndsvisning
- CharacterForhåndsvisning
- StringForhåndsvisning
- Strings ChallengeForhåndsvisning
- Basic String FormattingForhåndsvisning
- Challenge: String FormattingForhåndsvisning
- Declaring ConstantsForhåndsvisning
- Basic Type CastingForhåndsvisning
- Type Casting PracticeForhåndsvisning
- Basic Type ConversionForhåndsvisning
- Basic Coding PracticeForhåndsvisning
In this section we will learn about features of C# that help us control the flow of the program such as executing pieces of code based on conditions.
- Comparison OperatorsForhåndsvisning
- Logical OperatorsForhåndsvisning
- Challenge: OperatorsForhåndsvisning
- Order of OperationsForhåndsvisning
- If StatementForhåndsvisning
- Challenge: if ConditionForhåndsvisning
- else KeywordForhåndsvisning
- Challenge: else KeywordForhåndsvisning
- if-else ChainForhåndsvisning
- Challenge: if, else-if, elseForhåndsvisning
- switch StatementForhåndsvisning
- Challenge: SwitchForhåndsvisning
In this section we will learn about how to deal with repetitive tasks in programming.
Arrays are an important part of any programming language as they let us group together and manipulate a large amount of similar data. In this section we will learn about Arrays and how to use them for practical applications.
In this section we will learn about one of of the most widely used and essential features of C# called Methods. We will also explore its uses through creative practice tasks.
- What are Methods?Forhåndsvisning
- Creating and Calling MethodsForhåndsvisning
- Challenge: Methods CreationForhåndsvisning
- Method ParametersForhåndsvisning
- Challenge: Method with ParametersForhåndsvisning
- Method Return ValuesForhåndsvisning
- Challenge: Return ValuesForhåndsvisning
- Local & Global ScopesForhåndsvisning
- Challenge: ScopesForhåndsvisning
- What's Next?Forhåndsvisning
Module 2 / C# Beyond Basics
In this section we will learn data structures like Lists and Dictionaries. We will also learn how to read and write files. In the end we will look at how to deal with unexpected errors which can occur during the program's execution.
- What are Lists?Forhåndsvisning
- Practicing List DeclarationForhåndsvisning
- List MethodsForhåndsvisning
- What are Dictionaries?Forhåndsvisning
- Practicing DictionariesForhåndsvisning
- Reading Files using StreamReaderForhåndsvisning
- Reading Files using File MethodsForhåndsvisning
- Writing FilesForhåndsvisning
- Error HandlingForhåndsvisning
- Practicing Error HandlingForhåndsvisning
In this section we will learn about some more advanced structures for storing data, namely Structs and Enumerators. We will learn how to use them and we will look at some practice examples as well.
- What are Structs?Forhåndsvisning
- Defining & Using a StructureForhåndsvisning
- Practicing StructsForhåndsvisning
- Structs with Other Data StructuresForhåndsvisning
- Struct MethodsForhåndsvisning
- Correctly Accessing Fields in Struct MethodsForhåndsvisning
- Practicing MethodsForhåndsvisning
- Struct ConstructorsForhåndsvisning
- Practicing ConstructorsForhåndsvisning
- EnumeratorsForhåndsvisning
- Practicing EnumeratorForhåndsvisning
In this section, we will learn what Object-Oriented Programming (OOP) is and how we can create programs that use the concept of OOP. We will also practice this concept with many hands-on tasks that are fun to solve.
- What is Object-Oriented Programming?Forhåndsvisning
- Defining ClassesForhåndsvisning
- Practice: Creating ClassesForhåndsvisning
- Class ObjectsForhåndsvisning
- Class Objects vs Struct ObjectsForhåndsvisning
- Practice: ObjectsForhåndsvisning
- Class MethodsForhåndsvisning
- Practice: MethodsForhåndsvisning
- Class ConstructorsForhåndsvisning
- Practice: ConstructorsForhåndsvisning
In this section, we delve deeper into the essentials of Object-Oriented Programming (OOP). We explore advanced topics to enhance your understanding and proficiency in OOP. From managing object lifecycles through destructors to refining class structures with access modifiers, and harnessing the power of derived classes and method overloading, this section equips you with the knowledge and practical skills needed to design robust and flexible object-oriented systems.
This will be a detailed chapter in which we will dive deep into the main principles of Object-Oriented Programming (OOP). We will also look at many practical applications and hands-on examples of these principles to understand them better. In this section we will revise some of the concepts from the previous section in a bit more detail and combine the concepts together to understand it more thoroughly.
- What are the Principles of OOP?Forhåndsvisning
- InheritanceForhåndsvisning
- Practicing InheritanceForhåndsvisning
- PolymorphismForhåndsvisning
- Practicing PolymorphismForhåndsvisning
- EncapsulationForhåndsvisning
- Encapsulation PracticeForhåndsvisning
- AbstractionForhåndsvisning
- Abstraction PracticeForhåndsvisning
- What's Next?Forhåndsvisning
Module 3 / Introduksjon til SQL
I denne seksjonen skal vi lære hvordan vi bruker SQL SELECT-setningen for å hente en enkelt tabellkolonne, flere tabellkolonner og alle tabellkolonner. Vi vil også finne ut hvordan vi returnerer unike verdier.
- Hente Individuelle KolonnerForhåndsvisning
- Hente Flere KolonnerForhåndsvisning
- Henter Alle KolonnerForhåndsvisning
- Henter Distinct RaderForhåndsvisning
- Begrense ResultaterForhåndsvisning
- Utfordring: Finn Befolkningen i LandeneForhåndsvisning
- Utfordring: Finn Alle LandForhåndsvisning
- Utfordring: Finn Alle Land med Deres IDsForhåndsvisning
- Utfordring: Finn LandskapitalerForhåndsvisning
- Utfordring: Finn Regionene Der Alle Landene Er LokalisertForhåndsvisning
I denne delen skal vi utforske hvordan vi kan organisere og prioritere dataene som returneres av en spørring ved å bruke ORDER BY-klausulen. Plassert på slutten av en SELECT-setning, lar denne klausulen deg sortere resultatene dine etter en eller flere kolonner, enten i stigende eller synkende rekkefølge, noe som gir en mer meningsfull og lett tolkelig datautgang.
- Sortering av DataForhåndsvisning
- Utfordring: BefolkningssorteringForhåndsvisning
- Sortering Etter Flere KolonnerForhåndsvisning
- Utfordring: Dual-SorteringsspørringForhåndsvisning
- Spesifisere SorteringsretningForhåndsvisning
- Utfordring: Sort the Landene Etter Region og HovedstadForhåndsvisning
- Utfordring: Sorter Hovedsteder i Synkende RekkefølgeForhåndsvisning
- Utfordring: Sorter Land i Stigende RekkefølgeForhåndsvisning
- Utfordring: Finn Land, Deres IDs, og Deres BefolkningerForhåndsvisning
- Utfordring: Finn Land, ID-er, Befolkninger, Regioner, og Sorter DemForhåndsvisning
- Utfordring: Finn Alle Kontinenter og Sorter Dem i Stigende RekkefølgeForhåndsvisning
I denne seksjonen skal vi lære hvordan vi filtrerer returnerte data ved å bruke SELECT-setningens WHERE-klausul. Vi vil lære hvordan vi tester for likhet, ulikhet, mer og mindre betydningsfulle enn verdirekker, og NULL-verdier.
I denne delen skal vi utforske hvordan du kan forbedre søkebetingelsene dine ved å kombinere WHERE-klausuler med AND- og OR-operatorene. Vi vil også dekke hvordan NOT-operatoren kan brukes til å ekskludere visse resultater.
I denne seksjonen skal vi lære hva SQL-aggregatfunksjoner er og hvordan vi bruker dem til å oppsummere tabelldata.
- AVG()-FunksjonenForhåndsvisning
- Utfordring: OverflatearealvalgForhåndsvisning
- The COUNT() FunctionForhåndsvisning
- Utfordring: Kontinental TellingForhåndsvisning
- The MAX() FunctionForhåndsvisning
- The MIN() FunctionForhåndsvisning
- Utfordring: Stort Gjennomsnittlig OverflatearealForhåndsvisning
- The SUM() FunctionForhåndsvisning
Module 4 / Videregående SQL
I denne seksjonen vil du lære hvordan du grupperer og håndterer data effektivt. Vi vil introdusere GROUP BY-operatøren for å gruppere data. I tillegg vil du lære hvordan du filtrerer grupperte data ved hjelp av HAVING-operatøren.
- GROUP BY-KlausulForhåndsvisning
- Rekkefølge av UtsagnForhåndsvisning
- Utfordring: Total Kjøretid for Hver T-banelinjeForhåndsvisning
- Gjennomsnittlig Elevkarakter UtfordringForhåndsvisning
- Søker Etter de Beste Matematikkstudentene UtfordringForhåndsvisning
- Having-KlausulForhåndsvisning
- Flere Aggregeringsfunksjoner i SpørringenForhåndsvisning
- Mer Kompleks FiltreringForhåndsvisning
Du vil lære om nestede underforespørsler, hvordan du oppretter dem, og hvordan du bruker dem effektivt.
- Nestede SpørringerForhåndsvisning
- Utfordring: Ansatte i Ikke-Tekniske AvdelingerForhåndsvisning
- Bruk av Indre Underforespørsler i the FROM-SeksjonenForhåndsvisning
- Utfordring: Ansatte med Mer enn Gjennomsnittlig LønnForhåndsvisning
- Union-KlausulForhåndsvisning
- Utfordring: Kombinere TabellresultaterForhåndsvisning
Her vil du lære hvordan du kan kombinere flere tabeller, slik at du kan jobbe med en samlet tabell og forenkle opprettelsen av spørringer.
- JOIN 2 TabellerForhåndsvisning
- Utfordring: Få Kategori Etter ProduktprisForhåndsvisning
- Utfordring: Få Minimumspris Etter KategoriForhåndsvisning
- Utfordring: Få Produktmengde Etter KategoriForhåndsvisning
- Venstre, Høyre og Indre JoinsForhåndsvisning
- Utfordring: Tabell JoinForhåndsvisning
- Utfordring: Bruk av FULL JOINForhåndsvisning
Lær det grunnleggende om Data Definition Language (DDL) og Data Manipulation Language (DML) i SQL, inkludert hvordan du oppretter, endrer og sletter databaseobjekter, samt hvordan du setter inn, oppdaterer og sletter data i tabeller.
Module 5 / Introduction to .NET with C#
In this section we will learn about what is .NET, how to setup the development environment and how to start making some console apps. Apart from that we will also learn how to take input from the user in the console for making interactive applications.
- What is the .NET Platform exactly?Forhåndsvisning
- Creating a Console ApplicationForhåndsvisning
- Taking input from the UserForhåndsvisning
- Task - Building a Simple CalculatorForhåndsvisning
- Dealing with Exceptions caused by User InputForhåndsvisning
- Task - Improving the CalculatorForhåndsvisning
- Reading FilesForhåndsvisning
- Writing FilesForhåndsvisning
- Task - File Based CalculatorForhåndsvisning
In this section, we will be learning how to perform multiple tasks at once to improve the performance and responsiveness of applications. We will also briefly learn what Web Services and APIs are. This will give us an introduction to how the internet and websites work. We will also learn how to use APIs.
- What is Asynchronous Programming?Forhåndsvisning
- Implementing an Asynchronous MethodForhåndsvisning
- Task - Asynchronously Reading FilesForhåndsvisning
- Introduction to APIsForhåndsvisning
- Making a GET RequestForhåndsvisning
- Task - Using an APIForhåndsvisning
- Handling Exceptions caused by HTTP RequestForhåndsvisning
- Task - Exception Handling for API ResponseForhåndsvisning
In this section we will learn what are databases, specifically what are SQL databases and how to create them. We will study their structure and will learn to perform some basic operations on the databases. This chapter will serve as an introduction to ADO.NET which is a .NET module used for interacting with databases.
- What is a Database?Forhåndsvisning
- Structure of a Relational DatabaseForhåndsvisning
- Setting Up A MySQL ServerForhåndsvisning
- Connecting to the MySQL ServerForhåndsvisning
- Task - Writing Connection StringsForhåndsvisning
- Executing CommandsForhåndsvisning
- Task - Executing MySQL CommandsForhåndsvisning
- MySqlCommand MethodsForhåndsvisning
- Task - Connecting to a MySQL Database and Executing CommandsForhåndsvisning
In this section, we'll cover the fundamental CRUD operations (Create, Read, Update, Delete) using SQL. We'll explore SQL syntax at a basic level and recap how to implement each SQL statement in C# code. While some parts may serve as a review from the previous section, this will provide a solid understanding of essential database concepts, enabling you to understand both the SQL and C# code and write it independently.
- Introduction to CRUD OperationsForhåndsvisning
- Installing & Using MySQL WorkbenchForhåndsvisning
- CREATE - Part IForhåndsvisning
- Task - Using CREATEForhåndsvisning
- CREATE - Part IIForhåndsvisning
- Task - Using INSERTForhåndsvisning
- ReadForhåndsvisning
- Task - Using SELECTForhåndsvisning
- UpdateForhåndsvisning
- Task - Using UPDATEForhåndsvisning
- Delete - Part IForhåndsvisning
- Delete - Part IIForhåndsvisning
- Task - Using DELETEForhåndsvisning
In this chapter we will learn about additional functions or methods for making database management more efficient. For-example executing multiple SQL commands at once using Stored Procedures, and retrieving data in bulk from the SQL database using DataSet.
Module 6 / HTML Essentials
Get an introduction to the web and HTML, including the significance of tags, elements, and attributes. Learn about the basic structure of an HTML document and the brief history of the web.
Master the essentials of HTML markup, focusing on special text formatting and lists, understanding their significance in structuring content within an HTML document. Dive into the intricacies of HTML document structure while refining text markup techniques.
- HTML Document Structure ExplainedForhåndsvisning
- Challenge: Structuring an HTML DocumentForhåndsvisning
- Using Headings and Paragraphs in HTMLForhåndsvisning
- Challenge: Mastering Text MarkupForhåndsvisning
- Enhancing Text and Interactivity in HTMLForhåndsvisning
- Challenge: Applying Special Text MarkupForhåndsvisning
- Creating and Using Lists in HTMLForhåndsvisning
- Challenge: Structuring Content with ListsForhåndsvisning
Unlock the power of visual and auditory content in web development as you learn to seamlessly integrate images, video, and audio elements into HTML documents. Explore the nuances of incorporating various media formats.
Navigate the intricacies of data presentation and user interaction with comprehensive coverage of tables and forms in HTML, encompassing table structures, form creation, and input elements. Gain proficiency in implementing form input elements and leveraging attributes for enhanced functionality.
- Creating and Structuring HTML TablesForhåndsvisning
- Challenge: Working with TablesForhåndsvisning
- Building HTML FormsForhåndsvisning
- Challenge: Building a Web FormForhåndsvisning
- Using Form Inputs and Labels EffectivelyForhåndsvisning
- Challenge: Applying Form Inputs and LabelsForhåndsvisning
- HTML Input Attributes for Enhanced FunctionalityForhåndsvisning
Elevate your HTML skills to the next level by delving into semantic HTML elements, empowering you to create well-structured and accessible web content. Embark on building your first website, applying newfound knowledge to bring your ideas to life.
Module 7 / Advanced C# with .NET
In this section, we will learn what MAUI is, and how to set up a .NET MAUI application. We will also look at the structure of an MAUI application, and in the end, we will learn how to add some basic elements to our UI. This section will prepare us for the rest of the course where we will be working with more practical concepts.
In this section we will learn about delegates, events and data binding. Using this knowledge we will learn how to make interesting interactive GUI applications.
In this section, we will learn what Threading is and how to use it to keep our applications responsive, and run smoothly while performing resource intensive tasks. We will see how to differs from other similar concepts on C# and what are good practices when implementing Threading in our application. There will also be some interesting tasks to help us in understand this concept on a deeper level.
In this section, we will learn how to make more robust methods, classes and other objects which can work multiple types of input data types, by first learning about Generics and how to implement generic classes, then we will move on to Reflection and how to use reflection for further improving the capabilities of our programs.
- What are Generics?Forhåndsvisning
- Implementing Generic MethodsForhåndsvisning
- Task - Implementing a Generic MethodForhåndsvisning
- Implementing Generic ClassesForhåndsvisning
- Task - Implementing a Generic ClassForhåndsvisning
- Introduction to ReflectionForhåndsvisning
- Basic ReflectionForhåndsvisning
- Task - ReflectionForhåndsvisning
- What's Next?Forhåndsvisning
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
Det viktigste er å lære og ikke gi opp
Materialet er bra, det er mye å lære, alt for å bli bedre, og det viktigste er å lære det du ønsker....
Matteo Comune
Takket være dem lærer jeg mye…
Takket være dem lærer jeg mye raskere fordi de hjelper deg med å forstå alt fra grunnen av. Det er den beste nettsiden for folk uten IT-bakgrunn...
Yuliana Cadavid
Flott kurs for nybegynnere
Flott kurs for nybegynnere, de tester kunnskapen din i hver leksjon....
Elpunzon
Jeg nyter min Codefinity-opplevelse…
Jeg nyter min Codefinity-opplevelse med å lære Python. Den selvstyrte læringsmåten er flott fordi jeg kan tilpasse den til timeplanen min...
Alexandru Alexandru
Det er hyggelig å lære fra Codefinity
Det er hyggelig å lære fra Codefinity. Det er enkelt og har gode eksempler på det jeg lærte her...
jacob Templet
Easy to follow along with and provides…
Lett å følge med på og gir utfordring i hverdagen min. Utfordringen får meg til å ville lære dag etter dag...
Elan
Codefinity er et omfattende læringsverktøy…
Codefinity er et omfattende læringsverktøy som hjelper deg med å utvikle ferdighetene dine som programvareingeniør eller datavitenskapsmann. Øvelsene er morsomme og en god måte å skjerpe ferdighetene dine på...
Thibault
Første gang jeg lærer å programmere
Første gang jeg lærer å programmere og lykkes med det takket være Codefinity – Takk!...
Adrien Morel
Godt designet for totale nybegynnere
Godt designet for totale nybegynnere, med inkrementell fremgang som gir meg selvtillit....
_Gracy
det er rett og slett perfekt forklart.
Det er rett og slett perfekt forklart! Så langt har jeg ikke opplevd noen vanskeligheter fordi alt er så godt organisert....
Ruslan Kravchuk
Det viktigste er å lære og ikke gi opp
Materialet er bra, det er mye å lære, alt for å bli bedre, og det viktigste er å lære det du ønsker....
Matteo Comune
Takket være dem lærer jeg mye…
Takket være dem lærer jeg mye raskere fordi de hjelper deg med å forstå alt fra grunnen av. Det er den beste nettsiden for folk uten IT-bakgrunn...
Yuliana Cadavid
Flott kurs for nybegynnere
Flott kurs for nybegynnere, de tester kunnskapen din i hver leksjon....
Elpunzon
Jeg nyter min Codefinity-opplevelse…
Jeg nyter min Codefinity-opplevelse med å lære Python. Den selvstyrte læringsmåten er flott fordi jeg kan tilpasse den til timeplanen min...
Alexandru Alexandru
Det er hyggelig å lære fra Codefinity
Det er hyggelig å lære fra Codefinity. Det er enkelt og har gode eksempler på det jeg lærte her...
jacob Templet
Easy to follow along with and provides…
Lett å følge med på og gir utfordring i hverdagen min. Utfordringen får meg til å ville lære dag etter dag...
Elan
Codefinity er et omfattende læringsverktøy…
Codefinity er et omfattende læringsverktøy som hjelper deg med å utvikle ferdighetene dine som programvareingeniør eller datavitenskapsmann. Øvelsene er morsomme og en god måte å skjerpe ferdighetene dine på...
Thibault
Første gang jeg lærer å programmere
Første gang jeg lærer å programmere og lykkes med det takket være Codefinity – Takk!...
Adrien Morel
Godt designet for totale nybegynnere
Godt designet for totale nybegynnere, med inkrementell fremgang som gir meg selvtillit....
_Gracy
det er rett og slett perfekt forklart.
Det er rett og slett perfekt forklart! Så langt har jeg ikke opplevd noen vanskeligheter fordi alt er så godt organisert....
Data Engineer
Sertifikat for fullføring
Vis frem dine nyervervede ferdigheter. Du har fortjent det
Discover more
Learning tracks
Kun for Ultimate
6 Kurs
169 Oppgaver
Kun for Ultimate
4 Kurs
115 Oppgaver
Kun for Ultimate
6 Kurs
101 Oppgaver
Kun for Ultimate
4 Kurs
143 Oppgaver
Kun for Ultimate
5 Kurs
119 Oppgaver
Kun for Ultimate
3 Kurs
38 Oppgaver
Kun for Ultimate
7 Kurs
376 Oppgaver
Kun for Ultimate
2 Kurs
1 Prosjekt
57 Oppgaver
Kun for Ultimate
7 Kurs
346 Oppgaver
Kun for Ultimate
6 Kurs
309 Oppgaver
Kun for Ultimate
5 Kurs
146 Oppgaver
Kun for Ultimate
5 Kurs
135 Oppgaver
Kun for Ultimate
3 Kurs
71 Oppgaver
Kun for Ultimate
6 Kurs
239 Oppgaver
Kun for Ultimate
5 Kurs
239 Oppgaver
Kun for Ultimate
4 Kurs
125 Oppgaver
Kun for Ultimate
3 Kurs
119 Oppgaver
Kun for Ultimate
3 Kurs
75 Oppgaver
Kun for Ultimate
4 Kurs
159 Oppgaver
Kun for Ultimate
4 Kurs
154 Oppgaver
Learning tracks
spor
Python fra Null til Helt
Nybegynner
4.7
(8347)
spor
SQL fra Nybegynner til Ekspert
Nybegynner
4.7
(2594)
spor
C++-Grunnleggende
Nybegynner
4.5
(484)
spor
Spillutvikling med Unity
Nybegynner
4.7
(76)
spor
Bli en React-Utvikler
Middelsnivå
4.7
(67)
spor
Excel-Essensielt
Nybegynner
4.7
(304)
spor
Java Essensielt
Nybegynner
4.7
(198)
spor
Python Utover Mellomnivå
Nybegynner
4.6
(66)
spor
Full Stack Webutvikling
Nybegynner
4.7
(857)
spor
Grunnleggende Innen Frontend-Utvikling
Nybegynner
4.7
(829)
spor
Mestring av Datavisualisering
Middelsnivå
4.7
(568)
spor
Overvåket Maskinlæring
Middelsnivå
4.6
(125)
spor
C++ Mastery
Avansert
4.8
(16)
spor
Java Web
Avansert
4.7
(1164)
spor
Bli en QA-Ingeniør
Nybegynner
4.7
(722)
spor
Video Production With Adobe
Nybegynner
5.0
(5)
spor
UI/UX Designverktøy
Nybegynner
5.0
(4)
spor
Essensielle Kontorferdigheter
Nybegynner
4.8
(242)
spor
Digital Marketing Essentials
Nybegynner
5.0
(3)
spor
Complete Social Media Management
Nybegynner
5.0
(1)
Become a Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams