SlideShare a Scribd company logo
1 of 48
Download to read offline
Introduction to .Net Framework,[object Object],NithyaVidhyaarthi,[object Object]
Before .NET,[object Object],Windows GUI development: Win32 API, MFC, Visual Basic, COM,[object Object],Web development: ASP,[object Object],Java – “Write once, run anywhere.”,[object Object],Embrace and extend: Visual J++,[object Object]
Life As a C/Win32 API Programmer,[object Object],Traditional software development for the Windows.,[object Object],C developers are forced to contend with complex memory management and pointer arithmetic. ,[object Object],It lacks the benefits provided by the object-oriented approach,[object Object],When you combine the thousands of global functions and data types defined by the Win32 API to an already formidable language, it is little wonder that there are so many buggy applications floating around today.,[object Object]
Life As a C++/MFC Programmer,[object Object],[object Object]
Programmers benefit from the famed “pillars of OOP” (encapsulation, inheritance, and polymorphism).
Microsoft Foundation Classes (MFC) provides a set of C++ classes that facilitate the construction of Win32 applications.
It wraps a “sane subset” of the raw Win32 API behind a number of classes, magic macros, and numerous code-generation tools (wizards).
Regardless of the helpful MFC, programming for Windows using C++ remains a difficult and error-prone experience,[object Object]
Life As a Java/J2EE Programmer,[object Object],Object oriented with syntactic roots in C++. ,[object Object],Java cleans up many unsavory syntactical aspects of C++. ,[object Object],Java provides programmers with a large number of predefined “packages” that contain various type definitions. ,[object Object],Limited ability to access non-Java APIs.,[object Object],Little support for truecross-language integration. ,[object Object],Not appropriate for many graphically or numerically intensive applications. ,[object Object],A better approach for such programs would be to use a language such as C++ where appropriate.,[object Object]
Life As a COM Programmer,[object Object],Microsoft’s previous application development framework.,[object Object],reusable binary code.,[object Object],C++ programmers can build COM classes that can be used by VB6. Delphi programmers can use COM classes built using C. ,[object Object],COM’s language independence is limited. ,[object Object],COM has no support for classical inheritance). ,[object Object],COM is extremely complex under the hood.,[object Object],The Active Template Library (ATL) provides a set of C++ classes, templates, and macros to ease the creation of COM types.,[object Object]
Windows DNA Programmer,[object Object],[object Object]
COM-based Windows Distributed interNet Applications Architecture (DNA) is quite complex.
Due to the simple fact that Windows DNA requires the use of numerous technologies and languages (ASP, HTML, XML, JavaScript, VBScript, COM(+), and data access API like ADO). ,[object Object]
.Net, the Rescuer,[object Object],OOP,[object Object],JVM,[object Object],GUI,[object Object],.NET,[object Object],Web,[object Object],component-based design,[object Object],n-tier design,[object Object]
.Net, the Rescuer,[object Object]
.Net provides,[object Object],Integrated environment,[object Object],Internet, Desktop , Mobile devices,[object Object],consistent object-oriented,[object Object],To provide a portable environment,[object Object],A managed environment,[object Object]
What Is .NET,[object Object],.NET is a framework ,[object Object],New programming methodology,[object Object],.NET is platform independent / cross platform,[object Object],.NET is language-insensitive,[object Object]
.NET is cross-platform,[object Object],APP.exe,[object Object],?,[object Object],Win32,[object Object],(XP,2K,98),[object Object],Win64,[object Object],WinCE,[object Object]
.NET Application,[object Object],.NET Framework,[object Object],Narrow view of .Net applications,[object Object],Operating System + Hardware,[object Object]
.Net Framework,[object Object]
.Net Architecture,[object Object],.NET architecture is:,[object Object],multi-language,[object Object],cross-platform,[object Object],based on the CLR, FCL, and JIT technology,[object Object],.NET components are packaged as assemblies,[object Object]
.Net Architecture,[object Object]
.Net Technical Architecture,[object Object],VB,[object Object],C++,[object Object],C#,[object Object],Visual Studio.NET,[object Object],JScript,[object Object],…,[object Object],Common Language Specification,[object Object],WindowsForms,[object Object],ASP.NET: Web Services,[object Object],and Web Forms,[object Object],WindowsForms,[object Object],ADO.NET: Data and XML,[object Object],Base Class Library,[object Object],Common Language Runtime,[object Object]
Common Language Runtime,[object Object],A common runtime for all .NET languages,[object Object],Common type system,[object Object],Common metadata,[object Object],Intermediate Language (IL) to native code compilers,[object Object],Memory allocation and garbage collection,[object Object],Code execution and security,[object Object],Over 15 languages supported today,[object Object],C#, VB, Jscript, Visual C++ from Microsoft,[object Object],Perl, Python, Smalltalk, Cobol, Haskell, Mercury, Eiffel, Oberon, Oz, Pascal, APL, CAML, Scheme, etc.,[object Object],Rational is working on Java compiler for CLR,[object Object]
The CLR Architecture,[object Object],Base Class Library Support,[object Object],Thread Support,[object Object],COM Marshaler,[object Object],Type Checker,[object Object],Exception Manager,[object Object],Security Engine,[object Object],Debug Engine,[object Object],MSIL to Native,[object Object],Compilers (JIT),[object Object],Code,[object Object],Manager,[object Object],Garbage,[object Object],Collector (GC),[object Object],Class Loader,[object Object]
CLR Execution Model (Narrow),[object Object],Code in VB.NET,[object Object],Code in C#,[object Object],Code in another ,[object Object],.NET Language,[object Object],VB.NET compiler,[object Object],C# compiler,[object Object],Appropriate,[object Object],Compiler,[object Object],IL(Intermediate,[object Object],Language) code,[object Object],CLR just-in-time,[object Object],execution,[object Object]
CLR Execution Model,[object Object],Source code,[object Object],VB,[object Object],C++,[object Object],C#,[object Object],Unmanaged,[object Object],Component,[object Object],Compiler,[object Object],Compiler,[object Object],Compiler,[object Object],Managed,[object Object],code,[object Object],Assembly,[object Object],IL Code,[object Object],Assembly,[object Object],IL Code,[object Object],Assembly,[object Object],IL Code,[object Object],Common Language Runtime,[object Object],JIT Compiler,[object Object],Native Code,[object Object],Operating System Services,[object Object]
How CLR works?,[object Object]
CLR based execution,[object Object],JIT Compiler,[object Object],APP.exe,[object Object],         OS Process,[object Object],CLR ,[object Object],other FCL components,[object Object],Core FCL,[object Object],obj code,[object Object],Underlying OS and HW,[object Object]
Common Language Runtime,[object Object],Execution Engine,[object Object],Compiles Microsoft Intermediate Language (MSIL) into native code,[object Object],Handles garbage collection,[object Object],Handles exceptions,[object Object],Enforces code access security,[object Object],Handles verification,[object Object],Managed v. Unmanaged,[object Object]
Implications of CLR execution model,[object Object],Clients need CLR & FCL to run .NET apps,[object Object],available via Redistributable .NET Framework,[object Object],Design trade-off…,[object Object],[object Object]
portability:
slower execution?,[object Object]
Advantages of CLR,[object Object],Support for developer services (debugging),[object Object],Interoperation between managed code and unmanaged code (COM, DLLs).,[object Object],Managed code environment,[object Object],Improved memory handling,[object Object],Improved “garbage collection”,[object Object]
Advantages of CLR,[object Object],[object Object]
JIT allows the IL code to be hardware independent.
CLR also allows for enforcement of code access security.
Verification of type safety.
Access to Metadata (enhanced Type Information),[object Object]
CLI,[object Object]
Common Language Infrastructure,[object Object],[object Object]
Four components:
Common Type System (CTS)
Meta-data in a language agnostic fashion.
Common Language Specification – behaviors that all languages need to follow.
A Virtual Execution System (VES).,[object Object]
Common Type System (CTS),[object Object]
CTS Data Types,[object Object]

More Related Content

What's hot (20)

Lecture 1 introduction to vb.net
Lecture 1   introduction to vb.netLecture 1   introduction to vb.net
Lecture 1 introduction to vb.net
 
Introduction to c#
Introduction to c#Introduction to c#
Introduction to c#
 
Nakov - .NET Framework Overview - English
Nakov - .NET Framework Overview - EnglishNakov - .NET Framework Overview - English
Nakov - .NET Framework Overview - English
 
Asp.net.
Asp.net.Asp.net.
Asp.net.
 
dot net technology
dot net technologydot net technology
dot net technology
 
ASP.NET Web form
ASP.NET Web formASP.NET Web form
ASP.NET Web form
 
Introduction to c#
Introduction to c#Introduction to c#
Introduction to c#
 
Introduction To C#
Introduction To C#Introduction To C#
Introduction To C#
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NET
 
C sharp
C sharpC sharp
C sharp
 
Programming in c#
Programming in c#Programming in c#
Programming in c#
 
DOT Net overview
DOT Net overviewDOT Net overview
DOT Net overview
 
C# programming language
C# programming languageC# programming language
C# programming language
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
 
ADO .Net
ADO .Net ADO .Net
ADO .Net
 
.net CLR
.net CLR.net CLR
.net CLR
 
Developing an ASP.NET Web Application
Developing an ASP.NET Web ApplicationDeveloping an ASP.NET Web Application
Developing an ASP.NET Web Application
 
CSharp Presentation
CSharp PresentationCSharp Presentation
CSharp Presentation
 
C# basics
 C# basics C# basics
C# basics
 
.NET Framework Overview
.NET Framework Overview.NET Framework Overview
.NET Framework Overview
 

Viewers also liked

Asp.net architecture
Asp.net architectureAsp.net architecture
Asp.net architectureIblesoft
 
Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Bhushan Mulmule
 
Asp.net and .Net Framework ppt presentation
Asp.net and .Net Framework ppt presentationAsp.net and .Net Framework ppt presentation
Asp.net and .Net Framework ppt presentationabhishek singh
 
Crystal Reports Review
Crystal Reports ReviewCrystal Reports Review
Crystal Reports ReviewJustin R. Rue
 
Crystal Reports: Basics
Crystal Reports: BasicsCrystal Reports: Basics
Crystal Reports: BasicsNet at Work
 
Components of .NET Framework
Components of .NET FrameworkComponents of .NET Framework
Components of .NET FrameworkRoshith S Pai
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net frameworkThen Murugeshwari
 
CMS (CONTENT MANAGEMENT SYSTEM)
CMS (CONTENT MANAGEMENT SYSTEM)CMS (CONTENT MANAGEMENT SYSTEM)
CMS (CONTENT MANAGEMENT SYSTEM)Aaina Katyal
 
Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Vangos Pterneas
 
.NET and C# Introduction
.NET and C# Introduction.NET and C# Introduction
.NET and C# IntroductionSiraj Memon
 
Content Management System
Content Management SystemContent Management System
Content Management SystemOmnePresent
 
Robot Framework Introduction
Robot Framework IntroductionRobot Framework Introduction
Robot Framework IntroductionPekka Klärck
 
The Design of the Scalaz 8 Effect System
The Design of the Scalaz 8 Effect SystemThe Design of the Scalaz 8 Effect System
The Design of the Scalaz 8 Effect SystemJohn De Goes
 
What is a Content Management System or CMS
What is a Content Management System or CMSWhat is a Content Management System or CMS
What is a Content Management System or CMSSteve Williams
 
GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기
 GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기 GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기
GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기Kenneth Ceyer
 
失敗と向き合う姿勢を正す話
失敗と向き合う姿勢を正す話失敗と向き合う姿勢を正す話
失敗と向き合う姿勢を正す話LIFULL Co., Ltd.
 

Viewers also liked (20)

Asp.net architecture
Asp.net architectureAsp.net architecture
Asp.net architecture
 
Visual Studio IDE
Visual Studio IDEVisual Studio IDE
Visual Studio IDE
 
Asp Architecture
Asp ArchitectureAsp Architecture
Asp Architecture
 
Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Overview of .Net Framework 4.5
Overview of .Net Framework 4.5
 
Asp.net and .Net Framework ppt presentation
Asp.net and .Net Framework ppt presentationAsp.net and .Net Framework ppt presentation
Asp.net and .Net Framework ppt presentation
 
Crystal Reports Review
Crystal Reports ReviewCrystal Reports Review
Crystal Reports Review
 
Crystal Reports: Basics
Crystal Reports: BasicsCrystal Reports: Basics
Crystal Reports: Basics
 
Crystal report
Crystal reportCrystal report
Crystal report
 
Components of .NET Framework
Components of .NET FrameworkComponents of .NET Framework
Components of .NET Framework
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net framework
 
CMS (CONTENT MANAGEMENT SYSTEM)
CMS (CONTENT MANAGEMENT SYSTEM)CMS (CONTENT MANAGEMENT SYSTEM)
CMS (CONTENT MANAGEMENT SYSTEM)
 
Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)
 
.NET and C# Introduction
.NET and C# Introduction.NET and C# Introduction
.NET and C# Introduction
 
Content Management System
Content Management SystemContent Management System
Content Management System
 
Robot Framework Introduction
Robot Framework IntroductionRobot Framework Introduction
Robot Framework Introduction
 
The Design of the Scalaz 8 Effect System
The Design of the Scalaz 8 Effect SystemThe Design of the Scalaz 8 Effect System
The Design of the Scalaz 8 Effect System
 
Demonetisation.
Demonetisation.Demonetisation.
Demonetisation.
 
What is a Content Management System or CMS
What is a Content Management System or CMSWhat is a Content Management System or CMS
What is a Content Management System or CMS
 
GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기
 GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기 GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기
GDG DevFest 2017 Seoul 프론트엔드 모던 프레임워크 낱낱히 파헤치기
 
失敗と向き合う姿勢を正す話
失敗と向き合う姿勢を正す話失敗と向き合う姿勢を正す話
失敗と向き合う姿勢を正す話
 

Similar to Introduction to .net framework

Similar to Introduction to .net framework (20)

Presentation1
Presentation1Presentation1
Presentation1
 
Introduction to .NET by QuontraSolutions
Introduction to .NET by QuontraSolutionsIntroduction to .NET by QuontraSolutions
Introduction to .NET by QuontraSolutions
 
Introduction to .net FrameWork by QuontraSolutions
Introduction to .net FrameWork by QuontraSolutionsIntroduction to .net FrameWork by QuontraSolutions
Introduction to .net FrameWork by QuontraSolutions
 
1 get started with c#
1   get started with c#1   get started with c#
1 get started with c#
 
ASP.NET Session 1
ASP.NET Session 1ASP.NET Session 1
ASP.NET Session 1
 
Dotnet ch1
Dotnet ch1Dotnet ch1
Dotnet ch1
 
Introductionto .netframework by Priyanka Pinglikar
Introductionto .netframework by Priyanka PinglikarIntroductionto .netframework by Priyanka Pinglikar
Introductionto .netframework by Priyanka Pinglikar
 
Introduction to .net
Introduction to .netIntroduction to .net
Introduction to .net
 
.Net overview
.Net overview.Net overview
.Net overview
 
.Net Overview
.Net Overview.Net Overview
.Net Overview
 
.Net overview
.Net overview.Net overview
.Net overview
 
Microsoft.Net
Microsoft.NetMicrosoft.Net
Microsoft.Net
 
Csharp dot net
Csharp dot netCsharp dot net
Csharp dot net
 
Net framework
Net frameworkNet framework
Net framework
 
.Net framework
.Net framework.Net framework
.Net framework
 
Chapter1_Part1.pptx
Chapter1_Part1.pptxChapter1_Part1.pptx
Chapter1_Part1.pptx
 
Visual studio.net
Visual studio.netVisual studio.net
Visual studio.net
 
.Net Overview -- Training (Lesson 1)
.Net Overview -- Training (Lesson 1).Net Overview -- Training (Lesson 1)
.Net Overview -- Training (Lesson 1)
 
.Net Framework
.Net Framework.Net Framework
.Net Framework
 
Dot net
Dot netDot net
Dot net
 

Recently uploaded

Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
Meet the new FSP 3000 M-Flex800™
Meet the new FSP 3000 M-Flex800™Meet the new FSP 3000 M-Flex800™
Meet the new FSP 3000 M-Flex800™Adtran
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioChristian Posta
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URLRuncy Oommen
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfDaniel Santiago Silva Capera
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAshyamraj55
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdfPedro Manuel
 
Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024SkyPlanner
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-pyJamie (Taka) Wang
 
Linked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesLinked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesDavid Newbury
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...Aggregage
 
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesMd Hossain Ali
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureEric D. Schabell
 
VoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXVoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXTarek Kalaji
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPathCommunity
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintMahmoud Rabie
 
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfJamie (Taka) Wang
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfDianaGray10
 

Recently uploaded (20)

Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
Meet the new FSP 3000 M-Flex800™
Meet the new FSP 3000 M-Flex800™Meet the new FSP 3000 M-Flex800™
Meet the new FSP 3000 M-Flex800™
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and Istio
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URL
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdf
 
Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024Salesforce Miami User Group Event - 1st Quarter 2024
Salesforce Miami User Group Event - 1st Quarter 2024
 
201610817 - edge part1
201610817 - edge part1201610817 - edge part1
201610817 - edge part1
 
20150722 - AGV
20150722 - AGV20150722 - AGV
20150722 - AGV
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-py
 
Linked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesLinked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond Ontologies
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
 
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability Adventure
 
VoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXVoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBX
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership Blueprint
 
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
 

Introduction to .net framework