Welcome back to Software Development!

Slides:



Advertisements
Similar presentations
SharePoint 2013 – REST, JSON and SharePoint Designer
Advertisements

For(int i = 1; i
MS-Access XP Lesson 1. Introduction to MS-Access Database Management System Software (DBMS) Store data in databases Database is a collection of table.
Coach Gaines’ Geometry & Geometry Support.  Be in your assigned seat when the bell rings.  Come to class prepared to learn  Bring all supplies to class.
POLICIES & PROCEDURES. Student Behavior Raise your hand to ask a question or give an answer. Do not shout out the answer, unless I happen to say “shout.
Class Procedures What are they?. Entering class  Enter class quietly  Go directly to your assigned seat. Be in your seat when the bell rings.  Get.
 Place all belongings on the floor or in locker.  Tardiness is not acceptable  Sign in if you are tardy or late with a pass Date: / /12 Print your.

2013 Workflow Basics IN PLAIN ENGLISH FOR BUSINESS USERS.
Chapter 15 Strings String::Concat String::CompareTo, Equals, == If( string1 == S”Hello”) String1->Equals(S”Hello”) String1->CompareTo(S”Hello”) CompareTo.
Classroom Procedures and Expectations
Outlook Web Access (OWA) is a web mail service of Microsoft Exchange; allow users to connect remotely via a Web browser OWA is used to access ,
1.
Welcome to Mrs. Mull’s Classroom What will we study this year? Sun Space Day Night Stars Renewable resources Non-renewable resources Science.
Welcome to Computer Class!! It’s going to be a great year!!!
PBMS Administration of the System ASCA. System Administration 3 Level of Users: PBMS Administrator Access to entire system Set up PBMS and Organization.
ROUND 1 Name a method associated with class String 1.) 15 compareTo() 26 indexOf() 34 length() 2.) 3.) 4.) 3 toUpper() 7 substring() 11 charAt() 5.)
Kyleigh LESLIE. I will never give out my personal information like my phone number, location, and my school.
WELCOME TO MRS. HARTLEY’S SCIENCE CLASS
Tutorial 8: Manipulating Strings1 Tutorial 8 Manipulating Strings.
I can recall and apply all of Miss Johnson’s classroom rules, policies, and procedures.
Welcome to class!  Terrific Tuesday, September 12th!
Using to Create Web Conference Professional Development
Microsoft Visual Basic 2008: Reloaded Third Edition
Classroom Rules Listen and follow directions. Respect others.
Practical Office 2007 Chapter 10
Stepping stones Equipment
Day 12 Notes: Cell phones & Metaphors & Resets
King City High School August 7, 2017 Learning Target
How to Fix Error Code 1025 in Mac Outlook 2011?
Lesson 8: Granting Patient List [Proxy] Access
Working with Forms and Regular Expressions
Epic Basic Appointment Scheduling Wait List
Social Media And Global Computing Managing MVC with Model Validation
Lesson Four: Building Custom Patient Lists
Advanced consultation skills
WELCOME TO MRS. HARTLEY’S SCIENCE CLASS
PowerChart New User Tutorial
and Welcome to Mrs. Romero’s Computer Class!
Introduction Earth Science.
Mrs. Zhang’s Classroom Procedures
Summary of what we learned so far
Lesson Four: Building Custom Patient Lists
Lesson Two: Customizing Task Lists to Display Tasks
Ms. Burke’s Classroom Rules!.
Lesson Aims Vocabulary In this lesson you are going to:
Lesson 8: Granting Patient List [Proxy] Access
Lessons Vocabulary Access 2016.
  30 A 30 B 30 C 30 D 30 E 77 TOTALS ORIGINAL COUNT CURRENT COUNT
CS2011 Introduction to Programming I Loop Statements (II)
Arrays ICS2O.
Microsoft Visual Basic 2005: Reloaded Second Edition
Welcome log on and begin on your board work!
Welcome back to Software Development!
Welcome back to Software Development!
and Welcome to Mrs. Romero’s Computer Class!
WELCOME TO MRS. HARTLEY’S SCIENCE CLASS
Hello Jell-0.
Welcome back to Software Development!
JavaScript: Objects.
The bones of a good classroom
Welcome back to Software Development!
Rules and Routines Sra. Elliott
CHAMPS For Room 9 You must be in your seating chart seat. You may not move seats unless you have permission from Mrs. Worthy or other teacher. This is.
Lab Guidelines.
Introduction to Strings
Entering the Computer Lab
The beginning of media computation Followed by a demo
Chapter 6 – Queues and Deques
George Mason University
Presentation transcript:

Welcome back to Software Development!

Class rules when working on projects

Class rules when working on projects You may not leave your seat without permission

Class rules when working on projects You may not leave your seat without permission You may not talk with another team

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck:

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me (or a designated helper)

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me (or a designated helper) to get to you

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me (or a designated helper) to get to you You may not surf the web

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me (or a designated helper) to get to you You may not surf the web unless

Class rules when working on projects You may not leave your seat without permission You may not talk with another team If you are finished or stuck: Wait patiently for me (or a designated helper) to get to you You may not surf the web unless it is MSDN to find help

The follow-on task…

Xlate Quit

Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”;

Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length;

Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15

Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1);

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); starting index

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); starting index length

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); starting index length 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); starting index length 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); starting index length 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(0, 1); // subStr is “1” starting index length 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(1, 1); 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

1 Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(1, 1); // subStr is “)” 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(2, 1); 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

2 Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(2, 1); // subStr is “X” 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(3, 1); 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

3 Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(3, 1); // subStr is “X” 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(10, 1); 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

10 Xlate Quit string menuDisplayMsg = “1)Xlate\n2)Quit”; int lenMsg = menuDisplayMsg.Length; // lenMsg is 15 string subStr = menuDisplayMsg.Substring(10, 1); // subStr is “)” 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

for ( i = 0 ; i < menuDisplayMsg.Length ; i++ ) { subStr = menuDisplayMsg.Substring(i, 1); } 1 ) X l a t e \ n 2 ) Q u i t 1 2 3 4 5 6 7 8 9 10 11 12 13 14

Follow-on Task Change the NumMenuOptions property to be read-only: Remove its set method Change the MenuDisplayMsg property: Calculate the number of menu options by counting the “)” characters in the display message string. Set the numMenuOptions field with that number.