welcome to csce presented by: joshua parsley created by: brian russell edited by: joshua parsley

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

Upload: myra-heatherington

Post on 15-Dec-2015

228 views

Category:

Documents


0 download

TRANSCRIPT

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

Welcome to CSCEPresented by: Joshua Parsley

Created by: Brian RussellEdited by: Joshua Parsley

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

Computer ScienceInterested in making computer programs

called software.

Interested in making programs and the hardware (machines that run the programs).

Computer Engineering

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

We make computers powerful.

June 23, 2008 - http://hpc.uark.edu/

The Star of Arkansas was recently ranked at No. 339in the list of the world's Top Supercomputers.

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

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.

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

We make computers fun and useful.

Business Applications, Hardware Engineering, and Software Development

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

Careers in CSCE

Both computer science and computer engineering have top earning degrees!

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

Computer Graphics

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

More Graphics

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

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

Watson Supercomputer

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

Circuit Board Design (CE)

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

RoboticsCombination of many areas.

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

Lego Mindstorms

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

What is Programming?A way to tell the computer what to do.

Different programming languages are used to instruct the computer.

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

Java

A Simple Program:

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

}

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

Let’s Get Started!