C Sc 335 Practice Test 1 Section Leader Name 150pts. 3. List two Java structures that allow for polymorphic messages (2pts)

Size: px
Start display at page:

Download "C Sc 335 Practice Test 1 Section Leader Name 150pts. 3. List two Java structures that allow for polymorphic messages (2pts)"

Transcription

1 C Sc 335 Practice Test 1 Sectin Leader Name 150pts 1. Write the crrect term, either "RESPONSIBILITIES" r "METHODS and DATA" in the blank space (2pts) At the cnceptual level, an bject is a set f At the implementatin level, an bject is a set f 2. Describe the essence f plymrphism. (3pts) 3. List tw Java structures that allw fr plymrphic messages (2pts) 4. If yu change ArrayList t LinkedList, will the fllwing cde still cmpile? true r false (2pts) List<String> list = new ArrayList<String>(); list.add("b"); list.add("a"); list.add("c"); Cllectins.shuffle(list); 5. Place an X by the name f any interfaces in the Java cllectin framewrk in the java.util package? (6pts) Cllectin ArrayList Queue Set Map SrtedArrayList 6. Which ges int the tp cmpartment (rectangle) f a class diagram f a single class? (2pts) Attributes(instance variables) Class Name Operatins (methds) 7. Can ne Java class implement mre than ne interface? yes r n (2pts) 8. What is better, high chesin r lw chesin? lw r high (2pts) 9. Will all assertins in the fllwing test methd pass? yes r n public vid testnext() { List<String> list = new ArrayList<String>(); list.add("b"); list.add("a"); Iteratr<String> itr = list.iteratr(); asserttrue(itr.hasnext()); assertequals("b", itr.next()); assertequals("a", itr.next()); asserttrue(itr.hasnext()); 10. Write the utput generated by the same cde when anumbermaybe is first "123" and then "NOgOOD" (6pts) String anumbermaybe = "123"; try { System.ut.println("--"); duble num= Duble.parseDuble(aNumberMaybe); System.ut.println(""); catch (NumberFrmatExceptin nfe) { System.ut.println("++"); String anumbermaybe = "NOgOOD"; try { System.ut.println("--"); duble num = Duble.parseDuble(aNumberMaybe); System.ut.println(""); catch (NumberFrmatExceptin nfe) { System.ut.println("++"); 1

2 11. Finish this prgram with a graphical user interface that will allws use t enter text int a field and be tld whether r nt that text represents a valid number. If the input is nt a number, put!!error in the middle. Hint use Duble.parseDuble(String) that thrws an exceptin if the argumnet isn't a valid number. (15pts) // Assume all imprts exist public class NumberFrame extends JFrame { public static vid main(string[] args) { new NumberFrame().setVisible(true); private JLabel heading = new JLabel("Enter a number belw"); private JLabel mylabel; private JTextField inputfield; // initialize the JFrame public NumberFrame() { settitle("numbers"); setsize(170, 125); setdefaultclseoperatin(exit_on_close); Cntainer cp = this.getcntentpane(); cp.setlayut(null); heading.setlcatin(0, 0); heading.setsize(140, 20); mylabel = new JLabel("Nthing yet..."); mylabel.setlcatin(30, 30); mylabel.setsize(140, 20); inputfield = new JTextField(); inputfield.setsize(170, 20); inputfield.setlcatin(0, 72); cp.add(heading); cp.add(mylabel); cp.add(inputfield); 2

3 12. In the bx, write class MyInteger s its bjects can be srted int their natural rdering with a call t java.util.cllectins.srt. Each cmparet message must return the difference in value with a negative value indicating the bject is less than the argument. Cmplete a test methd t cmpletely test the cmparet methd (12pts) public interface Cmparable<T> { public int cmparet(t ther); ////////////////////////////////// imprt static rg.junit.assert.*; imprt rg.junit.test; public class MyIntegerTest public vid testmyinteger() { 13. The UfA Bkstre has decided that there is just t much traffic in the bkstre at the beginning f each semester. In an effrt t reduce in-huse traffic, the bkstre has decided t implement an nline strefrnt where students can purchase all f their bks nline and just pick them up smetime after they ve been purchased. Yu are t d sme analysis and cme up with a mdel fr the bkstre s new nline frnt. Details: A student may remve 1 t many items frm the shelf and place them int a shpping basket A student shuld be able t remve items frm a shpping basket and place them back n the shelf A student shuld be able t purchase the items in their shpping basket T check ut, a student must give their shpping basket t the cashier (there is nly ne cashier) The cashier creates an rder that cnsists f a item, quantity, and a price based n the item s ISBN If the CatCard has enugh mney then the ttal amunt will be deducted and the items will be remved frm inventry, a claim check cnfirmatin fr the rder will be sent t the student s address If the CatCard funds are insufficient, place all back n the shelf Create a list f the five mst imprtant bjects t mdel this system alng with the majr respnsibility: (10pts) Candidate Object Majr Respnsibility 3

4 14. Draw a UML class diagram shwing all f yur candidate bjects and any relatinships between them. Shw inheritance relatinships, interface implementatin, r general assciatin such as dependency by drawing a line. Write any multiplicity adrnment yu can think f. Yu will likely have 1, and r * in a few places at least. Each classes needs the class name and at least ne apprpriate methd (n attributes needed fr a perfect scre). (12pts) 15. Given class Pint and a test driver fr class Circle and class Rectangle, implement a prperly designed inheritance hierarchy in Java (n the next page). Let Shape be the abstract class. Implement all three classes t the right f the nn-inheritance versin n the next page. Cmpletely implement all cnstructrs and all methds. Include all instance variables. The Circle and Rectangle classes must behave exactly the same with the inheritance hierarchy as withut. The assertins must pass. (20pts) imprt static rg.junit.assert.*; imprt rg.junit.test; public class ShapeTest public vid test getarea() { // 10 pixels ver, 10 pixels dwn, radius 2.0 Shape c = new Circle(10, 10, 2.0); asssertequals( , c.getarea(), 0.001); // width = 3.25, height = 5.75 Shape r = new Rectangle(40, 10, 3.25, 5.75); sssertequals( , r.getarea(), 0.001); // width = 3.25, height = 5.75 Shape r2 = new Rectangle(40, 60, 2, 3); asssertequals(6.0, r.getarea(), 0.1); 4

5 public class Pint { // Use this type private int xps; private int yps; Using gd Object-Oriented Design, cmpletely implement the hierarchy here public Pint(int x, int y) { xps = x; yps = y; public int getx() { return xps; public int gety() { return yps; public class Rectangle { private Pint upperleft; private duble width; private duble height; public Rectangle(int x, int y, duble height, duble width) { upperleft = new Pint(x, y); width = width; height = height; public int getx() { return upperleft.getx(); public int gety() { return upperleft.gety(); public duble getarea() { return width * height; public class Circle { private Pint upperleft; private duble radius; public Circle(int x, int y, duble diameter) { upperleft = new Pint(x,y); radius = diameter / 2; public int getx() { return upperleft.getx(); public int gety() { return upperleft.gety(); public duble getarea() { return Math.PI*Math.pw(radius, 2); 5

6 16. The Cmmand design pattern encapsulates the cncept f a cmmand int an bject. Yu can save it fr later executin. In the fllwing cde, six cmmands f tw different types are cnstructed and saved in a Vectr. Later n, the execute message is sent t all six Cmmand bjects. The three things that yu will be asked t write are highlighted in bldface: Cmmand, BrrwCmmand, and ReturnCmmand. // Have tw brrwers and three bks t stre in the tw Cmmand bjects Brrwer je = new Brrwer( Je ); Brrwer kim = new Brrwer( Kim ); Bk b0 = new Bk( Pascal ); Bk b1 = new Bk( Java ); Bk b2 = new Bk( c++ ); Cmmand c1 = new BrrwCmmand(je, b0); // Cnstruct a Cmmmand s Je brrws Pascal Cmmand c2 = new BrrwCmmand(je, b1); // Cnstruct a Cmmmand Je brrws Java Cmmand c3 = new BrrwCmmand(kim, b2); //... Cmmand c4thatfails = new BrrwCmmand(kim, b0); // Nthing will happen later with execute() Cmmand c5 = new ReturnCmmand(je, b0); Cmmand c6fails = new ReturnCmmand(je, b2); List cmmandlist = new Vectr(); cmmandlist.add(c1); cmmandlist.add(c2); cmmandlist.add(c3); cmmandlist.add(c4thatfails); // already ut cmmandlist.add(c5); cmmandlist.add(c6fails); // Desn't have fr(int j = 0; j < cmmandlist.size(); j++) { Cmmand ref = (Cmmand)cmmandList.get(j); ref.execute(); System.ut.println(brrwerList); System.ut.println(); Output Je has [] attempts t BORROW Pascal [Je has [Pascal], Kim has []] Je has [Pascal] attempts t BORROW Java [Je has [Pascal, Java], Kim has []] Kim has [] attempts t BORROW c++ [Je has [Pascal, Java], Kim has [c++]] Kim has [c++] attempts t BORROW Pascal [Je has [Pascal, Java], Kim has [c++]] Je has [Pascal, Java] attempts t RETURN Pascal [Je has [Java], Kim has [c++]] Je has [Java] attempts t RETURN c++ [Je has [Java], Kim has [c++]] 6

7 16a) Write interface Cmmand as if it were in its wn file 16b) Cmplete class BrrwCmmand as if it were in its wn file. The execute methd adjusts the Brrwer and the Bk if everything is all right. Hwever, if the Bk is already brrwed, execute returns false. // BrrwCmmand attaches a specific bk cpy t a specific subscriber, bth, the bk // cpy s and the subscriber s bjects are supplied by the prgrammer. public class BrrwCmmand implements Cmmand { prtected Brrwer thebrrwer; prtected Bk thebk; public BrrwCmmand(Brrwer abrrwer, Bk abk) { thebrrwer = abrrwer; thebk = abk; // When the Brrw buttn is clicked, execute this public blean execute() { System.ut.println(theBrrwer + " attempts t BORROW " + thebk); public blean und() { // a brrw by returning System.ut.println(theBrrwer + " und a Brrw" + thebk); 7

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

To over come these problems collections are recommended to use. Collections Arrays

To over come these problems collections are recommended to use. Collections Arrays Q1. What are limitatins f bject Arrays? The main limitatins f Object arrays are These are fixed in size ie nce we created an array bject there is n chance f increasing r decreasing size based n ur requirement.

More information

COP2800 Homework #3 Assignment Spring 2013

COP2800 Homework #3 Assignment Spring 2013 YOUR NAME: DATE: LAST FOUR DIGITS OF YOUR UF-ID: Please Print Clearly (Blck Letters) YOUR PARTNER S NAME: DATE: LAST FOUR DIGITS OF PARTNER S UF-ID: Please Print Clearly Date Assigned: 15 February 2013

More information

Project #1 - Fraction Calculator

Project #1 - Fraction Calculator AP Cmputer Science Liberty High Schl Prject #1 - Fractin Calculatr Students will implement a basic calculatr that handles fractins. 1. Required Behavir and Grading Scheme (100 pints ttal) Criteria Pints

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

Web of Science Institutional authored and cited papers

Web of Science Institutional authored and cited papers Web f Science Institutinal authred and cited papers Prcedures written by Diane Carrll Washingtn State University Libraries December, 2007, updated Nvember 2009 Annual review f paper s authred and cited

More information

1 Version Spaces. CS 478 Homework 1 SOLUTION

1 Version Spaces. CS 478 Homework 1 SOLUTION CS 478 Hmewrk SOLUTION This is a pssible slutin t the hmewrk, althugh there may be ther crrect respnses t sme f the questins. The questins are repeated in this fnt, while answers are in a mnspaced fnt.

More information

Geometer s Sketchpad can do the same thing but still has the power to manipulate the unit piece after you have completed your tessellated plane.

Geometer s Sketchpad can do the same thing but still has the power to manipulate the unit piece after you have completed your tessellated plane. (Gemeter's Sketchpad Tessellatins) Have yu ever made a tessellatin ut f fragmented parallelgram? Gemeter s Sketchpad can d the same thing but still has the pwer t manipulate the unit piece after yu have

More information

In Java, we can use Comparable and Comparator to compare objects.

In Java, we can use Comparable and Comparator to compare objects. Pririty Queues CS231 - Fall 2017 Pririty Queues In a pririty queue, things get inserted int the queue in rder f pririty Pririty queues cntain entries = {keys, values /** Interface fr a key- value pair

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Preparation: Follow the instructions on the course website to install Java JDK and jgrasp on your laptop.

Preparation: Follow the instructions on the course website to install Java JDK and jgrasp on your laptop. Lab 1 Name: Checked: (instructr r TA initials) Objectives: Learn abut jgrasp - the prgramming envirnment that we will be using (IDE) Cmpile and run a Java prgram Understand the relatinship between a Java

More information

Acclaim Solaria 5.31 Release Notes

Acclaim Solaria 5.31 Release Notes Acclaim Slaria 5.31 Release Ntes 5.31 Release ISSUES RESOLVED Calendar: When using assignment cunts and canceling an assignment directly frm the calendar using the cntext menu, it will nw clear ut the

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

BANNER 9 ENDUSER TRAINING FOR PROCUREMENT

BANNER 9 ENDUSER TRAINING FOR PROCUREMENT BANNER 9 ENDUSER TRAINING FOR PROCUREMENT Prcurement Staff STOCKTON UNIVERSITY Creating a Requisitin G t FPAREQN Type NEXT in the Requisitin field and click G Requestr/Delivery Infrmatin Screen: Delivery

More information

Use of GIS & GPS in Trail and Land Management

Use of GIS & GPS in Trail and Land Management CLCC Cnference 2014 Intrductin t CT ECO Use f GIS & GPS in Trail and Land Management Explre CT ECO CT ECO is a partnership between the CT Department f Energy and Envirnmental Prtectin (CT DEEP) and the

More information

Relational Operators, and the If Statement. 9.1 Combined Assignments. Relational Operators (4.1) Last time we discovered combined assignments such as:

Relational Operators, and the If Statement. 9.1 Combined Assignments. Relational Operators (4.1) Last time we discovered combined assignments such as: Relatinal Operatrs, and the If Statement 9/18/06 CS150 Intrductin t Cmputer Science 1 1 9.1 Cmbined Assignments Last time we discvered cmbined assignments such as: a /= b + c; Which f the fllwing lng frms

More information

CS1150 Principles of Computer Science Methods

CS1150 Principles of Computer Science Methods CS1150 Principles f Cmputer Science Methds Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang CS1150 UC. Clrad Springs Opening Prblem Find the sum f integers frm 1 t 10, frm 20

More information

Homework: Populate and Extract Data from Your Database

Homework: Populate and Extract Data from Your Database Hmewrk: Ppulate and Extract Data frm Yur Database 1. Overview In this hmewrk, yu will: 1. Check/revise yur data mdel and/r marketing material frm last week's hmewrk- this material will later becme the

More information

CREATING A DONOR ACCOUNT

CREATING A DONOR ACCOUNT CREATING A DONOR ACCOUNT An Online Giving Accunt shuld be created t have the ability t set-up recurring dnatins, pledges and be able t view and print histry. Setting up an accunt will als allw yu t set-up

More information

Primitive Types and Methods. Reference Types and Methods. Review: Methods and Reference Types

Primitive Types and Methods. Reference Types and Methods. Review: Methods and Reference Types Primitive Types and Methds Java uses what is called pass-by-value semantics fr methd calls When we call a methd with input parameters, the value f that parameter is cpied and passed alng, nt the riginal

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Cnnect t MySql using MySqlWrkbench 2 4. Create Tables web_user

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

SPL191- ASSIGNMENT 2

SPL191- ASSIGNMENT 2 SPL191- ASSIGNMENT 2 Java Generics, Cncurrency, and Synchrnizatin TAs in charge: Hussien Othman Yair Ashlagi Publicatin date: 21.11.2018 Deadline: 11.12.2018 23:59 Unit tests submissin deadline: 28.11.2018

More information

CS1150 Principles of Computer Science Introduction (Part II)

CS1150 Principles of Computer Science Introduction (Part II) Principles f Cmputer Science Intrductin (Part II) Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Review Terminlgy Class } Every Java prgram must have at least

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 1 - Calculatr Intrductin In this lab yu will be writing yur first

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Imagine for MSDNAA Student SetUp Instructions

Imagine for MSDNAA Student SetUp Instructions Imagine fr MSDNAA Student SetUp Instructins --2016-- September 2016 Genesee Cmmunity Cllege 2004. Micrsft and MSDN Academic Alliance are registered trademarks f Micrsft Crpratin. All rights reserved. ELMS

More information

HOW TO PURCHASE CONCERT TICKETS

HOW TO PURCHASE CONCERT TICKETS HOW TO PURCHASE CONCERT TICKETS Be aware that third-party ticket vendrs and scalpers use the Red Butte Garden name in sme way t sell verpriced r invalid tickets. We recmmend that yu nly purchase authentic

More information

STIPalm Basics. Quick Reference Guide STI_ STIPalm Basics 1

STIPalm Basics. Quick Reference Guide STI_ STIPalm Basics 1 STIPalm Basics First HtSync Operatin: Installing the Handheld Applicatin Immediately after running the installatin n the lcal wrkstatin, yu must perfrm a HtSync peratin t install the STIPalm applicatin

More information

How to use DCI Contract Alerts

How to use DCI Contract Alerts Hw t use DCI Cntract Alerts Welcme t the MyDCI Help Guide series Hw t use DCI Cntract Alerts In here, yu will find a lt f useful infrmatin abut hw t make the mst f yur DCI Alerts which will help yu t fully

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

Eastern Mediterranean University School of Computing and Technology Information Technology Lecture2 Functions

Eastern Mediterranean University School of Computing and Technology Information Technology Lecture2 Functions Eastern Mediterranean University Schl f Cmputing and Technlgy Infrmatin Technlgy Lecture2 Functins User Defined Functins Why d we need functins? T make yur prgram readable and rganized T reduce repeated

More information

Lab 5 Sorting with Linked Lists

Lab 5 Sorting with Linked Lists UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C WINTER 2013 Lab 5 Srting with Linked Lists Intrductin Reading This lab intrduces

More information

Lab 0: Compiling, Running, and Debugging

Lab 0: Compiling, Running, and Debugging UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 0: Cmpiling, Running, and Debugging Intrductin Reading This is the

More information

Chapter 3 Stack. Books: ISRD Group New Delhi Data structure Using C

Chapter 3 Stack. Books: ISRD Group New Delhi Data structure Using C C302.3 Develp prgrams using cncept f stack. Bks: ISRD Grup New Delhi Data structure Using C Tata McGraw Hill What is Stack Data Structure? Stack is an abstract data type with a bunded(predefined) capacity.

More information

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1 Operating systems Mdule 15 kernel I/O subsystem Tami Srgente 1 SWAP SPACE MANAGEMENT Swap space can be defined as a temprary strage lcatin that is used when system s memry requirements exceed the size

More information

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Asset Template The ARMS Imprt Asset Template New assets can be added t the Asbests Risk Management System (ARMS) using

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

B ERKELEY. Homework 7: Homework 7 JavaScript and jquery: An Introduction. Part 1:

B ERKELEY. Homework 7: Homework 7 JavaScript and jquery: An Introduction. Part 1: Hmewrk 7 JavaScript and jquery: An Intrductin Hmewrk 7: Part 1: This hmewrk assignment is cmprised f three files. Yu als need the jquery library. Create links in the head sectin f the html file (HW7.css,

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

3. If co-mingled materials are sorted at a MRF

3. If co-mingled materials are sorted at a MRF 1. Intrductin In WDF, materials can be reprted as cllected c-mingled in Q10, 11, 12, 14, 16, 17, 33 and 34. C-mingled materials can be srted either at the kerbside r via an autmated system at a Materials

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

Pages of the Template

Pages of the Template Instructins fr Using the Oregn Grades K-3 Engineering Design Ntebk Template Draft, 12/8/2011 These instructins are fr the Oregn Grades K-3 Engineering Design Ntebk template that can be fund n the web at

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

Chapter-10 INHERITANCE

Chapter-10 INHERITANCE Chapter-10 INHERITANCE Intrductin: Inheritance is anther imprtant aspect f bject riented prgramming. C++ allws the user t create a new class (derived class) frm an existing class (base class). Inheritance:

More information

Populate and Extract Data from Your Database

Populate and Extract Data from Your Database Ppulate and Extract Data frm Yur Database 1. Overview In this lab, yu will: 1. Check/revise yur data mdel and/r marketing material (hme page cntent) frm last week's lab. Yu will wrk with tw classmates

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C Due: July 9 (Sun) 11:59 pm 1. Prblem A Subject: Structure declaratin, initializatin and assignment. Structure

More information

STUDIO DESIGNER. Design Projects Basic Participant

STUDIO DESIGNER. Design Projects Basic Participant Design Prjects Basic Participant Thank yu fr enrlling in Design Prjects 2 fr Studi Designer. Please feel free t ask questins as they arise. If we start running shrt n time, we may hld ff n sme f them and

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently:

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently: The CllegeNet URL is: https://admit.applyweb.cm/admit/shibbleth/crnell Lg in with Crnell netid and Kerbers passwrd Because f security n the site, yu cannt create a bkmark thrugh the usual means. In rder

More information

Working With Audacity

Working With Audacity Wrking With Audacity Audacity is a free, pen-surce audi editing prgram. The majr user interface elements are highlighted in the screensht f the prgram s main windw belw. The editing tls are used t edit

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

But for better understanding the threads, we are explaining it in the 5 states.

But for better understanding the threads, we are explaining it in the 5 states. Life cycle f a Thread (Thread States) A thread can be in ne f the five states. Accrding t sun, there is nly 4 states in thread life cycle in java new, runnable, nn-runnable and terminated. There is n running

More information

Chalkable Classroom Items

Chalkable Classroom Items Chalkable Classrm Items Adding Items Activities in InfrmatinNOW are referred t as Items in Chalkable Classrm. T insert a new item (activity r lessn plan) t a Grade Bk, chse New Item frm the Menu n the

More information

GTS Webbooking (GTSVE093)

GTS Webbooking (GTSVE093) GTS Webbking (GTSVE093) User manual - April 2016 Updatet: April 2016 Page : 2 f 16 Cntents 1 Intrductin 3 2 Instructins 4 2.1 General 4 2.2 Changing the custmer number 4 2.3 Types f bking 4 2.4 Draft 4

More information

How to Mass Assign Student Course Requests

How to Mass Assign Student Course Requests Hw t Mass Assign Student Curse Requests It is pssible that an entire grade level r grup f students will need t request the same curse r curses. If this is the case, yu have the ptin f mass assigning curse

More information

Troubleshooting Desktop & All In One Computers, Monitors, TVs, Video Walls Last Updated

Troubleshooting Desktop & All In One Computers, Monitors, TVs, Video Walls Last Updated TROUBLESHOOTING GUIDE Trubleshting Desktp & All In One Cmputers, Mnitrs, TVs, Vide Walls Last Updated Vide Picture is nt Centered n the Screen The vide settings n yur PC have changed. If yu made a change

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Computer Information Systems Department. Computer Information Systems: Programming. o Work Experience, General. o Open Entry/Exit

Computer Information Systems Department. Computer Information Systems: Programming. o Work Experience, General. o Open Entry/Exit SECTION A - Curse Infrmatin 1. Curse ID: 2. Curse Title: 3. Divisin: 4. Department: 5. Subject: 6. Shrt Curse Title: 7. Effective Term:: CISP 21 Prgramming in Java Business Divisin Cmputer Infrmatin Systems

More information

ME Week 5 Project 2 ilogic Part 1

ME Week 5 Project 2 ilogic Part 1 1 Intrductin t ilgic 1.1 What is ilgic? ilgic is a Design Intelligence Capture Tl Supprting mre types f parameters (string and blean) Define value lists fr parameters. Then redefine value lists autmatically

More information

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice.

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice. Make Barcde Page 1/5 Make Barcde Descriptin Make Barcde let yu create a wide variety f different barcdes in different file frmats. Yu can add the barcde values as variable data frm metadata surces r by

More information

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Lesson 4 Advanced Transforms

Lesson 4 Advanced Transforms Lessn 4 Advanced Transfrms Chapter 4B Extract, Split and replace 10 Minutes Chapter Gals In this Chapter, yu will: Understand hw t use the fllwing transfrms: Replace Extract Split Chapter Instructins YOUR

More information

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways:

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways: Type: System Enhancements ID Number: SE 94 Date: June 29, 2012 Subject: New Address Verificatin Prcess Suggested Audience: Human Resurce Offices Details: Sectin I: General Infrmatin fr Address Verificatin

More information

Second Assignment Tutorial lecture

Second Assignment Tutorial lecture Secnd Assignment Tutrial lecture INF5040 (Open Distributed Systems) Faraz German (farazg@ulrik.ui.n) Department f Infrmatics University f Osl Octber 17, 2016 Grup Cmmunicatin System Services prvided by

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2013 Lab 1 - Calculatr Intrductin Reading Cncepts In this lab yu will be

More information

The following screens show some of the extra features provided by the Extended Order Entry screen:

The following screens show some of the extra features provided by the Extended Order Entry screen: SmartFinder Orders Extended Order Entry Extended Order Entry is an enhanced replacement fr the Sage Order Entry screen. It prvides yu with mre functinality while entering an rder, and fast access t rder,

More information

2. Candidate can appear in SCJA/OCJA or SCJP/OCJP certifications. Module I

2. Candidate can appear in SCJA/OCJA or SCJP/OCJP certifications. Module I Java SE Syllabus Pre-Requite: Basics f Prgramming (C r C++) Exit Prfile: 1. Applicatin Prgrammer 2. Candidate can appear in SCJA/OCJA r SCJP/OCJP certificatins. Mdule I 1 Intrductin t Java 2 Pre- requites

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

AP Computer Science A

AP Computer Science A 2018 AP Cmputer Science A Sample Student Respnses and Scring Cmmentary Inside: Free Respnse Questin 1 RR Scring Guideline RR Student Samples RR Scring Cmmentary 2018 The Cllege Bard. Cllege Bard, Advanced

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

Systems & Operating Systems

Systems & Operating Systems McGill University COMP-206 Sftware Systems Due: Octber 1, 2011 n WEB CT at 23:55 (tw late days, -5% each day) Systems & Operating Systems Graphical user interfaces have advanced enugh t permit sftware

More information

Grade 4 Mathematics Item Specification C1 TJ

Grade 4 Mathematics Item Specification C1 TJ Claim 1: Cncepts and Prcedures Students can explain and apply mathematical cncepts and carry ut mathematical prcedures with precisin and fluency. Cntent Dmain: Measurement and Data Target J [s]: Represent

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects January 29, 2018 - Versin 9.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

ATKey.Phone Quick Guide

ATKey.Phone Quick Guide ATKey.Phne Quick Guide 2018.03 rev1.0 Preface ATKey.Phne is a ios app t unlck yur Windws 10 (Windws Hell) and als Mac OSX by TuchID r FaceID frm yur iphne - turn yur iphne as an authenticatr t lgin multiple

More information

Focus University Training Document

Focus University Training Document Fcus University Training Dcument Fcus Training: Subjects and Curses Setup; Curse Requests Training Agenda: Setting up Subjects and Curses; Entering Curse Requests; Scheduling Reprts 2016 Subject and Curses

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 22, 2017 - Versin 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

HOW-TO Use SAP SUIM OR RSUSR008_009_NEW to Analysing Critical Authorisations

HOW-TO Use SAP SUIM OR RSUSR008_009_NEW to Analysing Critical Authorisations HOW-TO Use SAP SUIM OR RSUSR008_009_NEW t Analysing Critical Authrisatins Len Ye Cntents Preface... 2 Access the Prgram... 2 Analysing Users with Critical Authrisatins... 3 Defining Critical Authrisatins...

More information

Reading and writing data in files

Reading and writing data in files Reading and writing data in files It is ften very useful t stre data in a file n disk fr later reference. But hw des ne put it there, and hw des ne read it back? Each prgramming language has its wn peculiar

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Review Database Terms and Cncepts 2 4. Cnnect t MySql using

More information

CS1150 Principles of Computer Science Loops

CS1150 Principles of Computer Science Loops CS1150 Principles f Cmputer Science Lps Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang CS1150 UC. Clrad Springs Annuncement HW1 graded HW2 due tnight HW3 will be psted sn Due

More information

SUB-USER ADMINISTRATION HELP GUIDE

SUB-USER ADMINISTRATION HELP GUIDE P a g e 1 SUB-USER ADMINISTRATION HELP GUIDE Welcme t Prsperity Bank. Any previusly created Sub-User lgin frm the F&M system befre Friday, May 16 cnverted t the Prsperity system. Once lgged n t the Prsperity

More information

Tips & Tricks Data Entry Tool How to import files from Excel or Access into the DET

Tips & Tricks Data Entry Tool How to import files from Excel or Access into the DET Tips & Tricks Data Entry Tl Hw t imprt files frm Excel r Access int the DET 2 This dcument explains hw data prepared in ther prgrams (e.g. Excel, Oracle, Access,...) can be imprted t the Data Entry Tl.

More information

Student Guide. Where can I print? Charges for Printing & Copying. Top up your Print Credits Online, whenever you like

Student Guide. Where can I print? Charges for Printing & Copying. Top up your Print Credits Online, whenever you like Student Guide Where can I print? Yu can print ut yur wrk frm any Printer acrss Campus; in the Libraries, Open Access areas and IT Labs (which are available t wrk in when they are nt being used fr teaching).

More information

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules:

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules: PwerSchl ffers a variety f tls that schl administratrs and ffice staff can use t cmmunicate infrmatin effectively with students, parents, and staff members. Learn hw t create mailing labels, print reprts

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information