Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.

Slides:



Advertisements
Similar presentations
IT 325 OPERATING SYSTEM C programming language. Why use C instead of Java Intermediate-level language:  Low-level features like bit operations  High-level.
Advertisements

Primitive Data Types There are a number of common objects we encounter and are treated specially by almost any programming language These are called basic.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Accenture Delivery Fundamentals 2.0: Java Week 1 Close and Quiz Bowl
Java Syntax Part I Comments Identifiers Primitive Data Types Assignment.
Introduction to C Programming CE Lecture 1 Introduction to C.
CS31: Introduction to Computer Science I Discussion 1A 4/2/2010 Sungwon Yang
Moving To Code 3 More on the Problem-Solving Process §The final step in the problem-solving process is to evaluate and modify (if necessary) the program.
Copyright © 2012 Accenture All Rights Reserved. Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Java Building Elements Lecture 2 Instructors: Fu-Chiung Cheng ( 鄭福炯 ) Associate Professor Computer Science & Engineering Tatung University
CSCI 1100/1202 January 16, Why do we need variables? To store intermediate results in a long computation. To store a value that is used more than.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
CIS Computer Programming Logic
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming 1.
Created by, Author Name, School Name—State FLUENCY WITH INFORMATION TECNOLOGY Skills, Concepts, and Capabilities.
Introduction to Java CSIS 3701: Advanced Object Oriented Programming.
Programming in Java Unit 2. Class and variable declaration A class is best thought of as a template from which objects are created. You can create many.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
CPS120: Introduction to Computer Science
DHTML AND JAVASCRIPT Genetic Computer School LESSON 5 INTRODUCTION JAVASCRIPT G H E F.
Lecture #5 Introduction to C++
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 2 Chapter 2 - Introduction to C Programming.
Java Simple Types CSIS 3701: Advanced Object Oriented Programming.
Property of Jack Wilson, Cerritos College1 CIS Computer Programming Logic Programming Concepts Overview prepared by Jack Wilson Cerritos College.
Jens Dalsgaard Nielsen Jan Dimon Bendtsen Dept. of Electronic Systems Basic Programming INS-basis GF, PDP and HST.
An Introduction to Java – Part 1 Dylan Boltz. What is Java?  An object-oriented programming language  Developed and released by Sun in 1995  Designed.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
COMP 171: Data Types John Barr. Review - What is Computer Science? Problem Solving  Recognizing Patterns  If you can find a pattern in the way you solve.
Applications Development
1 Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java.
A variable is a storage location for some type of value. days 102 taxrate 7.75 int days = 102; double taxrate = 7.75; char grade = ‘A’; boolean done.
Getting Started Java Fundamentals CSC207 – Software Design Summer 2011 – University of Toronto – Department of Computer Science.
KUFA UNIVERSITY Department of Computer Science 06/12/2015.
Variables and Constants Objectives F To understand Identifiers, Variables, and Constants.
ELEE 4303 Digital II Introduction to Verilog. ELEE 4303 Digital II Learning Objectives Get familiar with background of HDLs Basic concepts of Verilog.
Developed at Sun Microsystems in 1991 James Gosling, initially named “OAK” Formally announced java in 1995 Object oriented and cant write procedural.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 2 - Introduction to C Programming Outline.
CPS120: Introduction to Computer Science Variables and Constants.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
Agenda Comments Identifiers Keywords Syntax and Symentics Indentation Variables Datatype Operator.
Spring 2009 Programming Fundamentals I Java Programming XuanTung Hoang Lecture No. 8.
COP2800 – Computer Programming Using JAVA University of Florida Department of CISE Spring 2013 Lecture 06 – Java Datatypes Webpage:
Java Basics. Tokens: 1.Keywords int test12 = 10, i; int TEst12 = 20; Int keyword is used to declare integer variables All Key words are lower case java.
Chapter 4: Variables, Constants, and Arithmetic Operators Introduction to Programming with C++ Fourth Edition.
Chapter 1: Introduction to Computers and Programming.
© 2011 Pearson Education, publishing as Addison-Wesley Chapter 1: Computer Systems Presentation slides for Java Software Solutions for AP* Computer Science.
Midterm preview.
Basic concepts of C++ Presented by Prof. Satyajit De
Agenda Introduction Computer Programs Python Variables Assignment
GC101 Introduction to computer and program
Revision Lecture
Data types and variables
C Basics.
Section 3.2c Strings and Method Signatures
Engineering Innovation Center
Building Java Programs Chapter 2
Lecture Notes – Week 3 Lecture-2
Variables Numbers can be stored and retrieved while a program is running if they are given a home. The way that integers and decimal numbers are stored.
Sridhar Narayan Java Basics Sridhar Narayan
Units with – James tedder
Units with – James tedder
Variables T.Najah Al_Subaie Kingdom of Saudi Arabia
CHAPTER FOUR VARIABLES AND CONSTANTS
Java Programming Review 1
1.7 Errors Compile-time error: A violation of the programming language rules that is detected by the compiler Example: System.ou.println("Hello, World!);
Presentation transcript:

Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are trademarks of Accenture. Accenture Delivery Fundamentals 2.0: Java Week 1: Day 4 Opening

Copyright © 2012 Accenture All Rights Reserved. Key Messages By now you should have experienced some Java coding exercises. Hopefully, you are having some fun performing them. Remember, our objective is not to make all of you expert Java programmers, but to provide you with some background in coding so you can be a key member of your team on a technical assignment. Most of you at some point in your Accenture career will be staffed to a technical engagement where this background will come in handy. 2

Copyright © 2012 Accenture All Rights Reserved. Recap Day Three recap –Module 6 – Java Programming Language –Module 7 – Error Handling/Assertions –Module 8 – Reuse: Java Procedural Programming Paradigm –Module 9 – Java Programming Classes and Objects Welcome to Application Delivery Fundamentals 2.0 Java Day Four. 3

Copyright © 2012 Accenture All Rights Reserved. Checkpoint Which of the following is/are key benefit/s of the Java programming language? Select all that apply. A.Java is procedural. B.Java is portable. C.Java is secure. D.Java runs more efficiently on specific computing platforms. 4

Copyright © 2012 Accenture All Rights Reserved. Checkpoint Which of the following are reserved keywords for data types? A.number, decimal, and character B.number, int, and decimal C.int, float, and boolean D.Integer, decimal, and character 5

Copyright © 2012 Accenture All Rights Reserved. Checkpoint Which of the following are true regarding variables? Select all that apply. A.Variables must be declared before they can be used in a program. B.Declaration provides a consistent starting value for a variable. C.Variables are distinct from the data contained in the variables. D.Variable names are case sensitive. 6

Copyright © 2012 Accenture All Rights Reserved. Checkpoint Which of the following is/are true about assertions? Select all that apply. A.Assertions should be used as a replacement for validation logic. B.Assert statements detect programming logic errors. C.Assert statements are used to detect code syntax errors. 7

Copyright © 2012 Accenture All Rights Reserved. Questions and Comments 8