SlideShare uma empresa Scribd logo
1 de 10
Mathematical functionsMathematical functions
ABS
Returns the absolute value of a number.
Syntax
ABS(Number)
Number is the value whose absolute value is to be calculated. The absolute
value of a number is its value without the +/- sign.
Example
=ABS(-56) returns 56.
=ABS(12) returns 12.
=ABS(0) returns 0.
INT
Rounds a number down to the nearest integer.
Syntax
INT(Number)
Returns Number rounded down to the nearest integer.
Example
=INT(5.7) returns 5.
AVERAGE
Returns the average of the arguments.
Syntax
AVERAGE(Number1; Number2; ...Number30)
Number1; Number2;...Number 0 are numerical values or ranges.
Example
=AVERAGE(A1:A50)
MIN
Returns the minimum value in a list of
arguments.
Syntax
MIN(Num1; Num2; ...Num30)
Num1; Num2;...Num30 are numerical
values or ranges.
Example
=MIN(A1:A10) returns the smallest value
in the list.
MAX
Returns the maximum value in a list of
arguments.
Syntax
MAX(Num1; Num2; ...Num30)
Num1; Num2;...Num30 are numerical
values or ranges.
Example
=MAX(A1:A10) returns the largest value in
the list.
SUM
1. Adds all the specified numbers.
2. Adds all the numbers in a range of cells.
Syntax
1. SUM(Number1; Number2; ...)
2. SUM(RANGE)
Number1; Number2; ... are 1 to 30 arguments whose sum is to be calculated.
Example
=SUM(A1;A3;B5) calculates the sum of the three cells.
=SUM(A1:E10) calculates the sum of all cells in the A1 to E10 cell range.
PRODUCT
Multiplies all the numbers given as arguments and returns the product.
Syntax
PRODUCT(Number1; Number2; ... Number30)
Number1; Number2; ... Number30 are 1 to 30 arguments whose product is to be
calculated.
PRODUCT returns Number1 * Number2 * Number_3 * ... Number_N
Example
=PRODUCT(2;3;4) returns 24.
ROUND
Returns a number rounded to a certain number of decimal places.
Syntax
ROUND(Number; Count)
Returns Number rounded to Count decimal places. If Count is omitted or zero, the
function rounds to the nearest integer.
Example
=ROUND(2.348;2) returns 2.35
=ROUND(2.348;0) returns 2.
=ROUND(2.5) returns 3.
TRUNC
Truncates a number by removing decimal places.
Syntax
TRUNC(Number; Count)
Returns Number with at most Count decimal places. Excess decimal places are simply
removed, irrespective of sign.
Example
=TRUNC(1.239;2) returns 1.23. The 9 is omitted.
=TRUNC(-1.234999;3) returns -1.234. All the 9s are omitted.
POWER
Returns the result of a number raised to a power.
Syntax
POWER(Base; Power) or Base ^ Power or exponent
Returns Base raised to the power of Power.
Example
=POWER(4;3) returns 64, which is 4 to the power of 3.
=4^3 also returns 4 to the power of 3.
SQRT
Returns the positive square root of a number.
Syntax
SQRT(Number)
Returns the positive square root of Number.
Number must be positive.
Example
=SQRT(16) returns 4.
=SQRT(-16) returns an invalid argument error.
MOD
Returns the remainder after a number is divided by a divisor.
Syntax
MOD(Dividend; Divisor)
For integer arguments this function returns Dividend modulo Divisor, that is the
remainder when Dividend is divided by Divisor.
Example
=MOD(22;3) returns 1, the remainder when 22 is divided by 3.
QUOTIENT
Returns the integer result of a division operation.
Syntax
QUOTIENT(Numerator; Denominator)
Returns the integer part of Numerator divided by Denominator.
Example
=QUOTIENT(11;3) returns 3. The remainder of 2 is omitted.
Logical FunctionsLogical Functions
AND
Returns TRUE if all arguments are TRUE. If one of the elements is FALSE, this
function returns the FALSE value. The arguments are logical expressions themselves
(TRUE, 1<5, 2+3=7, B8<10) that return logical values.
Syntax
AND(LogicalValue1; LogicalValue2 ...LogicalValue30)
LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked.
Example
=AND(12<13;14>12;7<6) returns FALSE.
OR
Returns TRUE if at least one argument is TRUE. This function returns the value
FALSE, if all the arguments have the logical value FALSE. The arguments are
logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical
values.
Syntax
OR(LogicalValue1; LogicalValue2 ...LogicalValue30)
LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked.
Example
=OR(12<11;13>22;45=45) returns TRUE.
NOT
Complements (inverts) a logical value.
Syntax
NOT(LogicalValue)
LogicalValue is any value to be inversed or complemented.
Example
=NOT(A). If A=TRUE then NOT(A) will evaluate FALSE.
=NOT(7<5). Since 7<5=FALSE so NOT(7<5) will evaluate TRUE.
IF
Syntax:
IF(test; value1; value2) where:
 is or refers to a logical value or expression that returns a logical value 
(TRUE or FALSE).value1 is the value that is returned by the function 
if test yields TRUE.value2 is the value that is returned by the function 
if test yields FALSE.
If value2 is omitted it is assumed to be FALSE; if value1 is also omitted it is assumed 
to be TRUE.
Example:
IF(A1>5; 100; "too small")
returns the number 100 if A1 is greater than 5, and the text "too small" otherwise.

Mais conteúdo relacionado

Mais procurados

Function and Its Types.
Function and Its Types.Function and Its Types.
Function and Its Types.Awais Bakshy
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Minhas Kamal
 
Math vocabulary A-Z
Math vocabulary A-ZMath vocabulary A-Z
Math vocabulary A-Zfgeasland
 
Bisection method in maths 4
Bisection method in maths 4Bisection method in maths 4
Bisection method in maths 4Vaidik Trivedi
 
Bisection Method
Bisection Method Bisection Method
Bisection Method Pritam Shil
 
Rational numbers ppt
Rational numbers pptRational numbers ppt
Rational numbers pptMathukutty1
 
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAScientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAAhmed Gamal Abdel Gawad
 
16 logical programming
16 logical programming16 logical programming
16 logical programmingjigeno
 
Real Numbers
Real NumbersReal Numbers
Real Numbersdeathful
 
Finding All Real Zeros Of A Polynomial With Examples
Finding All Real Zeros Of A Polynomial With ExamplesFinding All Real Zeros Of A Polynomial With Examples
Finding All Real Zeros Of A Polynomial With ExamplesKristen T
 
Presentation on the real number system
Presentation on the real number systemPresentation on the real number system
Presentation on the real number systemAnthony Abidakun
 
1.1 Real Numbers and Number Operations
1.1 Real Numbers and Number Operations1.1 Real Numbers and Number Operations
1.1 Real Numbers and Number OperationsSarah Stillwell
 
0.1.basic arith.&set
0.1.basic arith.&set0.1.basic arith.&set
0.1.basic arith.&setm2699
 

Mais procurados (19)

Function and Its Types.
Function and Its Types.Function and Its Types.
Function and Its Types.
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
 
Math vocabulary A-Z
Math vocabulary A-ZMath vocabulary A-Z
Math vocabulary A-Z
 
Bisection method in maths 4
Bisection method in maths 4Bisection method in maths 4
Bisection method in maths 4
 
Bisection Method
Bisection Method Bisection Method
Bisection Method
 
Bisection method
Bisection methodBisection method
Bisection method
 
Function and graphs
Function and graphsFunction and graphs
Function and graphs
 
Rational numbers ppt
Rational numbers pptRational numbers ppt
Rational numbers ppt
 
Mathematics assignment
Mathematics assignmentMathematics assignment
Mathematics assignment
 
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAScientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
 
16 logical programming
16 logical programming16 logical programming
16 logical programming
 
Real Numbers
Real NumbersReal Numbers
Real Numbers
 
Finding All Real Zeros Of A Polynomial With Examples
Finding All Real Zeros Of A Polynomial With ExamplesFinding All Real Zeros Of A Polynomial With Examples
Finding All Real Zeros Of A Polynomial With Examples
 
Zeroes and roots
Zeroes and rootsZeroes and roots
Zeroes and roots
 
Presentation on the real number system
Presentation on the real number systemPresentation on the real number system
Presentation on the real number system
 
1.1 Real Numbers and Number Operations
1.1 Real Numbers and Number Operations1.1 Real Numbers and Number Operations
1.1 Real Numbers and Number Operations
 
0.1.basic arith.&set
0.1.basic arith.&set0.1.basic arith.&set
0.1.basic arith.&set
 
133467 p1a6
133467 p1a6133467 p1a6
133467 p1a6
 
Task 4
Task 4Task 4
Task 4
 

Destaque

Assignment_Wireshark
Assignment_WiresharkAssignment_Wireshark
Assignment_WiresharkMihir shah
 
Escala - Colcci - Party All The Time
Escala - Colcci - Party All The TimeEscala - Colcci - Party All The Time
Escala - Colcci - Party All The Timeslideescala
 
TEA@UCF First Meeting Presention 9.15.16
TEA@UCF First Meeting Presention 9.15.16TEA@UCF First Meeting Presention 9.15.16
TEA@UCF First Meeting Presention 9.15.16TEA UCF
 
گزارشی در سمینار کارآفرینی برای دانش‌آموزان
گزارشی در سمینار کارآفرینی برای دانش‌آموزانگزارشی در سمینار کارآفرینی برای دانش‌آموزان
گزارشی در سمینار کارآفرینی برای دانش‌آموزانArman Safayi
 
Solucion industrial empresarial 21. Olor perfume aceites grasas margarina al...
Solucion  industrial empresarial 21.	Olor perfume aceites grasas margarina al...Solucion  industrial empresarial 21.	Olor perfume aceites grasas margarina al...
Solucion industrial empresarial 21. Olor perfume aceites grasas margarina al...Maxwell Altamirano
 
WWW.COURS6ECONOMIE.COM
WWW.COURS6ECONOMIE.COMWWW.COURS6ECONOMIE.COM
WWW.COURS6ECONOMIE.COMjamal yasser
 
Critical Reflective Paper
Critical Reflective PaperCritical Reflective Paper
Critical Reflective PaperAaron Chavez
 
ECE NACIONAL 2016 - SEGUNDO SECUNDARIA
ECE NACIONAL 2016 - SEGUNDO SECUNDARIAECE NACIONAL 2016 - SEGUNDO SECUNDARIA
ECE NACIONAL 2016 - SEGUNDO SECUNDARIAUGEL RECUAY
 
ECE NACIONAL 2016 - CUARTO PRIMARIA
ECE NACIONAL 2016 - CUARTO PRIMARIAECE NACIONAL 2016 - CUARTO PRIMARIA
ECE NACIONAL 2016 - CUARTO PRIMARIAUGEL RECUAY
 
Uso básico de social media en los equipos de ventas final
Uso básico de social media en los equipos de ventas finalUso básico de social media en los equipos de ventas final
Uso básico de social media en los equipos de ventas finalCristo Leon
 
Modulo 2 mtls vspsm
Modulo 2 mtls vspsmModulo 2 mtls vspsm
Modulo 2 mtls vspsmCristo Leon
 
2009 май-Буйство сирени-Ветчи
2009 май-Буйство сирени-Ветчи2009 май-Буйство сирени-Ветчи
2009 май-Буйство сирени-Ветчиvzlotin
 
Circulo de 4 Virtudes Directivas del Sensei Francisco Meza
Circulo de 4 Virtudes Directivas del Sensei Francisco MezaCirculo de 4 Virtudes Directivas del Sensei Francisco Meza
Circulo de 4 Virtudes Directivas del Sensei Francisco MezaCristo Leon
 

Destaque (19)

Assignment_Wireshark
Assignment_WiresharkAssignment_Wireshark
Assignment_Wireshark
 
test uio
test uiotest uio
test uio
 
Escala - Colcci - Party All The Time
Escala - Colcci - Party All The TimeEscala - Colcci - Party All The Time
Escala - Colcci - Party All The Time
 
TEA@UCF First Meeting Presention 9.15.16
TEA@UCF First Meeting Presention 9.15.16TEA@UCF First Meeting Presention 9.15.16
TEA@UCF First Meeting Presention 9.15.16
 
گزارشی در سمینار کارآفرینی برای دانش‌آموزان
گزارشی در سمینار کارآفرینی برای دانش‌آموزانگزارشی در سمینار کارآفرینی برای دانش‌آموزان
گزارشی در سمینار کارآفرینی برای دانش‌آموزان
 
Solucion industrial empresarial 21. Olor perfume aceites grasas margarina al...
Solucion  industrial empresarial 21.	Olor perfume aceites grasas margarina al...Solucion  industrial empresarial 21.	Olor perfume aceites grasas margarina al...
Solucion industrial empresarial 21. Olor perfume aceites grasas margarina al...
 
WWW.COURS6ECONOMIE.COM
WWW.COURS6ECONOMIE.COMWWW.COURS6ECONOMIE.COM
WWW.COURS6ECONOMIE.COM
 
Critical Reflective Paper
Critical Reflective PaperCritical Reflective Paper
Critical Reflective Paper
 
test tyu
test tyutest tyu
test tyu
 
ECE NACIONAL 2016 - SEGUNDO SECUNDARIA
ECE NACIONAL 2016 - SEGUNDO SECUNDARIAECE NACIONAL 2016 - SEGUNDO SECUNDARIA
ECE NACIONAL 2016 - SEGUNDO SECUNDARIA
 
ECE NACIONAL 2016 - CUARTO PRIMARIA
ECE NACIONAL 2016 - CUARTO PRIMARIAECE NACIONAL 2016 - CUARTO PRIMARIA
ECE NACIONAL 2016 - CUARTO PRIMARIA
 
Computer practical
Computer practicalComputer practical
Computer practical
 
Punjab agriculture
Punjab agriculturePunjab agriculture
Punjab agriculture
 
Uso básico de social media en los equipos de ventas final
Uso básico de social media en los equipos de ventas finalUso básico de social media en los equipos de ventas final
Uso básico de social media en los equipos de ventas final
 
Dias das crianças
Dias das criançasDias das crianças
Dias das crianças
 
Modulo 2 mtls vspsm
Modulo 2 mtls vspsmModulo 2 mtls vspsm
Modulo 2 mtls vspsm
 
Hiroshima
HiroshimaHiroshima
Hiroshima
 
2009 май-Буйство сирени-Ветчи
2009 май-Буйство сирени-Ветчи2009 май-Буйство сирени-Ветчи
2009 май-Буйство сирени-Ветчи
 
Circulo de 4 Virtudes Directivas del Sensei Francisco Meza
Circulo de 4 Virtudes Directivas del Sensei Francisco MezaCirculo de 4 Virtudes Directivas del Sensei Francisco Meza
Circulo de 4 Virtudes Directivas del Sensei Francisco Meza
 

Semelhante a Computer practical

cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfRakesh Nimhan
 
Oracle sql functions
Oracle sql functionsOracle sql functions
Oracle sql functionsVivek Singh
 
Numeric functions in SQL | Oracle
Numeric functions in SQL | OracleNumeric functions in SQL | Oracle
Numeric functions in SQL | OracleVimal Raj
 
Intro to tsql unit 10
Intro to tsql   unit 10Intro to tsql   unit 10
Intro to tsql unit 10Syed Asrarali
 
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEUnit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEDrkhanchanaR
 
Built-in Functions in SQL | Numeric Functions
Built-in Functions in SQL | Numeric FunctionsBuilt-in Functions in SQL | Numeric Functions
Built-in Functions in SQL | Numeric FunctionsRaj vardhan
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptxNewmanLeke
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answerRaajTech
 
R-Prog-Functions.pptx
R-Prog-Functions.pptxR-Prog-Functions.pptx
R-Prog-Functions.pptxssusere64486
 
What are Tableau Functions? Edureka
What are Tableau Functions? EdurekaWhat are Tableau Functions? Edureka
What are Tableau Functions? EdurekaEdureka!
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2macrob14
 
Lecture 02: Preliminaries of Data structure
Lecture 02: Preliminaries of Data structureLecture 02: Preliminaries of Data structure
Lecture 02: Preliminaries of Data structureNurjahan Nipa
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commandsDiyaVerma14
 
5.Agg. Function.pdf
5.Agg. Function.pdf5.Agg. Function.pdf
5.Agg. Function.pdfssuser8b6c85
 

Semelhante a Computer practical (20)

Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
MS Excel Function
MS Excel FunctionMS Excel Function
MS Excel Function
 
Foxpro (1)
Foxpro (1)Foxpro (1)
Foxpro (1)
 
Oracle sql functions
Oracle sql functionsOracle sql functions
Oracle sql functions
 
V34 numeric function-c
V34  numeric function-cV34  numeric function-c
V34 numeric function-c
 
Numeric functions in SQL | Oracle
Numeric functions in SQL | OracleNumeric functions in SQL | Oracle
Numeric functions in SQL | Oracle
 
Intro to tsql unit 10
Intro to tsql   unit 10Intro to tsql   unit 10
Intro to tsql unit 10
 
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLEUnit 3 - Function & Grouping,Joins and Set Operations in ORACLE
Unit 3 - Function & Grouping,Joins and Set Operations in ORACLE
 
Built-in Functions in SQL | Numeric Functions
Built-in Functions in SQL | Numeric FunctionsBuilt-in Functions in SQL | Numeric Functions
Built-in Functions in SQL | Numeric Functions
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptx
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
R-Prog-Functions.pptx
R-Prog-Functions.pptxR-Prog-Functions.pptx
R-Prog-Functions.pptx
 
What are Tableau Functions? Edureka
What are Tableau Functions? EdurekaWhat are Tableau Functions? Edureka
What are Tableau Functions? Edureka
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
 
Lecture 02: Preliminaries of Data structure
Lecture 02: Preliminaries of Data structureLecture 02: Preliminaries of Data structure
Lecture 02: Preliminaries of Data structure
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commands
 
Oracle sql ppt2
Oracle sql ppt2Oracle sql ppt2
Oracle sql ppt2
 
Advance excel
Advance excelAdvance excel
Advance excel
 
5.Agg. Function.pdf
5.Agg. Function.pdf5.Agg. Function.pdf
5.Agg. Function.pdf
 

Mais de Md Yeakub Hossain (19)

organizational behavior
organizational behaviororganizational behavior
organizational behavior
 
organizational behavior
organizational behaviororganizational behavior
organizational behavior
 
Financial accounting MCQ ( subsidiary books)
Financial accounting MCQ ( subsidiary books)Financial accounting MCQ ( subsidiary books)
Financial accounting MCQ ( subsidiary books)
 
Financial accounting MCQ (ledger)
Financial accounting MCQ (ledger)Financial accounting MCQ (ledger)
Financial accounting MCQ (ledger)
 
Organizational behavior
Organizational behaviorOrganizational behavior
Organizational behavior
 
Micro-economic
Micro-economicMicro-economic
Micro-economic
 
Micro-economic
Micro-economicMicro-economic
Micro-economic
 
Financial accounting MCQ
Financial accounting MCQFinancial accounting MCQ
Financial accounting MCQ
 
Whistleblowing management
Whistleblowing managementWhistleblowing management
Whistleblowing management
 
Rule of RBI in Foreign Exchange market / management
Rule of RBI in Foreign Exchange market / managementRule of RBI in Foreign Exchange market / management
Rule of RBI in Foreign Exchange market / management
 
Environmental studies
Environmental studiesEnvironmental studies
Environmental studies
 
Environmental studies
Environmental studiesEnvironmental studies
Environmental studies
 
Computer practical
Computer practicalComputer practical
Computer practical
 
Computer practical
Computer practicalComputer practical
Computer practical
 
Computer practical
Computer practicalComputer practical
Computer practical
 
Hll) juggernaut
Hll) juggernautHll) juggernaut
Hll) juggernaut
 
taxstion
taxstiontaxstion
taxstion
 
Business ethic ppt
Business ethic pptBusiness ethic ppt
Business ethic ppt
 
Business ethic ppt
Business ethic pptBusiness ethic ppt
Business ethic ppt
 

Último

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 

Último (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 

Computer practical

  • 2. ABS Returns the absolute value of a number. Syntax ABS(Number) Number is the value whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign. Example =ABS(-56) returns 56. =ABS(12) returns 12. =ABS(0) returns 0. INT Rounds a number down to the nearest integer. Syntax INT(Number) Returns Number rounded down to the nearest integer. Example =INT(5.7) returns 5.
  • 3. AVERAGE Returns the average of the arguments. Syntax AVERAGE(Number1; Number2; ...Number30) Number1; Number2;...Number 0 are numerical values or ranges. Example =AVERAGE(A1:A50) MIN Returns the minimum value in a list of arguments. Syntax MIN(Num1; Num2; ...Num30) Num1; Num2;...Num30 are numerical values or ranges. Example =MIN(A1:A10) returns the smallest value in the list. MAX Returns the maximum value in a list of arguments. Syntax MAX(Num1; Num2; ...Num30) Num1; Num2;...Num30 are numerical values or ranges. Example =MAX(A1:A10) returns the largest value in the list.
  • 4. SUM 1. Adds all the specified numbers. 2. Adds all the numbers in a range of cells. Syntax 1. SUM(Number1; Number2; ...) 2. SUM(RANGE) Number1; Number2; ... are 1 to 30 arguments whose sum is to be calculated. Example =SUM(A1;A3;B5) calculates the sum of the three cells. =SUM(A1:E10) calculates the sum of all cells in the A1 to E10 cell range. PRODUCT Multiplies all the numbers given as arguments and returns the product. Syntax PRODUCT(Number1; Number2; ... Number30) Number1; Number2; ... Number30 are 1 to 30 arguments whose product is to be calculated. PRODUCT returns Number1 * Number2 * Number_3 * ... Number_N Example =PRODUCT(2;3;4) returns 24.
  • 5. ROUND Returns a number rounded to a certain number of decimal places. Syntax ROUND(Number; Count) Returns Number rounded to Count decimal places. If Count is omitted or zero, the function rounds to the nearest integer. Example =ROUND(2.348;2) returns 2.35 =ROUND(2.348;0) returns 2. =ROUND(2.5) returns 3. TRUNC Truncates a number by removing decimal places. Syntax TRUNC(Number; Count) Returns Number with at most Count decimal places. Excess decimal places are simply removed, irrespective of sign. Example =TRUNC(1.239;2) returns 1.23. The 9 is omitted. =TRUNC(-1.234999;3) returns -1.234. All the 9s are omitted.
  • 6. POWER Returns the result of a number raised to a power. Syntax POWER(Base; Power) or Base ^ Power or exponent Returns Base raised to the power of Power. Example =POWER(4;3) returns 64, which is 4 to the power of 3. =4^3 also returns 4 to the power of 3. SQRT Returns the positive square root of a number. Syntax SQRT(Number) Returns the positive square root of Number. Number must be positive. Example =SQRT(16) returns 4. =SQRT(-16) returns an invalid argument error.
  • 7. MOD Returns the remainder after a number is divided by a divisor. Syntax MOD(Dividend; Divisor) For integer arguments this function returns Dividend modulo Divisor, that is the remainder when Dividend is divided by Divisor. Example =MOD(22;3) returns 1, the remainder when 22 is divided by 3. QUOTIENT Returns the integer result of a division operation. Syntax QUOTIENT(Numerator; Denominator) Returns the integer part of Numerator divided by Denominator. Example =QUOTIENT(11;3) returns 3. The remainder of 2 is omitted.
  • 9. AND Returns TRUE if all arguments are TRUE. If one of the elements is FALSE, this function returns the FALSE value. The arguments are logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values. Syntax AND(LogicalValue1; LogicalValue2 ...LogicalValue30) LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. Example =AND(12<13;14>12;7<6) returns FALSE. OR Returns TRUE if at least one argument is TRUE. This function returns the value FALSE, if all the arguments have the logical value FALSE. The arguments are logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values. Syntax OR(LogicalValue1; LogicalValue2 ...LogicalValue30) LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. Example =OR(12<11;13>22;45=45) returns TRUE.
  • 10. NOT Complements (inverts) a logical value. Syntax NOT(LogicalValue) LogicalValue is any value to be inversed or complemented. Example =NOT(A). If A=TRUE then NOT(A) will evaluate FALSE. =NOT(7<5). Since 7<5=FALSE so NOT(7<5) will evaluate TRUE. IF Syntax: IF(test; value1; value2) where:  is or refers to a logical value or expression that returns a logical value  (TRUE or FALSE).value1 is the value that is returned by the function  if test yields TRUE.value2 is the value that is returned by the function  if test yields FALSE. If value2 is omitted it is assumed to be FALSE; if value1 is also omitted it is assumed  to be TRUE. Example: IF(A1>5; 100; "too small") returns the number 100 if A1 is greater than 5, and the text "too small" otherwise.