SlideShare a Scribd company logo
Maha EL-basuony Dot Net Framework-C Sharp
    Agenda
Before Dot Net Framework  -Program              Set of commands in logical order -LLL(Low Level Language)            collection of zeros & ones
-Your applications written by High Level Language (HLL) But Your machine (Computer , Mobile , Projector ……..etc) Understand only Low Level Language (LLL) So Compiler Used
Java Your Application    “VB6”  Compiler Compiler JVM
DOT NET Framework
Java VB.net P.net C#.net MSIL CLR Compiler JVM
.NET Framework Versions
C Sharp
-Writing a C# Program -Variables & Expressions -Flow Control -More About Variables -Functions -Debugging & Error Handling
Writing a C# Program Console.Write(“Hello World  ”) ;
Console properties
Variables & Expressions Declaring Variables <Type> <VarName>;             <Type> <VarName>=Value;      <Type> <Var1Name>,<Var2Name>…..;
Variables types Integer Variables
Float Variables String Variables
The basic variable naming rules are as follows: 1-First character of a variable name must be either (a  letter, an underscore character ( .( _ ),  at  symbol (  @ )) 2-Subsequent characters may be letters, underscore characters, or numbers.  3-keywords that have a specialized meaning to the C# compiler, such as using ,namespace  keywords
For example, the following variable names are fine:     myBigVar     VAR1        _test  These are not, however:    99BottlesOfBeer   namespace   It’s-All-Over
Accept Values From User
Expressions Mathematical Operators
Assignment Operators
Examples
 Operator Precedence
Flow Control  Boolean comparisons
 Some other Boolean operators
 The   go to  statement is used as follows:  goto  <  label Name  >   Labels are defined as follows:   <  label Name  >
-If statement  -Ternary  operator    -Switch  statement
If statement if (expression) {   do something } If-Else if (expression)    statement1   else     Statement2
Ternary  operator < expression >  ?  <   resultIfTrue  >  :  <   resultIfFalse  >
Switch  statement switch (expression)  {    case constant-expression:           //your code here              Break;   default:        //your code here            Break; }
-For statement  -While Statement -do-while  statement
For statement for (initializers; expression; iterators)          statement
While Statement while (expression) statement
do-while  statement do statement while (expression);
-Implicit conversion -Explicit conversion Type Conversion -Implicit conversion
-Explicit conversion -Casting -Convert
-Enumerations - Structs -Arrays
Enumerations enum   type Name  {      value1 ,      value2 ,      value3 ,    ...      valueN  }  enum   typeName : underlyingType  {      value1       value2       value3     ...      valueN  }
enum   typeName  :   underlyingType  {      value1  =   actualVal1       value2  =   actualVal2       value3  =   actualVal3     ...      valueN  =   actualValN  }  enum   typeName  :   underlyingType  {      value1  =   actualVal1       value2  =   value1       value3     ...      valueN  =   actualValN  }
Structs struct  <  typeName  >  {     <  memberDeclarations  >  }
 -Dot Net Framework -Writing a C# Program -Variables & Expressions -Flow Control -More About Variables
Q & A Thanks

More Related Content

What's hot

Xtext Webinar
Xtext WebinarXtext Webinar
Xtext Webinar
Heiko Behrens
 
Looping and switch cases
Looping and switch casesLooping and switch cases
Looping and switch cases
MeoRamos
 
Introduction to functional programming with java 8
Introduction to functional programming with java 8Introduction to functional programming with java 8
Introduction to functional programming with java 8
JavaBrahman
 
Can't Dance The Lambda
Can't Dance The LambdaCan't Dance The Lambda
Can't Dance The Lambda
Togakangaroo
 
Web development basics (Part-4)
Web development basics (Part-4)Web development basics (Part-4)
Web development basics (Part-4)
Rajat Pratap Singh
 
JavaScript operators
JavaScript operatorsJavaScript operators
JavaScript operators
Vivek Kumar
 
PL/SQL Part 3
PL/SQL Part 3PL/SQL Part 3
PL/SQL Part 3
Gurpreet singh
 
JavaScript Basics
JavaScript BasicsJavaScript Basics
JavaScript Basics
Bhanuka Uyanage
 
Introduction to Functional programming
Introduction to Functional programmingIntroduction to Functional programming
Introduction to Functional programming
Ny Fanilo Andrianjafy, B.Eng.
 
Javascripts hidden treasures BY - https://geekyants.com/
Javascripts hidden treasures            BY  -  https://geekyants.com/Javascripts hidden treasures            BY  -  https://geekyants.com/
Javascripts hidden treasures BY - https://geekyants.com/
Geekyants
 
Unit 2.5
Unit 2.5Unit 2.5
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
LivePerson
 
PL/SQL Part 2
PL/SQL Part 2PL/SQL Part 2
PL/SQL Part 2
Gurpreet singh
 
Introduction to php 5
Introduction to php   5Introduction to php   5
Introduction to php 5
pctechnology
 
Type conversion in c
Type conversion in cType conversion in c
Type conversion in c
SHIKHA GAUTAM
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
Talha Ocakçı
 
Introduction to Erlang Programming Language
Introduction to Erlang Programming LanguageIntroduction to Erlang Programming Language
Introduction to Erlang Programming Language
Yasas Gunarathne
 
Scope of variables
Scope of variablesScope of variables
Java script basic
Java script basicJava script basic
Java script basic
Ravi Bhadauria
 
Functional programming
Functional programmingFunctional programming
Functional programming
ijcd
 

What's hot (20)

Xtext Webinar
Xtext WebinarXtext Webinar
Xtext Webinar
 
Looping and switch cases
Looping and switch casesLooping and switch cases
Looping and switch cases
 
Introduction to functional programming with java 8
Introduction to functional programming with java 8Introduction to functional programming with java 8
Introduction to functional programming with java 8
 
Can't Dance The Lambda
Can't Dance The LambdaCan't Dance The Lambda
Can't Dance The Lambda
 
Web development basics (Part-4)
Web development basics (Part-4)Web development basics (Part-4)
Web development basics (Part-4)
 
JavaScript operators
JavaScript operatorsJavaScript operators
JavaScript operators
 
PL/SQL Part 3
PL/SQL Part 3PL/SQL Part 3
PL/SQL Part 3
 
JavaScript Basics
JavaScript BasicsJavaScript Basics
JavaScript Basics
 
Introduction to Functional programming
Introduction to Functional programmingIntroduction to Functional programming
Introduction to Functional programming
 
Javascripts hidden treasures BY - https://geekyants.com/
Javascripts hidden treasures            BY  -  https://geekyants.com/Javascripts hidden treasures            BY  -  https://geekyants.com/
Javascripts hidden treasures BY - https://geekyants.com/
 
Unit 2.5
Unit 2.5Unit 2.5
Unit 2.5
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
 
PL/SQL Part 2
PL/SQL Part 2PL/SQL Part 2
PL/SQL Part 2
 
Introduction to php 5
Introduction to php   5Introduction to php   5
Introduction to php 5
 
Type conversion in c
Type conversion in cType conversion in c
Type conversion in c
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
 
Introduction to Erlang Programming Language
Introduction to Erlang Programming LanguageIntroduction to Erlang Programming Language
Introduction to Erlang Programming Language
 
Scope of variables
Scope of variablesScope of variables
Scope of variables
 
Java script basic
Java script basicJava script basic
Java script basic
 
Functional programming
Functional programmingFunctional programming
Functional programming
 

Viewers also liked

Keren Hayesod (AUI) - Report attività nel 2010
Keren Hayesod (AUI) - Report attività nel 2010Keren Hayesod (AUI) - Report attività nel 2010
Keren Hayesod (AUI) - Report attività nel 2010
s1r
 
Presentation1
Presentation1Presentation1
Presentation1
amanriquez12
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
DevMix
 
Making a presentation
Making a presentationMaking a presentation
Making a presentation
DevMix
 
New in html5
New in html5New in html5
New in html5
DevMix
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
DevMix
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
DevMix
 
Presentation 1Q14
Presentation 1Q14Presentation 1Q14
Presentation 1Q14
Juliana Arutin
 
Praca semestralna poetyka-poswiatowska
Praca semestralna poetyka-poswiatowskaPraca semestralna poetyka-poswiatowska
Praca semestralna poetyka-poswiatowskaTomasz Nowicki
 

Viewers also liked (9)

Keren Hayesod (AUI) - Report attività nel 2010
Keren Hayesod (AUI) - Report attività nel 2010Keren Hayesod (AUI) - Report attività nel 2010
Keren Hayesod (AUI) - Report attività nel 2010
 
Presentation1
Presentation1Presentation1
Presentation1
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
 
Making a presentation
Making a presentationMaking a presentation
Making a presentation
 
New in html5
New in html5New in html5
New in html5
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
 
Presentation 1Q14
Presentation 1Q14Presentation 1Q14
Presentation 1Q14
 
Praca semestralna poetyka-poswiatowska
Praca semestralna poetyka-poswiatowskaPraca semestralna poetyka-poswiatowska
Praca semestralna poetyka-poswiatowska
 

Similar to C sharp fundamentals Part I

Introduction to javascript.ppt
Introduction to javascript.pptIntroduction to javascript.ppt
Introduction to javascript.ppt
BArulmozhi
 
JAVASCRIPT - LinkedIn
JAVASCRIPT - LinkedInJAVASCRIPT - LinkedIn
JAVASCRIPT - LinkedIn
Gino Louie Peña, ITIL®,MOS®
 
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
DivyaKS12
 
Javascript basics
Javascript basicsJavascript basics
Javascript basics
shreesenthil
 
Internet Technology and its Applications
Internet Technology and its ApplicationsInternet Technology and its Applications
Internet Technology and its Applications
amichoksi
 
Chapter 01 Introduction to Java by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B KuteChapter 01 Introduction to Java by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B Kute
Tushar B Kute
 
Java script final presentation
Java script final presentationJava script final presentation
Java script final presentation
Adhoura Academy
 
PHP Basics
PHP BasicsPHP Basics
PHP Basics
Muthuganesh S
 
IT2255 Web Essentials - Unit III Client-Side Processing and Scripting
IT2255 Web Essentials - Unit III Client-Side Processing and ScriptingIT2255 Web Essentials - Unit III Client-Side Processing and Scripting
IT2255 Web Essentials - Unit III Client-Side Processing and Scripting
pkaviya
 
First Look at Pointers
First Look at PointersFirst Look at Pointers
First Look at Pointers
emartinez.romero
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
Ashita Agrawal
 
java in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariyajava in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariya
viratandodariya
 
JAVA in Artificial intelligent
JAVA in Artificial intelligentJAVA in Artificial intelligent
JAVA in Artificial intelligent
Virat Andodariya
 
Getting started in c++
Getting started in c++Getting started in c++
Getting started in c++
Neeru Mittal
 
QTP VB Script Trainings
QTP VB Script TrainingsQTP VB Script Trainings
QTP VB Script Trainings
Ali Imran
 
DIWE - Programming with JavaScript
DIWE - Programming with JavaScriptDIWE - Programming with JavaScript
DIWE - Programming with JavaScript
Rasan Samarasinghe
 
Php Loop
Php LoopPhp Loop
Php Loop
lotlot
 
Java chapter 2
Java chapter 2Java chapter 2
Java chapter 2
Abdii Rashid
 
Introduction to php basics
Introduction to php   basicsIntroduction to php   basics

Similar to C sharp fundamentals Part I (20)

Introduction to javascript.ppt
Introduction to javascript.pptIntroduction to javascript.ppt
Introduction to javascript.ppt
 
JAVASCRIPT - LinkedIn
JAVASCRIPT - LinkedInJAVASCRIPT - LinkedIn
JAVASCRIPT - LinkedIn
 
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
 
Javascript basics
Javascript basicsJavascript basics
Javascript basics
 
Internet Technology and its Applications
Internet Technology and its ApplicationsInternet Technology and its Applications
Internet Technology and its Applications
 
Chapter 01 Introduction to Java by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B KuteChapter 01 Introduction to Java by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B Kute
 
Java script final presentation
Java script final presentationJava script final presentation
Java script final presentation
 
PHP Basics
PHP BasicsPHP Basics
PHP Basics
 
IT2255 Web Essentials - Unit III Client-Side Processing and Scripting
IT2255 Web Essentials - Unit III Client-Side Processing and ScriptingIT2255 Web Essentials - Unit III Client-Side Processing and Scripting
IT2255 Web Essentials - Unit III Client-Side Processing and Scripting
 
First Look at Pointers
First Look at PointersFirst Look at Pointers
First Look at Pointers
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 
java in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariyajava in Aartificial intelligent by virat andodariya
java in Aartificial intelligent by virat andodariya
 
JAVA in Artificial intelligent
JAVA in Artificial intelligentJAVA in Artificial intelligent
JAVA in Artificial intelligent
 
Getting started in c++
Getting started in c++Getting started in c++
Getting started in c++
 
QTP VB Script Trainings
QTP VB Script TrainingsQTP VB Script Trainings
QTP VB Script Trainings
 
DIWE - Programming with JavaScript
DIWE - Programming with JavaScriptDIWE - Programming with JavaScript
DIWE - Programming with JavaScript
 
Php Loop
Php LoopPhp Loop
Php Loop
 
Java chapter 2
Java chapter 2Java chapter 2
Java chapter 2
 
Introduction to php basics
Introduction to php   basicsIntroduction to php   basics
Introduction to php basics
 

More from DevMix

Devmix algorithm
Devmix algorithmDevmix algorithm
Devmix algorithm
DevMix
 
Select your career
Select your careerSelect your career
Select your career
DevMix
 
Devmix algorithm
Devmix algorithmDevmix algorithm
Devmix algorithm
DevMix
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
DevMix
 
Algorithms
AlgorithmsAlgorithms
Algorithms
DevMix
 
Intro To DataBase
Intro To DataBaseIntro To DataBase
Intro To DataBase
DevMix
 
Intro to windows app
Intro to windows appIntro to windows app
Intro to windows app
DevMix
 
OOP in C#
OOP in C#OOP in C#
OOP in C#
DevMix
 
Logos samples
Logos samplesLogos samples
Logos samples
DevMix
 
Python
PythonPython
Python
DevMix
 

More from DevMix (10)

Devmix algorithm
Devmix algorithmDevmix algorithm
Devmix algorithm
 
Select your career
Select your careerSelect your career
Select your career
 
Devmix algorithm
Devmix algorithmDevmix algorithm
Devmix algorithm
 
Framework prototype
Framework prototypeFramework prototype
Framework prototype
 
Algorithms
AlgorithmsAlgorithms
Algorithms
 
Intro To DataBase
Intro To DataBaseIntro To DataBase
Intro To DataBase
 
Intro to windows app
Intro to windows appIntro to windows app
Intro to windows app
 
OOP in C#
OOP in C#OOP in C#
OOP in C#
 
Logos samples
Logos samplesLogos samples
Logos samples
 
Python
PythonPython
Python
 

Recently uploaded

Things to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUUThings to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUU
FODUU
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 

Recently uploaded (20)

Things to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUUThings to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUU
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 

C sharp fundamentals Part I