SlideShare a Scribd company logo
1 of 24
By
U San Ko Ko
အစံုုသုပ္၊ ေုရာေုၾကာု္၊ ေု
Who am I?
U San Ko Ko
San Development Training Cen
09 2500 52301
အစံုုသုပ္
Raise your hand and answer
What is it?
Get the phone bill
Award to
Someone
Kotlin
Morden Programming Language
Developed by JetBrains
New native and official language for Android
Run on JVM likes Java
Inter-operable with Java
Unveiled in 2011 and now reach v1.2
Java, Scala, Groovy, C#, Gosu, JavaScript,
Pascal
Key Feature
Open source
Type Safe
Null Safe
Client,Server side language – Spring, JSF
Window application – TornadoFX frameworks
Iphone or Ios - CLion
Syntax
1. Main
fun main(args : Array<String>){}
2. Variables
var - mutable
val - imutable
3. Function
fun to create function
Unit and return value type
val a : Int = 1
var str : String
str = “hello”
fun sum(a : Int = 1) : Int = a.plus(2)
fun sum(a : Int = 1) = println(a.plus(2))
Syntax
4. Extension Function
fun Int.doubleIt() : Int = this * 2
5. OOP Language
class Main{}
6. No static , No new, No switch
There is no static, new and switch keyword
7. Subclassing
Subclassing with ( : )
Advance
ေုရာေုၾကာု္
Raise your hand and answer
What is it?
Get the phone bill
Award to
Someone
Swift
Morden Programming Language
Developed by Apple
New native and official language for ios,iphone
Not parallel scripting language
Inter-operable with Objective C
Unveiled in 2014 and now reach v4.0.3
Objective-C, Rust, Haskell, Ruby, Python, C#
Key Feature
Open source
Type Safe
Null Safe
Client, Server side language – Perfect, VSC
Window application – Swift for window tool
Android - Scade
Syntax
1. Main
@UiApplicationMain
2. Variables
var - mutable
let - imutable
3. Function
func to create function
Void and return value type
let a : Int = 1
var str : String
str = “hello”
func sum(a : Int) -> Int = return 0
func sum(a : Int) -> println(a+2)
Syntax
4. Multiple return values
func largestAndSmallest(intArray : [Int]) -> (Int,Int)
{
var largest = intArray[0]
var smallest = intArray[0]
for index in 1..<intArray.count {
if largest< intArray[index] {
largest = intArray[index]
}
if smallest > intArray[index] {
smallest = intArray[index]
}
}
return(largest,smallest)
}
var (m,n) = largestAndSmallest([1,5,9,2])
println(“Max is (m) and Min is (n)”)
Advance
ေုၾကာု္ခ်က္
Raise your hand and answer
What is it?
Get the phone bill
Award to
Someone
Dart
Morden Programming Language
Developed by Google
Cross-platform
Run on Dart VM
Unveiled in 2011 and now reach v1.24.2
C#, Erlang, JavaScript, Smalltalk, Strongtalk
Key Feature
Open source
Type Safe
Null Safe
Client,Server side language
Window application – Dart VM command-line
ios and Android from single codebase with
Flutter SDK
Syntax
1. Main
main(){}
2. Variables
int, String
var, num
3. Function
void and return value type
var = 1;
String str;
str = “hello”;
int sum(int a) => return a+2;
void sum(int a) => println(a+2) ;
Advance
Discussion
Thank you.

More Related Content

Similar to Kotlin , Android

The Evolution of Async-Programming on .NET Platform (.Net China, C#)
The Evolution of Async-Programming on .NET Platform (.Net China, C#)The Evolution of Async-Programming on .NET Platform (.Net China, C#)
The Evolution of Async-Programming on .NET Platform (.Net China, C#)jeffz
 
What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)Pavlo Baron
 
Does Java Have a Future After Version 8? (Belfast JUG April 2014)
Does Java Have a Future After Version 8? (Belfast JUG April 2014)Does Java Have a Future After Version 8? (Belfast JUG April 2014)
Does Java Have a Future After Version 8? (Belfast JUG April 2014)Garth Gilmour
 
Kotlin for Android Developers - 3
Kotlin for Android Developers - 3Kotlin for Android Developers - 3
Kotlin for Android Developers - 3Mohamed Nabil, MSc.
 
Making Swift even safer
Making Swift even saferMaking Swift even safer
Making Swift even saferDenis Fileev
 
The Evolution of Async-Programming (SD 2.0, JavaScript)
The Evolution of Async-Programming (SD 2.0, JavaScript)The Evolution of Async-Programming (SD 2.0, JavaScript)
The Evolution of Async-Programming (SD 2.0, JavaScript)jeffz
 
Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1Troy Miles
 
Kotlin, smarter development for the jvm
Kotlin, smarter development for the jvmKotlin, smarter development for the jvm
Kotlin, smarter development for the jvmArnaud Giuliani
 
The Swift Compiler and Standard Library
The Swift Compiler and Standard LibraryThe Swift Compiler and Standard Library
The Swift Compiler and Standard LibrarySantosh Rajan
 
Introduction to Functional Programming with Scala
Introduction to Functional Programming with ScalaIntroduction to Functional Programming with Scala
Introduction to Functional Programming with Scalapramode_ce
 
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017 Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017 Codemotion
 
Kotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsKotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsJigar Gosar
 
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNext
Microsoft 2014 Dev Plataform -  Roslyn -& ASP.NET vNextMicrosoft 2014 Dev Plataform -  Roslyn -& ASP.NET vNext
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNextRodolfo Finochietti
 
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup itPROIDEA
 
iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)David Truxall
 

Similar to Kotlin , Android (20)

The Evolution of Async-Programming on .NET Platform (.Net China, C#)
The Evolution of Async-Programming on .NET Platform (.Net China, C#)The Evolution of Async-Programming on .NET Platform (.Net China, C#)
The Evolution of Async-Programming on .NET Platform (.Net China, C#)
 
What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)What can be done with Java, but should better be done with Erlang (@pavlobaron)
What can be done with Java, but should better be done with Erlang (@pavlobaron)
 
Start with swift
Start with swiftStart with swift
Start with swift
 
Does Java Have a Future After Version 8? (Belfast JUG April 2014)
Does Java Have a Future After Version 8? (Belfast JUG April 2014)Does Java Have a Future After Version 8? (Belfast JUG April 2014)
Does Java Have a Future After Version 8? (Belfast JUG April 2014)
 
Kotlin for Android Developers - 3
Kotlin for Android Developers - 3Kotlin for Android Developers - 3
Kotlin for Android Developers - 3
 
Making Swift even safer
Making Swift even saferMaking Swift even safer
Making Swift even safer
 
The Evolution of Async-Programming (SD 2.0, JavaScript)
The Evolution of Async-Programming (SD 2.0, JavaScript)The Evolution of Async-Programming (SD 2.0, JavaScript)
The Evolution of Async-Programming (SD 2.0, JavaScript)
 
Javascript status 2016
Javascript status 2016Javascript status 2016
Javascript status 2016
 
Kotlin
KotlinKotlin
Kotlin
 
Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1Game Design and Development Workshop Day 1
Game Design and Development Workshop Day 1
 
Kotlin, smarter development for the jvm
Kotlin, smarter development for the jvmKotlin, smarter development for the jvm
Kotlin, smarter development for the jvm
 
The Swift Compiler and Standard Library
The Swift Compiler and Standard LibraryThe Swift Compiler and Standard Library
The Swift Compiler and Standard Library
 
Introduction to Functional Programming with Scala
Introduction to Functional Programming with ScalaIntroduction to Functional Programming with Scala
Introduction to Functional Programming with Scala
 
Cocoa heads 09112017
Cocoa heads 09112017Cocoa heads 09112017
Cocoa heads 09112017
 
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017 Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017
Davide Cerbo - Kotlin: forse è la volta buona - Codemotion Milan 2017
 
Kotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsKotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrains
 
Java
JavaJava
Java
 
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNext
Microsoft 2014 Dev Plataform -  Roslyn -& ASP.NET vNextMicrosoft 2014 Dev Plataform -  Roslyn -& ASP.NET vNext
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNext
 
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
 
iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)iOS for Android Developers (with Swift)
iOS for Android Developers (with Swift)
 

More from Ubuntu

Developer and marketing
Developer and marketingDeveloper and marketing
Developer and marketingUbuntu
 
Debate
DebateDebate
DebateUbuntu
 
Cyber bullying
Cyber bullyingCyber bullying
Cyber bullyingUbuntu
 
Content verification
Content verification Content verification
Content verification Ubuntu
 
Challenges for civil engineers
Challenges for civil engineersChallenges for civil engineers
Challenges for civil engineersUbuntu
 
Budgeting
Budgeting Budgeting
Budgeting Ubuntu
 
Learning & creativity
Learning & creativityLearning & creativity
Learning & creativityUbuntu
 
Basic mobile phone photography
Basic mobile phone photographyBasic mobile phone photography
Basic mobile phone photographyUbuntu
 
Digital Marketing
Digital MarketingDigital Marketing
Digital MarketingUbuntu
 
iot_cloud
iot_cloudiot_cloud
iot_cloudUbuntu
 
Renewable Energy & Environmental Sustainablity
Renewable Energy & Environmental SustainablityRenewable Energy & Environmental Sustainablity
Renewable Energy & Environmental SustainablityUbuntu
 
Freelancing as a carrer
Freelancing as a carrerFreelancing as a carrer
Freelancing as a carrerUbuntu
 
How Money Work
How Money WorkHow Money Work
How Money WorkUbuntu
 
Awesome redteaming
Awesome redteamingAwesome redteaming
Awesome redteamingUbuntu
 
Are you ready to start a startup
Are you ready to start a startup   Are you ready to start a startup
Are you ready to start a startup Ubuntu
 
barcamp ygn lcd story
barcamp ygn lcd storybarcamp ygn lcd story
barcamp ygn lcd storyUbuntu
 
2018 barcamp yangon blockchain 101
2018 barcamp yangon  blockchain 1012018 barcamp yangon  blockchain 101
2018 barcamp yangon blockchain 101Ubuntu
 
2018 crypto trading pyie phyo paing
2018 crypto trading   pyie phyo paing2018 crypto trading   pyie phyo paing
2018 crypto trading pyie phyo paingUbuntu
 
The 2014-myanmar-population-and-housing-census
The 2014-myanmar-population-and-housing-censusThe 2014-myanmar-population-and-housing-census
The 2014-myanmar-population-and-housing-censusUbuntu
 
Droneslide from BCY 2015
Droneslide from BCY 2015Droneslide from BCY 2015
Droneslide from BCY 2015Ubuntu
 

More from Ubuntu (20)

Developer and marketing
Developer and marketingDeveloper and marketing
Developer and marketing
 
Debate
DebateDebate
Debate
 
Cyber bullying
Cyber bullyingCyber bullying
Cyber bullying
 
Content verification
Content verification Content verification
Content verification
 
Challenges for civil engineers
Challenges for civil engineersChallenges for civil engineers
Challenges for civil engineers
 
Budgeting
Budgeting Budgeting
Budgeting
 
Learning & creativity
Learning & creativityLearning & creativity
Learning & creativity
 
Basic mobile phone photography
Basic mobile phone photographyBasic mobile phone photography
Basic mobile phone photography
 
Digital Marketing
Digital MarketingDigital Marketing
Digital Marketing
 
iot_cloud
iot_cloudiot_cloud
iot_cloud
 
Renewable Energy & Environmental Sustainablity
Renewable Energy & Environmental SustainablityRenewable Energy & Environmental Sustainablity
Renewable Energy & Environmental Sustainablity
 
Freelancing as a carrer
Freelancing as a carrerFreelancing as a carrer
Freelancing as a carrer
 
How Money Work
How Money WorkHow Money Work
How Money Work
 
Awesome redteaming
Awesome redteamingAwesome redteaming
Awesome redteaming
 
Are you ready to start a startup
Are you ready to start a startup   Are you ready to start a startup
Are you ready to start a startup
 
barcamp ygn lcd story
barcamp ygn lcd storybarcamp ygn lcd story
barcamp ygn lcd story
 
2018 barcamp yangon blockchain 101
2018 barcamp yangon  blockchain 1012018 barcamp yangon  blockchain 101
2018 barcamp yangon blockchain 101
 
2018 crypto trading pyie phyo paing
2018 crypto trading   pyie phyo paing2018 crypto trading   pyie phyo paing
2018 crypto trading pyie phyo paing
 
The 2014-myanmar-population-and-housing-census
The 2014-myanmar-population-and-housing-censusThe 2014-myanmar-population-and-housing-census
The 2014-myanmar-population-and-housing-census
 
Droneslide from BCY 2015
Droneslide from BCY 2015Droneslide from BCY 2015
Droneslide from BCY 2015
 

Recently uploaded

The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Intelisync
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 

Recently uploaded (20)

The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 

Kotlin , Android