Intro To HTML & Web & Relational Queries Individual Assignment 30 Points

Size: px
Start display at page:

Download "Intro To HTML & Web & Relational Queries Individual Assignment 30 Points"

Transcription

1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the problem. No lab is complete until the student submits the signed pledge form associated with that lab. I realize that no coded programs will be graded until I turn in the sign & pledge form associated with that program; any late penalties will continue to compound until the pledge form is submitted. If this lab is a team assignment, both team members may share logic as they program side by side on their own computers. Each person must type all of his/her own code as part of the learning process. Team assignments are never to be You do this portion and I ll do that portion or You do this lab and I ll do the next lab. Some of the lab assignments will have short answer questions. These short answer questions will be spot checked and graded for completion, but not checked for accuracy. I encourage you to get into a study group to help each other prepare for exams, quizzes, etc. Once these labs are graded and returned, I encourage you to compare answers with another class member, in your study group, who has also had the lab graded and returned. I/We realize that the penalty for turning in work that is not my own, or assisting others in doing so, can range from an "F" in the class to dismissal from Trinity University. I realize that it is a violation of academic integrity to share any portion of this lab with any person (outside my 3343 team & professor)! Print Name Time Required =. Hrs. Signature (pledged) Intro To HTML & Web & Relational Queries Individual Assignment 30 Points Short Answer Questions You May Write Answers On Printed Copy OR You May Enter Your Solutions Into The Word Document & Print This Lab When Finished Slides & Text 1] According to the slides, the physicist credited for developing the first HTML in 1989 was Tim _?_. 2] A CERN physicist, by the name of _?_ was involved in creating the first Browser and Server Software supporting HTML> 3] HTML is an acronym for _?_. 4] According to the slides, the two tags that should begin and end the rendered portion of a web page should be _?_. 5] {T/F} HTML is not case sensitive. 6] WWW is an acronym for _?_. 7] URL is an acronym for _?_. 8] A(n) _?_ is a software program which is used to render/show web pages; it transforms the HTML into attractive documents. 9] A(n) _?_ is a word processor that has been specialized to make the writing of HTML documents more effortless. They help to automate the insertion and management of the HTML element tags.

2 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 2 10] WYSIWYG is an acronym for _?_. 11] The header element will include the title for the document, possibly comments about the document, possibly information about the author, and possibly search functionality. Write the two tags that begin and end the header portion. 12] Write the line of HTML that would cause CSCI 3343 to be rendered in the window bar at the top of most browsers. 13] Write the two tags for a body that would define a web page that has a blue background. 14] {T/F} When a browser renders/displays text information, it ignores tabs and carriage returns; it also compresses multiple blanks to a single space. 15] Write the block of HTML code that would display names Tom, Dick, and Harry one to a line with a single line break. 16] {T/F} The Break tag is not an empty tag. 17] What is the Paragraph Tag? 19] Write the line of HTML that would cause CSCI 3343 to be rendered in the biggest and boldest font. 20] Write the line of HTML that would create a horizontal bar across the page. 22] Write the line of HTML that would cause CSCI 3343 to be centered on the line. 23] Write the line of HTML that would cause CSCI 3343 to be in bold font face. 24] Write the line of HTML that would cause CSCI 3343 to be in italic font face. 25] Write the line of HTML that would create an underline under CSCI 3343 not a link. 26] An image, called Photo.jpg exists in the current directory (same directory as the web page). Write the line of HTML code to render the image ] The current directory contains our web page, called index.html, and a folder called Images. The Images folder contains an image, called Photo.jpg. Write the line of HTML code to render the image.

3 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e ] Our web page is in a directory called WebSite. In the same directory as WebSite is a directory called Images. The Images folder contains an image, called Photo.jpg. Write the line of HTML code to render the image. 31] Write the line of HTML that create a hyperlink to Trinity University. The link message is to be See Trinity 32] Write the line of HTML that create a hyperlink to my web site. The link message is to be Dr. Hicks 33] {T/F} The link you just wrote above uses relative addressing ] The current directory contains our web page, called index.html, and another web page called Database.html. Write the code that would create a hyperlink to the database page. The link message is to be Go Database! 36-37] Our web page is in a directory called WebSite. In the same directory as WebSite is a directory called DatabaseStuff. The DatabaseStuff folder contains a web page, called Database.html. Write the code that would create a hyperlink to the database page. The link message is to be Go Database! 38] {T/F} The link you just wrote above uses absolute addressing ] Write the block of HTML code that would create, and populate, the table shown above.

4 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 4 Video & Internet #2 SQL Basic Select Statement (10 Min) 1] Watch the video above. 2] {Initial/Pledge} I have created a Database, called Stanford, that includes a Table/Relation, called College, which contains the data shown above. Maybe use Navicat or MySQL Workbench GUI? 3] {Initial/Pledge} Inside Stanford, I have created a Table/Relation, called Student, which contains the data shown above. Maybe use a GUI?

5 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 5 4] {Initial/Pledge} Inside Stanford, I have created a Table/Relation, called Student, which contains the data shown above. 5] Hopefully you have double-checcked your data to make sure it is correct. As we use this Database throughout the series of SQL tutorials, we may accidently mess up the data. Let us take a moment and back it up just in case. Hold Down Server Select Data Export 6] If you do not have a folder, called C:\Temp, create it. Select Stanford (left). Check the 5 check boxes shown above. Export to C:\Temp\Stanford.sql Push the Start Export Button.

6 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 6 7] {Initial/Pledge} I have at least two copies of this file. They are stored in at least two different locations. Mail one to yourself? Put it on the network drive. Put it on your personal computer? Query #8 8] Write the query that will display the SName and Major for all you will need the Natural Join. The firest few lines of your solution should match the capture above. Include the duplicate records.

7 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 7 Query #9 9] Write the query that will display the SName and Major for all you will need the Natural Join. The first few lines of your solution should match the capture on the above right.. Do Not Include the duplicate records. Query #10 10] Write the query that will display the sid, SName, cname and GPA for all CS majors applying to Stanford you will need the Natural Join. Your solution should match the solution above. Do Not Include the duplicate records.

8 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 8 Query #11 11] Write the query that will display the sid, sname, GPA, cname and Enrollment for all applying to Stanford you will need the Natural Join. The capture above shows the first few records. Query #12 12] Write the query that will display the sid, sname, GPA, cname andenrollment for all in order of GPA from high to low you will need the Natural Join. The capture above shows the first few records.

9 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 9 Query #13 13] Write the query that will display the sid, sname, GPA, cname and Enrollment for all in order of GPA from high to low then in order by college name you will need the Natural Join.The first few lines of your solution should match the capture above. Query #14 14] Write the query that will display the sid, sname, major for all that have bio in the major you will need the Natural Join.

10 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 10 Video & Internet #3 SQL Table Variables & Set Operators (20 Min) 1] Watch the video above. Query #2 2] Write the query that will display the sid, sname, GPA, cname and Enrollment for all then in order by college name you will need the Natural Join Use variables in the From Clause FROM Student S, College C, Apply A. The capture above shows the first few records.

11 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 11 Query #3 3] Write the query that will produce a single item, called Data, that contains the sid & sname for all Note that the duplicates have been squeezed out by default. You will need the Union Query #4 4] Write the query that will show the sid of all students applying with a CS major name the results CS_Majors.

12 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 12 Query #5 5] Write the query that will show the sid of all students applying with a EE major name the results EE_Majors. Query #6 SELECT sid FROM Apply WHERE (major = "CS") INTERSECT SELECT sid FROM Apply WHERE (major = "EE"); 6] Note that the query above does not work in MySQL There is not INTERSECT operator in MySQL. Query #7 7] Write the Query that would provide the same results as the Intersect Query above name the results CS_EE_Majors. Query #8 SELECT sid FROM Apply WHERE (major = "CS") EXCEPT SELECT sid FROM Apply WHERE (major = "EE"); 8] Note that the query above does not work in MySQL There is not EXCEPT operator in MySQL.

13 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 13 9] {T/F} MySQL supports the UNION Set Operator. 10] {T/F} MySQL supports the EXCEPT Set Operator. 11] {T/F} MySQL supports the INTERSECT Set Operator. Video & Internet #4 SQL Subqueries In While Clause (6 Min) 1] Watch the video above. Query #2 2] Write a query that displays the sid & sname of students who have applied for a CS major at some college use a subquery in the solution. Note that there are two Craigs one that applied for a CS major at Cornell (345) and one that applied for a CS major at MIT (543)

14 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 14 Query #3 3] Write a query that displays the sid1 & sname1 & GPA1 & sid2 & sname2 & GPA2 of all pairs of students who have the same GPA use a subquery in the solution. Your output should match the relation above including column titles. Query #4 4] Write a query that displays the college with the highest enrollment use a subquery in the solution that involves College C1 and College C2.

15 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 15 Query #5 5] Write a query that displays the college with the highest enrollment use a subquery in the solution that involves MAX. This must be a different solution than the one in the problem above. Query #6 6] Write a query that displays the sname & GPA with the highest GPA use a subquery in the solution that involves Student S1 and Student S2.

16 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 16 Query #7 7] Write a query that displays the sname & GPA with the highest GPA use a subquery in the solution that involves that involves MAX. This must be a different solution than the one above. Query #8 8] Write a query that displays the sname & GPA with the lowest GPA use a subquery in the solution that involves Student S1 and Student S2.

17 Intro-HTML-Web-HW.doc CSCI 3343 Initials P a g e 17 Query #9 SELECT sname, GPA FROM Student WHERE GPS >= ALL (SELECT GPA FROM Student); 9] Sketch the Relation returned from the query (in green) above. What To Turn In 1] All pages of this lab with questions completed No Lab Is Complete Until Both Are Complete ] You sign & submit the Pledge form at the top of this lab!. No Lab Will Be Considered Complete until this is done. Late penalties will continue to accrue until the pledge form is submitted. a) Sign & Pledge b) Record the amount of time you think you spent on this lab c) Staple all pages of this lab. Fold in half length-wise (like a hot-dog). Put your name on the outside. Place it on the professor desk before the beginning of lecture on the day it is due. The penalty for late homework will not exceed 25% off per day. d) Short answer questions must be hand written, unless the professor has granted an exception for physical reasons. 2] Place all programming code associated with this program, if any, in the Professor s Code Drop Box or on the Virtual System as directed. I do not accept programs by mail; do not submit labs via !

Intro-PHP-HW.docx CSCI 3343 Initials P a g e 1

Intro-PHP-HW.docx CSCI 3343 Initials P a g e 1 Intro-PHP-HW.docx CSCI 3343 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize

More information

DB-Queries-1 - REVIEW Individual 20 Points

DB-Queries-1 - REVIEW Individual 20 Points DB-Queries-1.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize

More information

Server 2 - MySQL #1 Lab

Server 2 - MySQL #1 Lab Server-Configuration-2-MySQL-1-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax,

More information

Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1

Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1 Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1 The short answer questions will be spot checked and graded for completion, but not checked for accuracy. I encourage you to form a study

More information

Chapter 11-B Homework ScalaFX & Eclipse Individual Assignment 25 Points

Chapter 11-B Homework ScalaFX & Eclipse Individual Assignment 25 Points If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the

More information

Chapter 11-D Homework ScalaFX & Eclipse Individual Assignment 10 Points

Chapter 11-D Homework ScalaFX & Eclipse Individual Assignment 10 Points If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the

More information

OOP- 5 Stacks Individual Assignment 35 Points

OOP- 5 Stacks Individual Assignment 35 Points OOP-5-Stacks-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize

More information

PCS1-Ch-3B-Basic-Loops-HW CSCI 1320 Initials P a g e 1

PCS1-Ch-3B-Basic-Loops-HW CSCI 1320 Initials P a g e 1 PCS1-Ch-3B-Basic-Loops-HW CSCI 1320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must

More information

Chapter 4C Homework Functions III Individual Assignment 30 Points Questions 6 Points Script 24 Points

Chapter 4C Homework Functions III Individual Assignment 30 Points Questions 6 Points Script 24 Points PCS1-Ch-4C-Functions-3-HW.docx CSCI 1320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but

More information

OOP-15-AVL Final Project-1-HW Individual Assignment 70 Points

OOP-15-AVL Final Project-1-HW Individual Assignment 70 Points OOP-15-AVL Final Project-1-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax,

More information

OOP-10 BTree & B+Tree Individual Assignment 15 Points

OOP-10 BTree & B+Tree Individual Assignment 15 Points OOP-10-B+Tree-HW CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize

More information

OOP- 4 Templates & Memory Management Print Only Pages 1-5 Individual Assignment Answers To Questions 10 Points - Program 15 Points

OOP- 4 Templates & Memory Management Print Only Pages 1-5 Individual Assignment Answers To Questions 10 Points - Program 15 Points OOP-4-Templates-Memory-Management-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax,

More information

OOP-8-DLList-1-HW.docx CSCI 2320 Initials Page 1

OOP-8-DLList-1-HW.docx CSCI 2320 Initials Page 1 OOP-8-DLList-1-HW.docx CSCI 2320 Initials Page 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize

More information

OOP- 6 Direct Access Files & Software Engineering Individual Assignment

OOP- 6 Direct Access Files & Software Engineering Individual Assignment OOP-6-DA-Files-SE-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must

More information

Design Relationships, Indexes, Queries, & More (Individual/Team Of 2) Assignment 20 USE PENCIL

Design Relationships, Indexes, Queries, & More (Individual/Team Of 2) Assignment 20 USE PENCIL Relationships-1-HW.docx CSCI 3321 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must

More information

Cisco Switch Lab II (1-3 Persons) Individual/Team Lab 35 Points

Cisco Switch Lab II (1-3 Persons) Individual/Team Lab 35 Points All of the work in this project is my own! I have not left copies of my code in public folders on university computers. I have not given any of this project to others. I will not give any portion of this

More information

Linux Command Homework Individual/Team (1-2 Persons) Homework Assignment Turn In One Copy Per Person 5 Points

Linux Command Homework Individual/Team (1-2 Persons) Homework Assignment Turn In One Copy Per Person 5 Points All of the work in this project is my own! I have not left copies of my code in public folders on university computers. I have not given any of this project to others. I will not give any portion of this

More information

Clean Up Team Lab 10 Points. Cisco Switch Lab I Individual Lab 25 Points

Clean Up Team Lab 10 Points. Cisco Switch Lab I Individual Lab 25 Points All of the work in this project is my own! I have not left copies of my code in public folders on university computers. I have not given any of this project to others. I will not give any portion of this

More information

Business Router II Lab

Business Router II Lab Business-Router-1-Lab.doc 1 CSCI 3342 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and

More information

Simple Router Configuration Router Lab 10 Points Networking & Data Communications

Simple Router Configuration Router Lab 10 Points Networking & Data Communications DCN-Router-Configuration-HW.doc 1 CSCI 3342 You must do at least 90% of this homework without the assistance of anyone else. Once you have 90% or more of the homework completed, you may double check your

More information

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14.

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14. RELEASE NOTES October 5, 2011 Epic Offline Client 2.5.28.17 Inside this issue: Messaging 3 My Account 11 Announcement 12 Discussion Board 13 Exam 14 Update Client 19 Improving Communications and Exam Security

More information

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank Multiple Choice. Choose the best answer. 1. What element is used to configure a new paragraph? a. new b. paragraph c. p d. div 2. What element is used to create the largest heading? a. h1 b. h9 c. head

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Lecture and Tour we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections

More information

CIS 3308 Web Application Programming Syllabus

CIS 3308 Web Application Programming Syllabus CIS 3308 Web Application Programming Syllabus (Upper Level CS Elective) Course Description This course explores techniques that are used to design and implement web applications both server side and client

More information

Chapter 17 Creating Online Pages and Sites

Chapter 17 Creating Online Pages and Sites Lesson Plans for Chapter 17 1 Chapter 17 Creating Online Pages and Sites Chapter Objectives Discuss the Chapter 17 objectives with students: Learn about the creation of the World Wide Web. Write HTML tags

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

PHP & MySQL Database. Database Systems CSCI Dr. Tom Hicks Computer Science Department

PHP & MySQL Database. Database Systems CSCI Dr. Tom Hicks Computer Science Department PHP & MySQL Database Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department 1 WWW Organization It Is A Good Idea To Create A Folder For Each Web Page Place Most Items, On Page, In That Folder!

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course: 20761 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2016 Duration: 24 HRs. ABOUT THIS COURSE This course is designed to introduce

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336 CSE 336 Introduction to Programming for Electronic Commerce Why You Need CSE336 Concepts like bits and bytes, domain names, ISPs, IPAs, RPCs, P2P protocols, infinite loops, and cloud computing are strictly

More information

Management Information Systems

Management Information Systems Management Information Systems Hands-On: HTML Basics Dr. Shankar Sundaresan 1 Elements, Tags, and Attributes Tags specify structural elements in a document, such as headings: tags and Attributes

More information

Creating and Building Websites

Creating and Building Websites Creating and Building Websites Stanford University Continuing Studies CS 21 Mark Branom branom@alumni.stanford.edu Course Web Site: http://web.stanford.edu/group/csp/cs21/ Week 1 Slide 1 of 28 Course Description

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

Enhancing Your Customer Facing Documents (updated 10/03/2017)

Enhancing Your Customer Facing Documents (updated 10/03/2017) Dolphin Dynamics Enhancing Your Customer Facing Documents (updated 10/03/2017) Copyright 2016 Dolphin Dynamics Ltd. The information contained herein is the property of Dolphin Dynamics Ltd. No part of

More information

CS/COE 1520

CS/COE 1520 CS/COE 1520 www.cs.pitt.edu/~nlf4/cs1520/ Introduction Meta-notes These notes are intended for use by students in CS1520 at the University of Pittsburgh. They are provided free of charge and may not be

More information

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus GRAPHIC DESIGN 65: Web Design I Course Syllabus Instructor: Anastasia Triviza Term: Spring 2010 Section: 4266 Time and Place: Thursdays, 6:30 PM-9:35 PM, AET 105 Arrange - 1 Hour Program website: http://www.smc.edu/designtech/graphic_design/

More information

Ministry of Higher Education and Scientific Research

Ministry of Higher Education and Scientific Research Morning Study Department of information technology Institute of Technical - Duhok. University of Polytechnic Duhok. Subject: Web Technology Course book for 2nd year. Lecturer s name: MSc. Ayman Nashwan

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information

THE HITCHHIKERS GUIDE TO HTML

THE HITCHHIKERS GUIDE TO HTML THE HITCHHIKERS GUIDE TO HTML Computer Science I Designing technology solutions Mr. Barrett http://thestrategicblogger.com/ What is HTML Hyper Text Markup Language (HTML) is a markup language for describing

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Beginning Web Site Design

Beginning Web Site Design Beginning Web Site Design Stanford University Continuing Studies CS 03 (Summer CS 21) Mark Branom branom@alumni.stanford.edu http://web.stanford.edu/people/markb/ Course Web Site: http://web.stanford.edu/group/csp/cs03/

More information

Lab 1: Setup 12:00 PM, Sep 10, 2017

Lab 1: Setup 12:00 PM, Sep 10, 2017 CS17 Integrated Introduction to Computer Science Hughes Lab 1: Setup 12:00 PM, Sep 10, 2017 Contents 1 Your friendly lab TAs 1 2 Pair programming 1 3 Welcome to lab 2 4 The file system 2 5 Intro to terminal

More information

SQL - Data Query language

SQL - Data Query language SQL - Data Query language Eduardo J Ruiz October 20, 2009 1 Basic Structure The simple structure for a SQL query is the following: select a1...an from t1... tr where C Where t 1... t r is a list of relations

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information

DRAFT WEB DESIGN 1 HBT 3131 HBT 3131 Web Design 1 Credit: Grade: Term: ACP Credit: Books: Resource List:

DRAFT WEB DESIGN 1 HBT 3131 HBT 3131 Web Design 1 Credit: Grade: Term: ACP Credit: Books: Resource List: WEB DESIGN 1 HBT 3131 HBT 3131 Web Design 1 Credit: 0.5 Computer or Practical Arts/Technology Grade: 10, 11, 12 Term: 1 Semester ACP Credit: MGD141* Books: Shelley Cashman HTML 4.1 Concepts and Techniques,

More information

Page 1 of 6 KERN COMMUNITY COLLEGE DISTRICT CERRO COSO COLLEGE CSCI C121 COURSE OUTLINE OF RECORD 1. 2. 3. 4. 5. DISCIPLINE AND COURSE NUMBER: COURSE TITLE: C-ID: CATALOG COURSE DESCRIPTION: GRADING METHOD

More information

Homework 1: RA, SQL and B+-Trees (due Feb 7, 2017, 9:30am, in class hard-copy please)

Homework 1: RA, SQL and B+-Trees (due Feb 7, 2017, 9:30am, in class hard-copy please) Virginia Tech. Computer Science CS 5614 (Big) Data Management Systems Spring 2017, Prakash Homework 1: RA, SQL and B+-Trees (due Feb 7, 2017, 9:30am, in class hard-copy please) Reminders: a. Out of 100

More information

1 (10) 2 (8) 3 (12) 4 (14) 5 (6) Total (50)

1 (10) 2 (8) 3 (12) 4 (14) 5 (6) Total (50) Student number: Signature: UNIVERSITY OF VICTORIA Faculty of Engineering Department of Computer Science CSC 370 (Database Systems) Instructor: Daniel M. German Midterm Oct 21, 2004 Duration: 60 minutes

More information

Dolphin Dynamics. Enhancing Your Customer Facing Documents

Dolphin Dynamics. Enhancing Your Customer Facing Documents Dolphin Dynamics Enhancing Your Customer Facing Documents Document Amendment History Date Issue number and reason Author 17/06/15 Document Creation Simon Baker Copyright 2015 Dolphin Dynamics Ltd. The

More information

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 Name Date Final Exam Prep Questions Worksheet #1 1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 2. Which of the following

More information

COMP 244 DATABASE CONCEPTS AND APPLICATIONS

COMP 244 DATABASE CONCEPTS AND APPLICATIONS COMP 244 DATABASE CONCEPTS AND APPLICATIONS Relational Algebra And Calculus 1 Relational Algebra A formal query language associated with the relational model. Queries in ALGEBRA are composed using a collection

More information

Course and Contact Information. Course Description. Course Objectives

Course and Contact Information. Course Description. Course Objectives San Jose State University College of Science Department of Computer Science CS157A, Introduction to Database Management Systems, Sections 1 and 2, Fall2017 Course and Contact Information Instructor: Dr.

More information

Carnegie Mellon Univ. Dept. of Computer Science Database Applications. General Overview - rel. model. Overview - detailed - SQL

Carnegie Mellon Univ. Dept. of Computer Science Database Applications. General Overview - rel. model. Overview - detailed - SQL Carnegie Mellon Univ. Dept. of Computer Science 15-415 - Database Applications Faloutsos Lecture#6: Rel. model - SQL part1 General Overview - rel. model Formal query languages rel algebra and calculi Commercial

More information

CSCU9B2 Practical 1: Introduction to HTML 5

CSCU9B2 Practical 1: Introduction to HTML 5 CSCU9B2 Practical 1: Introduction to HTML 5 Aim: To learn the basics of creating web pages with HTML5. Please register your practical attendance: Go to the GROUPS\CSCU9B2 folder in your Computer folder

More information

Web Programming Spring 2010

Web Programming Spring 2010 Web Programming Spring 2010 Course number: M&IS 24065 Section: 001/ 002 CRN: 11441/13343 Location: BSA 205/BSA 324 Meeting day: TR Meeting time: 2:15-3:30 PM/5:30-6:45 PM Instructor Name: Professor Janet

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

More information

STD 7 th Paper 1 FA 4

STD 7 th Paper 1 FA 4 STD 7 th Paper 1 FA 4 Choose the correct option from the following 1 HTML is a. A Data base B Word Processor C Language D None 2 is a popular text editor in MS window A Notepad B MS Excel C MS Outlook

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Banner Communication Management User Guide. Release 9.3 May 2017

Banner Communication Management User Guide. Release 9.3 May 2017 Banner Communication Management User Guide Release 9.3 May 2017 Notices Notices 2015-2017 Ellucian. Contains confidential and proprietary information of Ellucian and its subsidiaries. Use of these materials

More information

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension HTML Website is a collection of web pages on a particular topic, or of a organization, individual, etc. It is stored on a computer on Internet called Web Server, WWW stands for World Wide Web, also called

More information

Course and Contact Information. Course Description. Course Objectives

Course and Contact Information. Course Description. Course Objectives San Jose State University College of Science Department of Computer Science CS157A, Introduction to Database Management Systems, Sections 1 and 2, Fall2016 Course and Contact Information Instructor: Dr.

More information

CSC 101: Lab #1 HTML and the WWW Lab Date: Tuesday, 1/26/2010 Report Due Date: Friday, 1/29/2010 3:00pm

CSC 101: Lab #1 HTML and the WWW Lab Date: Tuesday, 1/26/2010 Report Due Date: Friday, 1/29/2010 3:00pm CSC 101: Lab #1 HTML and the WWW Lab Date: Tuesday, 1/26/2010 Report Due Date: Friday, 1/29/2010 3:00pm Lab Report: Make sure to follow along in the lab report document and answer questions as you encounter

More information

Chapter 4 Homework Individual/Team (1-2 Persons) Assignment 15 Points

Chapter 4 Homework Individual/Team (1-2 Persons) Assignment 15 Points All of the work in this project is my own! I have not left copies of my code in public folders on university computers. I have not given any of this project to others. I will not give any portion of this

More information

INF 315E Introduction to Databases School of Information Fall 2015

INF 315E Introduction to Databases School of Information Fall 2015 INF 315E Introduction to Databases School of Information Fall 2015 Class Hours: Tuesday & Thursday10:30 am-12:00 pm Instructor: Eunyoung Moon Email: eymoon@utexas.edu Course Description Almost every website

More information

Big Data NoSQL Databases Individual Assignment 20 Points

Big Data NoSQL Databases Individual Assignment 20 Points If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the

More information

Introduction to FrontPage 2002

Introduction to FrontPage 2002 Introduction to FrontPage 2002 Academic Computing Support Information Technology Services Tennessee Technological University August 2003 1. Introduction FrontPage 2002 is a program to help you build a

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

CS2300: File Structures and Introduction to Database Systems

CS2300: File Structures and Introduction to Database Systems CS2300: File Structures and Introduction to Database Systems Lecture 9: Relational Model & Relational Algebra Doug McGeehan 1 Brief Review Relational model concepts Informal Terms Formal Terms Table Relation

More information

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB 114-002 CRN 12234 Web Scripting: JavaScript I TERM: Spring 2017 DIVISION: Computing Sciences & Information Technology CREDITS: 2 Pre/Corequisite: WEB

More information

Basic Web Application Development Spring credit hour Student Taught (Satisfactory/Unsatisfactory)

Basic Web Application Development Spring credit hour Student Taught (Satisfactory/Unsatisfactory) Basic Web Application Development Spring 2014 1 credit hour Student Taught (Satisfactory/Unsatisfactory) Matthew Schurr mschurr@rice.edu (404) 395-0511 Instructor Matthew Schurr Duncan College Class of

More information

Getting to Know Pages on ipad

Getting to Know Pages on ipad Getting to Know Pages on ipad This guide will give you the basic instructions of how to use the Pages App on ipad. Documents Step 1 To create new documents and find the ones you ve worked on before, go

More information

BIS1523 Homework Assignments 2.1

BIS1523 Homework Assignments 2.1 Homework Assignments 2.1 Folder: hw01 Assignment #1, Bio Overview: Create a web page with some information (real or made up) about yourself. Your web page should include the following: A header, with your

More information

Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies

Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies Rochester Institute of Technology Golisano College of Computing and Information Sciences Department of Information Sciences and Technologies 4002-360.01 ~ Introduction to Database & Data Modeling ~ Spring

More information

CS425 Midterm Exam Summer C 2012

CS425 Midterm Exam Summer C 2012 Q1) List five responsibilities of a database-management system. Q2) Fill in the terms in the right hand side of the table that match the description from the list below: Instance SQL Integrity constraints

More information

Green Room Computer Lab Curriculum

Green Room Computer Lab Curriculum Green Room Computer Lab Curriculum Students will meet for 30 minutes twice a week. The curriculum goals are to: learn how to touch type. If students know how to type, then they will use the time in the

More information

Editing your Professional Web Pages (PWPs)

Editing your Professional Web Pages (PWPs) Editing your Professional Web Pages (PWPs) Introduction Imperial College is implementing a new system for publishing websites called a CMS (Content Management System). A feature of the College CMS is PWPs

More information

Database Systems Management

Database Systems Management Database Systems Management Instructor - Russ Wakefield GTA Shivani Dave On Campus and Distance Learning What is CS430 / CS430dl? Instructor (Russ) and GTA (Shivani) Homework assignments 4-5 Lab assignments

More information

Configuration Manager Help Guide

Configuration Manager Help Guide Configuration Manager Help Guide The Configuration Manager Help Guide is designed to help you navigate through the CAS Configuration Portal, which is the tool you will use to set up your programs on your

More information

CS145: Intro to Databases. Lecture 1: Course Overview

CS145: Intro to Databases. Lecture 1: Course Overview CS145: Intro to Databases Lecture 1: Course Overview 1 The world is increasingly driven by data This class teaches the basics of how to use & manage data. 2 Key Questions We Will Answer How can we collect

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted Announcements 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted 2. Install Komodo Edit on your computer right away. 3. Bring laptops to next class

More information

CMN192B OFFICE: An Overview of Access and PowerPoint

CMN192B OFFICE: An Overview of Access and PowerPoint CLASS NUMBER AND NAME: TOTAL CLOCK HOURS/UNITS: PREREQUISITE: TEXT AND MATERIALS: CMN310B ADVANCED OFFICE: Access And PowerPoint 24 HOURS/1 UNIT CMN192B OFFICE: An Overview of Access and PowerPoint Microsoft

More information

Computing for Medicine (C4M) Seminar 3: Databases. Michelle Craig Associate Professor, Teaching Stream

Computing for Medicine (C4M) Seminar 3: Databases. Michelle Craig Associate Professor, Teaching Stream Computing for Medicine (C4M) Seminar 3: Databases Michelle Craig Associate Professor, Teaching Stream mcraig@cs.toronto.edu Relational Model The relational model is based on the concept of a relation or

More information

There are several formatting conventions used in this document. Please take note of the formatting styles:

There are several formatting conventions used in this document. Please take note of the formatting styles: Using Blackboard The majority of the teaching on this course will be delivered using software called Blackboard. Blackboard is one of many Virtual Learning Environments used to teach over the internet.

More information

Lecture 3 SQL - 2. Today s topic. Recap: Lecture 2. Basic SQL Query. Conceptual Evaluation Strategy 9/3/17. Instructor: Sudeepa Roy

Lecture 3 SQL - 2. Today s topic. Recap: Lecture 2. Basic SQL Query. Conceptual Evaluation Strategy 9/3/17. Instructor: Sudeepa Roy CompSci 516 Data Intensive Computing Systems Lecture 3 SQL - 2 Instructor: Sudeepa Roy Announcements HW1 reminder: Due on 09/21 (Thurs), 11:55 pm, no late days Project proposal reminder: Due on 09/20 (Wed),

More information

Relational Algebra Homework 0 Due Tonight, 5pm! R & G, Chapter 4 Room Swap for Tuesday Discussion Section Homework 1 will be posted Tomorrow

Relational Algebra Homework 0 Due Tonight, 5pm! R & G, Chapter 4 Room Swap for Tuesday Discussion Section Homework 1 will be posted Tomorrow Relational Algebra R & G, Chapter 4 By relieving the brain of all unnecessary work, a good notation sets it free to concentrate on more advanced problems, and, in effect, increases the mental power of

More information

CSEN 501 CSEN501 - Databases I

CSEN 501 CSEN501 - Databases I CSEN501 - Databases I Lecture 5: Structured Query Language (SQL) Prof. Dr. Slim slim.abdennadher@guc.edu.eg German University Cairo, Faculty of Media Engineering and Technology Structured Query Language:

More information

Linking Program Review Data to Reports

Linking Program Review Data to Reports Linking Program Review Data to Reports 1. Accessing & Using the Program Review Data Warehouse 2. Creating Hyperlinks in your Report 3. Exporting Colleague Data as Excel Spreadsheets Open your internet

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

NoSQL Databases & Big Data Individual Assignment 50 Points

NoSQL Databases & Big Data Individual Assignment 50 Points If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the

More information

Tutorial 2 - HTML basics

Tutorial 2 - HTML basics Tutorial 2 - HTML basics Developing a Web Site The first phase in creating a new web site is planning. This involves determining the site s navigation structure, content, and page layout. It is only after

More information

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word.

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Web Writing 101 WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Instead, users: Scan pages Pick out key words and phrases Read in

More information

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above.

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. This will open another tab in your browser. Here you will see all files you own or that are shared

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

Instructions for the Exam

Instructions for the Exam Instructions for the Exam 1. Task Number, and Task Title Task Description: This provides an overview of what the task is asking you to perform Task Location: This section defines what the task applies

More information

Database Management Systems. Chapter 5

Database Management Systems. Chapter 5 Database Management Systems Chapter 5 SQL Example Instances We will use these instances of the Sailors and Reserves relations in our examples. If the key for the Reserves relation contained only the attributes

More information

Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please)

Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please) Virginia Tech. Computer Science CS 5614 (Big) Data Management Systems Fall 2014, Prakash Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please) Reminders: a. Out

More information