NOR ZALINA ISMAIL FACULTY OF COMPUTER AND MATHEMATICAL SCIENCES1

Slides:



Advertisements
Similar presentations
Luminosity measurements at Hadron Colliders
Advertisements

Choosing a Dental Plan Student Name
Virtual Environments and Computer Graphics
THỰC TIỄN KINH DOANH TRONG CỘNG ĐỒNG KINH TẾ ASEAN –
BÖnh Parkinson PGS.TS.BS NGUYỄN TRỌNG HƯNG BỆNH VIỆN LÃO KHOA TRUNG ƯƠNG TRƯỜNG ĐẠI HỌC Y HÀ NỘI Bác Ninh 2013.
Parameterization of Tabulated BRDFs Ian Mallett (me), Cem Yuksel
L-Systems and Affine Transformations
Face Recognition Monday, February 1, 2016.
Theoretical Results on Neutrinos
HERMESでのHard Exclusive生成過程による 核子内クォーク全角運動量についての研究
Wavelet Coherence & Cross-Wavelet Transform
Hui Wang†*, Canturk Isci‡, Lavanya Subramanian*,
Interpretations of the Derivative Gottfried Wilhelm Leibniz
Widow Rockfish Assessment
Chapter 6 并发:死锁和饥饿 Operating Systems: Internals and Design Principles
You NEED your book!!! Frequency Distribution
Hui Wang†*, Canturk Isci‡, Lavanya Subramanian*,
Decision Procedures Christoph M. Wintersteiger 9/11/2017 3:14 PM
Online Social Networks and Media
Free Cooling Application for Energy Savings at Purdue
Calibration: more background
The Seven Deadly Diseases
Liang Shang, Henan Normal University IHEP
Gas-Electric Co-Optimization (GECO)
Elementary Particle Physics
Millikan's Oil Drop Experiment
M13/4/PHYSI/SPM/ENG/TZ1/XX
Abhinav Podili, Chi Zhang, Viktor Prasanna
Method to promote adhesion of DLC thin film on silicon substrate
Chapter11 Authentication
Department of Informatics
Lecture 26. Blackbody Radiation (Ch. 7)
Instructor: Shengyu Zhang
Examining the Feasibility of Long Term Care Insurance
CEng 713, Evolutionary Computation, Lecture Notes
Introduction to Deep Learning
Chemistry 200 Focus 1 Atoms.
Chemistry 130 Dr. John F. C. Turner 409 Buehler Hall
Agenda Introduction Figer 12:00-12:15
Monday April 10, 2017 Welcome back! Last week of content!
2National Institute of Standards and Technology, Boulder, CO 80305
Numeracy with the Romans
Challenge ’16 The Answers.
Geotechnical Engineering II CE 481
Performance – meaning and metrics
Physics 3 – Sept 27, 2016 Do Now: P3 Challenge –
Introduction to Data Science Lecture 4 Stats and Featurization
Geometry Similarity and Congruency
Gluonium content of the h'
Radar Sources Researched by Islam Ayman
Part II – The Standard Library
Calorimetry.
Department of Petroleum Engineering
for large surveys & censuses
Section 8-1 Review and Preview.
Economic Growth and the Wealth of Nations
John Cowan Reuters Health Information
Essentials of Modern Business Statistics (7e)
Modules 17 & 20 Math Practice 3 in Action - Reasoning and Sense Making
Comparing Two Populations or Treatments with Significance Testing
Grade 9 – Module 3 Module Focus Session
Housing Costs Chapter 10.
Week 10 - Friday CS 113.
Sand Mine Particulate Analysis
The PV Cell History, Basics & Technologies
Next Generation Carbon Nanotube Based Electronic Design
Containers Faster app development using Windows Server 2016 Containers.
in response to VB-111 Virotherapy
You must learn this for your GCSE
Cooling – Storage Ring & RF
Presentation transcript:

NOR ZALINA ISMAIL FACULTY OF COMPUTER AND MATHEMATICAL SCIENCES1 LAB SESSION 2 – CSC 138 NOR ZALINA ISMAIL FACULTY OF COMPUTER AND MATHEMATICAL SCIENCES1

Question Write a program to initialize the number given into an array. Given numbers: 10, 4,3,72,5,19 From the array: Display the minimum numbers Display the average of the numbers in the array Display the count of numbers is less than 10 Display the count of numbers is even number Hint : to initialize value in the array: int num[6]={10, 4,3,72,5,19}; Or int num[ ]={10, 4,3,72,5,19}; ---- the array size is allow to be blank if there is an initialize value given.

Question 2 Write 4 functions: Min Number( ) DisplayAve ( ) DisplayLess10( ) Display Even( )