Welcome to CSCE Presented by: Joshua Parsley Created by: Brian Russell Edited by: Joshua Parsley.

Slides:



Advertisements
Similar presentations
Autonomous Intelligent Mobile Robotics Jerry Weinberg Associate Professor Ross Mead Robot Scientist Computer Science What is a Robot?
Advertisements

Lecture 0 CSIS10A Overview. Welcome to CSIS10A (5 mins) – Typical format for class meetings New material first (monitors off, notebooks out) Practice.
Department of Mathematics and Computer Science
Careers in Mathematics. What can you do with a math degree?
Computer Concepts 5th Edition Parsons/Oja Page 546 CHAPTER 11 Software Engineering Section A PARSONS/OJA Computer Programming.
CMPT 120 Introduction to Computer Science and Programming I Chris Schmidt.
Copyright 2006 by Pearson Education 1 Building Java Programs Chapter 1: Introduction to Java Programming.
Society of Hispanic Professional Engineers. College of Engineering.
ALGORITHMS CSC 171 LECTURE 1. What is “Computer Science”? What is “Science”? What is a “Computer”? What is “Computation”?
1. 2 Chapter 1 Introduction to Computers, Programs, and Java.
1 SD1042: Introduction to Software Development SD1042 Introduction to Software Development SCHOOL OF COMPUTING AND TECHNOLOGY Getting Started MODULE TEAM.
Java PAL.  Contains the development kit and the runtime environment ( aka the Java Virtual Machine )  Download Link:
Computer Careers Dr. Kip Irvine School of Computing and Information Sciences, Florida International University.
Deerfield High School STEM Presentation CAREERS IN SOCIAL BUSINESS.
CSE 131 Computer Science 1 Module 1: (basics of Java)
IB Computer Science II Paul Bui
Introduction to Python Dr. Bernard Chen Ph.D. University of Central Arkansas July 9 th 2012
Ch 1. Introduction Dr. Bernard Chen Ph.D. University of Central Arkansas Spring 2012.
Computer Science Department Sonoma State University.
Kids, JavaScript, and Minecraft an explosive combination greg bulmash – cascadiajs 2015
Basics Programming Concepts. Basics A computer program is a set of instructions to tell a computer what to do Machine language = circuit level language.
An intro to programming. The purpose of writing a program is to solve a problem or take advantage of an opportunity Consists of multiple steps:  Understanding.
Media Computing Instructor Byung Kim Olsen 231 Office hours – MWF 9:00-10:00 AM or by appointment.
An Introduction to Computer Science. CSE Studies How Computers Work and How to Make Them Work Better Architecture  Designing machines Programming languages.
Introduction to Computers and Java Chapter 1.3. A Sip of Java: Outline History of the Java Language Applets A First Java Program Compiling a Java Program.
CSCI 161: Introduction to Programming 1
Use bluetooth for communication 1. enable bluetooth in NXT and also enable visibility 2. configure setting in brickCC –Wait about 30 seconds for searching.
Java and C# [this is a bonus – it is not a required lesson] ACO101: Introduction to Computer Science.
POS 406 Java Technology And Beginning Java Code
Programming Concept Chapter I Introduction to Java Programming.
Ch 1. A Python Q&A Session Spring Why do people use Python? Software quality Developer productivity Program portability Support libraries Component.
Computer Science Department Sonoma State University.
Engineering & Design Small Learning Community.
Computer Engineering Group Members Carolyn Carter Mike Lazere Josh Mangler Brian Robison Rebecca Steinlage.
EIE375 BlueJ: Getting Started Dr Lawrence Cheung.
JAVA Programming “When you are willing to make sacrifices for a great cause, you will never be alone.” Instructor: รัฐภูมิ เถื่อนถนอม
Lecture 1. Introduction to Programming and Java MIT- AITI 2003.
CS101: Introduction to Computer Science Slides adapted from Sedgewick and Wayne Copyright © Your First Java.
1 TOPIC 1 INTRODUCTION TO COMPUTER SCIENCE AND PROGRAMMING Topic 1 Introduction to Computer Science and Programming Notes adapted from Introduction to.
Hitchhiker’s Guide to CS Lee Sieger, Tim Cook, Jason Day, Zuozhi Yang.
CSc 201 Introduction to Java George Wells Room 007, Hamilton Building
CHAPTER 1 INTRODUCTION. CHAPTER GOALS To understand the activity of programming To learn about the architecture of computers To learn about machine code.
Client-Server applications Introduction to Java Applets Client-server architectures Why do Applets exist? What can an Applet do?
Welcome to CSCE Presented by: Brian Russell. Computer Science Interested in making computer programs called software. Interested in making programs and.
3/5/2002e-business and Information Systems1 Java Java Java Virtual Machine (JVM) Java Application Program Interface (API) HW Kernel API Application Programs.
Invent Your Own Computer Games with Python
Artificial Intelligence Adnan Haider. Background Developing hardware & software capable of intelligent thinking. John McCarthy in 1955 the science and.
Computer Science A 1. Course plan Introduction to programming Basic concepts of typical programming languages. Tools: compiler, editor, integrated editor,
CS 177 Recitation Week 1 – Intro to Java. Questions?
ITP 109 Week 2 Trina Gregory Introduction to Java.
Introduction to 1. What is Java ? Sun Microsystems Java is a programming language and computing platform first released by Sun Microsystems in The.
IS A COMPUTER CAREER FOR ME? BY: JOSHUA RAMNARAINE.
Introduction to Computer Science What is Computer Science? Getting Started Programming.
Computer Information Systems
Electrical Engineering
Lego Mindstorm Robot Educator Tutorials
Introduction
Ch 1. A Python Q&A Session Bernard Chen 2007.
Introduction to Java Dept. Business Computing University of Winnipeg
Getting Started ARCS Lab..
Lego Mindstorm Robot Educator Tutorials
Lego Mindstorm Robot Educator Tutorials

class PrintOnetoTen { public static void main(String args[]) {
A Java Application public class Hello { public static void main(String [] args) { System.out.println("Hello, World!"); } } public class.
Introduction to programming
A Java Application public class Hello { public static void main(String [] args) { System.out.println("Hello, World!"); } } public class.
IB Computer Science II Paul Bui
SE-1011 Slide design: Dr. Mark L. Hornick Instructor: Dr. Yoder
 Is a machine that is able to take information (input), do some work on (process), and to make new information (output) COMPUTER.
Presentation transcript:

Welcome to CSCE Presented by: Joshua Parsley Created by: Brian Russell Edited by: Joshua Parsley

Computer Science Interested in making computer programs called software. Interested in making programs and the hardware (machines that run the programs). Computer Engineering

We make computers powerful. June 23, The Star of Arkansas was recently ranked at No. 339 in the list of the world's Top Supercomputers.

We make computers small and secure. Smartdust: a network of tiny wireless microelectromechanical systems, installed with wireless communications, that can detect (for example) light, temperature, or vibration.

We make computers fun and useful. Business Applications, Hardware Engineering, and Software Development

We make computers think. Find me web pages on “salsa”!

Careers in CSCE Both computer science and computer engineering have top earning degrees!

Computer Graphics

More Graphics

Artificial Intelligence (AI) Making a machine that can “think”. Watson Supercomputer

Circuit Board Design (CE)

Robotics Combination of many areas.

Lego Mindstorms

What is Programming? A way to tell the computer what to do. Different programming languages are used to instruct the computer.

Java A Simple Program: public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world!"); }

Let’s Get Started!