SlideShare a Scribd company logo
1 of 48
DATA TYPES
Masters Academy, 2018
- Types
- Structures
Types
- Number
- Integer
- Float
- Number
- String
- Char
- Character varying
- Text
- Boolean
Types integer
Tiny integer tinyint, byte 0..255 8 bit
Small Integer smallint -32768
+32767
16 bit
integer smallint -2147483648
+2147483647
32 bit
Big integer bigint -9223372036854775808
+9223372036854775807
64 bit
Types float
Float float 1.175494351 E -38
3.402823466 E +38
6 - 7 32 bit
Double double 2.2250738585072014 E -308
1.7976931348623158 E +308
15 - 16 64 bit
Types string
Char a, b, 1, 3, -
, +, ], ...
Varchar abc, bcd,
123, ...
Text abc, bcd, 123, ...
} 4 Gb
Types Boolean
TRUE, FALSE
0 1
YES NO
PRESENT ABSENT
}1 Bit
Structures
- Variable
- Pointer
- Array
- List
- Tree
- Graph
- Hash
- Set
- JSON
Structures Variable
a = 1
a1 = 5
AA = ‘ab’
Structures Variable
- Starts with a-zA-Z
- Contains only a-zA-Z0-9_
- No spaces or special characters
- Cannot be same as keyword
Structures Pointer
pointer
2045
variable
123.5
2045 1246
Structures Array
[1, 2, 120, 150, 11, 13]
[‘ab’, ‘cd’, ‘ef’]
[1, ‘a’, 2, ‘bca’, 123, ‘z’]
Structures Array
1 ab 12 31 cde 131 frt
0 1 2 3 4 5 6
Structures Array
1 ab 12 31 cde 131 frt
-7 -6 -5 -4 -3 -2 -1
Structures Array
arr = [1, ‘ab’, 12, 31, ‘cde’, 131, ‘frt’]
arr[0] => 1
arr[2] => ‘ab’
arr[-1] => ‘frt’
arr[-3] => ‘cde’
Structures Array String
str = ‘we are masters’
W E A R E M A S T E R S
Structures Array String
str = ‘we are masters’
W E A R E M A S T E R S
W E A R E M A S T E R S
Structures Array String
str1 = ‘we’ str2 = ‘are’ str3 = ‘masters’
str1 + str2 + str3 = ‘wearemasters’
str1 - str2 = ‘w’
str1 & str2 = ‘e’
Structures Array
str1 = [‘w’, ’e’] str2 = [‘a’, ’r’, ’e’] str3 = [‘m’,’a’,’s’,’t’,’e’,’r’,’s’]
str1 + str2 + str3 = [‘w’,’e’,’a’,’r’,’e’,’m’,’a’,’s’,’t’,’e’,’r’,’s’]
str1 - str2 = [‘w’]
str1 & str2 = [‘e’]
72 5
Structures List
pointer
pointer
head tail
Structures Tree
Structures Tree
1
2
4 5
3
6 7
Structures Tree
1
2
4 5
3
6 7
true false
Structures Tree
1
2
4 5
3
6 7
true false
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
Structures Graph
1
2
4 5
3
6 7
1 10
3
4
Structures Hash (Associated Array)
Structures Hash
h = { ‘a’ => 1, ‘b’ => 2 }
h = { ‘a’: 1, ‘b’: 2 }
h = { a: 1, b: 2 }
h[‘a’] => 1
h[‘a’] => 1
h[‘a’] => 1 h[:a] => 1
Structures Hash
h = { a: 1, b: 2 }
value = hash(key)
key value
1 = hash(‘a’)
2 = hash(‘b’)
Structures Hash
h = { a: 1, b: 2 }
h = { a: ‘1’, b: 2 }
h = { a: ‘1’, b: [2] }
h = { a: ‘1’, b: { c: 2 } }
Structures Set
set = { 1, 2, 3, 4, 5, 6, 6, 1 }
set = { 1, ‘2’, 3, ‘4’, [5], 6, 6, 1 }
set = { {1} ,{’2’} ,{3}, {‘4’}, { [5] }, { 6, 6, 1 } }
set = { {1} ,’2’ ,{3}, {‘4’}, [5], { 6, 6, 1 } }
Structures Set
set1 = { 1, 2, 3 } set2 = { 2, 3,
4, 5 }
set1  set2 => { 1 }
set1 | set2 => { 1, 2, 3, 4, 5 }
set1 △ set2 => { 1, 4, 5 }
Structures JSON
{
“a”: 1,
“b”: “2”,
“c”: [3],
“d”: [“4”],
“e”: { “f”: 5, “g”: [“6”] }
}
Structures JSON
{
“a”: 1,
“b”: “2”,
“c”: [3],
“d”: [“4”],
“e”: { “f”: 5, “g”: [“6”] }
}
“{“a”:1,“b”:“2”,“c”:[3],“d”:[“4”],“e”:{“f”:5,“g”:[“6”]}}”
Typing
integer →
float
float →
integer
float →
string
string →
Typing
- Dynamic
- Static
- Strong
- Weak
Typing
10 000 users
Typing
10 000 users
longest name ~ up to 50 symbols
Typing
10 000 users
longest name ~ up to 50 symbols
longest uk name ~ up to 15 symbols
Typing
one name = 50 symbols = 50 bytes
one name = 50 symbols = 52 bytes
x 10 000 users = 52 000 bytes ~= 51 kB
Typing
one name = 15 symbols = 15 bytes
one name = 15 symbols = 16 bytes
x 10 000 users = 16 000 bytes ~= 15 kB
Typing
Q & A

More Related Content

What's hot

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1stsesejun
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd Rsesejun
 
Higher Order Deriavatives
Higher Order DeriavativesHigher Order Deriavatives
Higher Order DeriavativesPadme Amidala
 
Combining Like Terms
Combining Like TermsCombining Like Terms
Combining Like TermsBitsy Griffin
 
Algebra 1 Unit 2.7 Distributive Property
Algebra 1 Unit 2.7 Distributive PropertyAlgebra 1 Unit 2.7 Distributive Property
Algebra 1 Unit 2.7 Distributive PropertyJaqueline Vallejo
 
3 na 2.1 factorisation by grouping part 1
3 na 2.1 factorisation by grouping   part 13 na 2.1 factorisation by grouping   part 1
3 na 2.1 factorisation by grouping part 1zemartyr
 
ゲーム理論BASIC 演習2 -コアを求める-
ゲーム理論BASIC 演習2 -コアを求める-ゲーム理論BASIC 演習2 -コアを求める-
ゲーム理論BASIC 演習2 -コアを求める-ssusere0a682
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ssusere0a682
 
Комплекс тоо цуврал хичээл-2
Комплекс тоо цуврал хичээл-2Комплекс тоо цуврал хичээл-2
Комплекс тоо цуврал хичээл-2Март
 
Algebra 1 combining like terms
Algebra 1 combining like termsAlgebra 1 combining like terms
Algebra 1 combining like termsMark Ryder
 
คณิตศาสตร์ เพิ่มเติม 9
คณิตศาสตร์ เพิ่มเติม 9คณิตศาสตร์ เพิ่มเติม 9
คณิตศาสตร์ เพิ่มเติม 9saman1
 
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-ssusere0a682
 
ゲーム理論BASIC 演習30 -左右の靴ゲーム-
ゲーム理論BASIC 演習30 -左右の靴ゲーム-ゲーム理論BASIC 演習30 -左右の靴ゲーム-
ゲーム理論BASIC 演習30 -左右の靴ゲーム-ssusere0a682
 

What's hot (19)

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1st
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd R
 
X std mathematics - Relations and functions (Ex 1.2)
X std mathematics - Relations and functions  (Ex 1.2)X std mathematics - Relations and functions  (Ex 1.2)
X std mathematics - Relations and functions (Ex 1.2)
 
Higher Order Deriavatives
Higher Order DeriavativesHigher Order Deriavatives
Higher Order Deriavatives
 
Combining Like Terms
Combining Like TermsCombining Like Terms
Combining Like Terms
 
Algebra 1 Unit 2.7 Distributive Property
Algebra 1 Unit 2.7 Distributive PropertyAlgebra 1 Unit 2.7 Distributive Property
Algebra 1 Unit 2.7 Distributive Property
 
Mohr circle
Mohr circleMohr circle
Mohr circle
 
3 na 2.1 factorisation by grouping part 1
3 na 2.1 factorisation by grouping   part 13 na 2.1 factorisation by grouping   part 1
3 na 2.1 factorisation by grouping part 1
 
Polynomials
PolynomialsPolynomials
Polynomials
 
Taller 1 parcial 3
Taller 1 parcial 3Taller 1 parcial 3
Taller 1 parcial 3
 
ゲーム理論BASIC 演習2 -コアを求める-
ゲーム理論BASIC 演習2 -コアを求める-ゲーム理論BASIC 演習2 -コアを求める-
ゲーム理論BASIC 演習2 -コアを求める-
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-
 
Комплекс тоо цуврал хичээл-2
Комплекс тоо цуврал хичээл-2Комплекс тоо цуврал хичээл-2
Комплекс тоо цуврал хичээл-2
 
Algebra 1 combining like terms
Algebra 1 combining like termsAlgebra 1 combining like terms
Algebra 1 combining like terms
 
Sec
SecSec
Sec
 
คณิตศาสตร์ เพิ่มเติม 9
คณิตศาสตร์ เพิ่มเติม 9คณิตศาสตร์ เพิ่มเติม 9
คณิตศาสตร์ เพิ่มเติม 9
 
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-
ゲーム理論BASIC 演習1 -3人ゲームのナッシュ均衡+α-
 
ゲーム理論BASIC 演習30 -左右の靴ゲーム-
ゲーム理論BASIC 演習30 -左右の靴ゲーム-ゲーム理論BASIC 演習30 -左右の靴ゲーム-
ゲーム理論BASIC 演習30 -左右の靴ゲーム-
 
Elements of a sequence
Elements of a sequenceElements of a sequence
Elements of a sequence
 

Similar to Data types

Chapter 3 Built-in Data Structures, Functions, and Files .pptx
Chapter 3 Built-in Data Structures, Functions, and Files .pptxChapter 3 Built-in Data Structures, Functions, and Files .pptx
Chapter 3 Built-in Data Structures, Functions, and Files .pptxSovannDoeur
 
C (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptxC (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptxrohinitalekar1
 
Useful javascript
Useful javascriptUseful javascript
Useful javascriptLei Kang
 
11 1. multi-dimensional array eng
11 1. multi-dimensional array eng11 1. multi-dimensional array eng
11 1. multi-dimensional array eng웅식 전
 
Numeros reales, inecuaciones y desigualdades
Numeros reales, inecuaciones y desigualdadesNumeros reales, inecuaciones y desigualdades
Numeros reales, inecuaciones y desigualdadesDanielaAngulo25
 
SP-First-Lecture.ppt
SP-First-Lecture.pptSP-First-Lecture.ppt
SP-First-Lecture.pptFareedIhsas
 
Purely functional data structures
Purely functional data structuresPurely functional data structures
Purely functional data structuresTomasz Kaczmarzyk
 
SRS presentation - Stanley Depth
SRS presentation - Stanley DepthSRS presentation - Stanley Depth
SRS presentation - Stanley DepthAJ Joshi
 
Correct sorting with Frama-C
Correct sorting with Frama-CCorrect sorting with Frama-C
Correct sorting with Frama-CUlisses Costa
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
Datastructure tree
Datastructure treeDatastructure tree
Datastructure treerantd
 

Similar to Data types (20)

Chapter 3 Built-in Data Structures, Functions, and Files .pptx
Chapter 3 Built-in Data Structures, Functions, and Files .pptxChapter 3 Built-in Data Structures, Functions, and Files .pptx
Chapter 3 Built-in Data Structures, Functions, and Files .pptx
 
Sets
SetsSets
Sets
 
Estructura Discreta I
Estructura Discreta IEstructura Discreta I
Estructura Discreta I
 
Lecture 10.pdf
Lecture 10.pdfLecture 10.pdf
Lecture 10.pdf
 
C (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptxC (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptx
 
Useful javascript
Useful javascriptUseful javascript
Useful javascript
 
Ken20150417
Ken20150417Ken20150417
Ken20150417
 
11 1. multi-dimensional array eng
11 1. multi-dimensional array eng11 1. multi-dimensional array eng
11 1. multi-dimensional array eng
 
Numeros reales, inecuaciones y desigualdades
Numeros reales, inecuaciones y desigualdadesNumeros reales, inecuaciones y desigualdades
Numeros reales, inecuaciones y desigualdades
 
SP-First-Lecture.ppt
SP-First-Lecture.pptSP-First-Lecture.ppt
SP-First-Lecture.ppt
 
Slides ads ia
Slides ads iaSlides ads ia
Slides ads ia
 
C Language Lecture 10
C Language Lecture 10C Language Lecture 10
C Language Lecture 10
 
Purely functional data structures
Purely functional data structuresPurely functional data structures
Purely functional data structures
 
SRS presentation - Stanley Depth
SRS presentation - Stanley DepthSRS presentation - Stanley Depth
SRS presentation - Stanley Depth
 
Correct sorting with Frama-C
Correct sorting with Frama-CCorrect sorting with Frama-C
Correct sorting with Frama-C
 
IA-advanced-R
IA-advanced-RIA-advanced-R
IA-advanced-R
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
Array
ArrayArray
Array
 
Datastructure tree
Datastructure treeDatastructure tree
Datastructure tree
 

More from Masters Academy (20)

Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
API
APIAPI
API
 
Basic Net technologies
Basic Net technologiesBasic Net technologies
Basic Net technologies
 
Databases
DatabasesDatabases
Databases
 
Environment
EnvironmentEnvironment
Environment
 
Frontend
FrontendFrontend
Frontend
 
Development Methodologies
Development MethodologiesDevelopment Methodologies
Development Methodologies
 
Object-Oriented Programming
Object-Oriented ProgrammingObject-Oriented Programming
Object-Oriented Programming
 
Testing
TestingTesting
Testing
 
Processing
ProcessingProcessing
Processing
 
Serialization
SerializationSerialization
Serialization
 
Serverless
ServerlessServerless
Serverless
 
How to be up todate
How to be up todateHow to be up todate
How to be up todate
 
Call stack, event loop and async programming
Call stack, event loop and async programmingCall stack, event loop and async programming
Call stack, event loop and async programming
 
Html, css, js
Html, css, jsHtml, css, js
Html, css, js
 
Server architecture
Server architectureServer architecture
Server architecture
 
Serialization
SerializationSerialization
Serialization
 
Net Technologies
Net TechnologiesNet Technologies
Net Technologies
 
Net Technologies
Net TechnologiesNet Technologies
Net Technologies
 
Masters Academy workshop BA User stories: be simple, be useful
Masters Academy workshop BA User stories: be simple, be usefulMasters Academy workshop BA User stories: be simple, be useful
Masters Academy workshop BA User stories: be simple, be useful
 

Recently uploaded

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 

Recently uploaded (20)

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 

Data types