Midterm Review.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

HTML popo.
BCIS IB (Test 2) Excel Lessons 4 – 8 Press space bar to Advance Frame.
Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Excel is a spreadsheet program.
Spreadsheets Ms. Scales. What is a Spreadsheet? 0 Spreadsheets 0 A document, or table that is made up of rows and columns. 0 Table 0 Columns and rows.
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
Computer Literacy BASICS
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
Introduction to Excel, Word and Powerpoint Developing Valuable Technology Skills! Shawn Koppenhoefer Training in Research in Reproductive Health/Sexual.
Amber Annett David Bell October 13 th, What will happen What is this business about personal web pages? Designated location of your own web page.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Understanding HTML Code
HTML Hyper-Text Markup Language or tags. HTML is a “tag” language Open and close tags Tags identified with angle brackets Basic format content (shorthand.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Introduction to Excel Lecture 3. Excel basics O Excel is a software program that can make number manipulation easy O It is also referred as a spreadsheet.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Fall 2016 CSULA Saloni Chacha
Computers & Internet.
CHAPTER 2 MARKUP LANGUAGE
HTML Basics.
HTML basics
Web Development Part 1.
CompuHigh Microsoft Excel.
Office tool for creating tables and charts
>> HTML: Tables.
Elements of HTML Web Design – Sec 3-2
Sec (4.3) The World Wide Web.
Microsoft Excel.
Basic XHTML Tables XHTML tables—a frequently used feature that organizes data into rows and columns. Tables are defined with the table element. Table.
SUB-ICT STD-10 Working with Data in Microsoft Excel
Excel Basics Week 3.
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Lessons Vocabulary Excel 2016.
COMPUTING FUNDAMENTALS
Introduction to Spreadsheets 5.00
Essentials of Web Pages
INTRO TO EXCEL Computer Technology.
Introduction to Spreadsheets
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
Web Design and Development
Microsoft Excel 101.
Technology ICT Core: Spreadsheets.
Introduction to XHTML Cont:.
Pertemuan 1b
Introduction to HTML.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Basic HTML Workshop.
CS3220 Web and Internet Programming HTML and XML Basics
Pertemuan 1 Desain web Pertemuan 1
HTML Basics Mr. Fazzalari.
Web Client Side Technologies Raneem Qaddoura
Introduction to Spreadsheets
Presentation transcript:

Midterm Review

Primary Parts of a Computer Display – Monitor, etc. CPU: Central Processing Unit – The Brain Hard Drive – Long Term Memory RAM – Short Term Memory Input Devices Keyboard Mouse Touch screen

Key Internet Terms ISP : Internet Service Provider IP Address: Internet Protocol Address DNS: Domain Name System Primary reason military invested in developing the internet? Decentralized Military Command

URL : Uniform Resource locator A reference to the name of a file on the internet http://webpage.pace.edu/cis101/resume.doc

HTML http://www.w3schools.com/

HTML: Hyper Text Markup Language <!DOCTYPE html> <html> </html> <head> </head> <title> </title> <body> </body> <div> </div> <p> </p>

Commonly used tags HTML headings are defined with the <h1> to <h6> tags H1 being the largest Text font modifiers <b> bold </b> <strong> strong </strong> <u> underline </u> <i> italicize </i> <em> emphasize </em> HTML links are defined with the <a> tag: The link's destination is specified in the href attribute.  Attributes are used to provide additional information about HTML elements. <a href="http://www.w3schools.com">This is a link</a> HTML images are defined with the <img> tag. The source file (src), alternative text (alt), and size (width and height) are provided as attributes: <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">

HTML Tables <table> </table> <thead> </thead> <tr> </tr> <th> </th> <tbody> </tbody> <tr> </tr> <td> </td>

Excel

Types of Data Quantitative Data Qualitative Data Quantitative → Quantities Data which can be measured/numbers. Discrete Data – distinct values. Continuous Data - divisible values. Qualitative → Qualities Descriptions/observations, but not measured. Nominal Data – can not be ordered. Ordinal Data – observations with a logical rank. http://regentsprep.org/regents/math/algebra/ad1/qualquant.htm

Excel Terminology https://exceljet.net/keyboard-shortcuts

Excel Terminology Formula - User defined equation using numbers and/or cell references Function - Predefined equations in Excel that perform various operations on the inputs they are provided Macro – Custom user created functions using Visual Basic coding language https://exceljet.net/keyboard-shortcuts

Formulas Use Operators Arithmetic Operators Logic Operators + Add = 10 + 5 Result = 15 - Subtract = 10 – 5 Result = 5 * Multiply = 10 * 5 Result = 50 / Divide = 10 / 5 Result = 2 ^ Power = 10 ^ 5 Result = 100,000 ( ) Order of Operations = ((5 + 5) ^ 5) Result = 100,000 > Greater than = 10 > 5 Result = TRUE >= Greater than or Equal to = 10 >= 5 Result = TRUE = Equal to = 10 = 5 Result = FALSE <= Less than or Equal to = 10 <= 5 Result = FALSE < Less than = 10 < 5 Result = FALSE <> Not Equal to = 10 <> 5 Result = TRUE

Functions to Know Math Functions Logic/Conditional Functions =Sum(B1:B20) Adds together all numbers in range =Count(B1:B20) Counts all numeric values in range =CountA(B1:B20) Counts all non-empty cells in range =Average(B1:B20) Calculates average of numbers in range =SumProduct(B1:B20, C1:C20) Calculates sum of the range members multiplied =If ( 10 > 5, “Good”, “Bad”) Result = “Good” =And ( 10 >= 5, 4 > 10) Result = FALSE =Or ( 10 = 5, 4 = 4) Result = TRUE =CountIfs(Criteria Range, Criteria) =SumIfs(Numeric Range, Criteria Range, Criteria) =AverageIfs(Numeric Range, Criteria Range, Criteria)

IF Statements in Excel Then IF - Else [Value if True] =IF( Logic_Test [Value if False] , ) x > y x + y =IF( , ) x * y 5 > 2 5 + 2 7 5 * 2 10 x = 5 Y = 2

COUNTIFS 3 =CountIfs( Criteria Range, Criteria, Criteria Range , Criteria , Criteria Range , Criteria ) =CountIfs( ) data[Sub-category] , A5, data[Date] , “>=“ & B1 , data[Date] , “<=“ & B2 )

Chart Types Pie Chart Column Chart BAR CHART

Line graphs and Time Series Data https://www.captechconsulting.com/blogs/data-scientist-vs-data-analyst

Midterm Format

Midterm Format Open Notes & Web, but do not communicate with another human being Cheating will result in a zero for both parties even if they are in another section 50 Questions in 60 Minutes Q1 – 5 True/False Internet Vocabulary & HTML Q6 – 10 True/False Data types & Excel Q11 - 30 Multiple Choice HTML Q31 - 37 Calculated Response Excel Formulas Q38 – 45 Calculated Response Excel Functions & IF Statements Q46 – 50 Multiple Choice IF Functions

Calculated Questions = B1 * B1 same as = 3 * 3 answer is 9 = Sum(A1:C1) same as = 13 + 3 + 5 answer is 21 = if(B1 > B1, A3, A1) same as if(3 > 3, 4, 13) answer is 13