CSCI 3328 Object Oriented Programming in C# Review: Exam I

Slides:



Advertisements
Similar presentations
Introduction to Computers and Programming Midterm Review Sana Odeh.
Advertisements

Visual C++ Programming: Concepts and Projects
Slide 1 Chapter 2 Visual Basic Interface. Slide 2 Chapter 2 Windows GUI  A GUI is a graphical user interface.  The interface is what appears on the.
Visual Basic Chapter 1 Mr. Wangler.
CSCI 3327 Visual Basic Chapter 4: Control Statements in Visual Basic (Part 1A) UTPA – Fall 2011.
Visual Basic Advanced Programming.
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming 1 Xiang Lian The University of Texas Rio Grande Valley Edinburg,
© 2006 Lawrenceville Press Slide 1 Chapter 3 Visual Basic Interface.
CSCI 3328 Object Oriented Programming in C# Chapter 5: C# Control Statement – Part II UTPA – Fall
CSCI 3327 Visual Basic Chapter 4: Control Statements in Visual Basic (Part 1B) UTPA – Fall 2011.
Programming with Visual C++: Concepts and Projects Chapter 2B: Reading, Processing and Displaying Data (Tutorial)
Lecture 1: IDE - Integrated Development Environment.NET Framework Visual Studio 2010.NET Solution Explorer Properties Window.
CSCI/CMPE 4341 Topic: Programming in Python Review: Exam I Xiang Lian The University of Texas – Pan American Edinburg, TX 78539
CSCI 3328 Object Oriented Programming in C# Chapter 4: C# Control Statement – Part I 1 Xiang Lian The University of Texas Rio Grande Valley Edinburg, TX.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 4 Working with Variables, Constants, Data Types, and Expressions.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
CSCI 3327 Visual Basic Chapter 4: Control Statements in Visual Basic (Part 2B) UTPA – Fall 2011 Part of the slides is from Dr. John Abraham’s previous.
CSCI 3328 Object Oriented Programming in C# Chapter 4: C# Control Statement – Part I – Exercises 1 Xiang Lian The University of Texas Rio Grande Valley.
Visual Basic/ Visual Studio Brandon Large. Connecting to prior knowledge In your notes write down what the two main parts of the computer are. The “software”
Dive Into® Visual Basic 2010 Express
Chapter 2: The Visual Studio .NET Development Environment
CMIT100 Chapter 14 - Programming.
© 2016, Mike Murach & Associates, Inc.
Introduction to Programming and Visual Basic .NET
© 2016, Mike Murach & Associates, Inc.
Object Orientated Programming using C#
Visual Basic Code & No.: CS 218
Introduction to Computer CC111
1-1 Logic and Syntax A computer program is a solution to a problem.
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming UTPA – Fall 2012 This set of slides is revised from lecture.
Welcome to Visual Programming using C#
3.01 Apply Controls Associated With Visual Studio Form
Chapter Eleven Handling Events.
3.01 Apply Controls Associated With Visual Studio Form
CSCI 3327 Visual Basic Chapter 4: Control Statements in Visual Basic (Part 2B) UTPA – Fall 2011 Part of the slides is from Dr. John Abraham’s previous.
Chapter 2 Visual Basic Interface
CSCI 3328 Object Oriented Programming in C# Review: Final Exam
CSCI 3328 Object Oriented Programming in C# Chapter 1: Introduction to C# UTPA – Fall 2012 This set of slides is revised from lecture slides of Prof.
© 2016, Mike Murach & Associates, Inc.
CSCI 3328 Object Oriented Programming in C# Chapter 4: C# Control Statement – Part I UTPA – Fall 2012 This set of slides is revised from lecture slides.
Social Media And Global Computing Introduction to Visual Studio
The University of Texas – Pan American
Hands-on Introduction to Visual Basic .NET
The University of Texas – Pan American
Programming Right from the Start with Visual Basic .NET 1/e
Review for Midterm Exam
CSCI 3328 Object Oriented Programming in C# Chapter 4: C# Control Statement – Part I – Exercises UTPA – Fall 2012 This set of slides is revised from lecture.
CSCI 3328 Object Oriented Programming in C# Review: Exam I
CSCI 3328 Object Oriented Programming in C# Chapter 9: Classes and Objects: A Deeper Look – Exercises UTPA – Fall 2012 This set of slides is revised from.
CSCI 3327 Visual Basic Review: Final Exam
The University of Texas – Pan American
CSCI 3328 Object Oriented Programming in C# Review: Exam I
CSCI 3328 Object Oriented Programming in C# Review: Exam II
CSCI 3328 Object Oriented Programming in C# Chapter 5: C# Control Statement – Part II – Exercises UTPA – Fall 2012 This set of slides is revised from.
CSCI 3328 Object Oriented Programming in C# Review: Final Exam
CSCI 3328 Object Oriented Programming in C# Chapter 11: Files and Streams -- Exercises UTPA – Fall 2012 This set of slides is revised from lecture slides.
CSCI 3328 Object Oriented Programming in C# Chapter 3: Introduction to Classes and Objects – Exercises UTPA – Fall 2012 This set of slides is revised.
CSCI 3327 Visual Basic Review: Exam I
CSCI 3328 Object Oriented Programming in C# Review: Exam II
CSCI 3328 Object Oriented Programming in C# Review: Final Exam
Review for Midterm Exam
Review for Midterm Exam
Review for Midterm Exam
CSCI 3328 Object Oriented Programming in C# Review: Final Exam
Chapter 15: GUI Applications & Event-Driven Programming
Review for Midterm Exam
Creating a Windows Application Project in Visual Studio
CSCI 3328 Object Oriented Programming in C# Chapter 8: LINQ and Generic Collections – Exercises UTPA – Fall 2012 This set of slides is revised from lecture.
CSCI 3328 Object Oriented Programming in C# Review: Exam II
Presentation transcript:

CSCI 3328 Object Oriented Programming in C# Review: Exam I UTPA – Fall 2012

Review Chapters 1 ~ 6 in your textbook Lecture slides In-class exercises

Review Multiple Choice True/False Statements Programming Find bugs Write the code

Chapter 1 Basic components in a computer system The evolution of programming language The differences between structural programming and object-oriented programming The .Net framework Can you list several differences between C++ and C#? 

Chapter 2 IDE (Visual Studio) Controls Program analysis Menu bar, buttons, windows, toolboxes Controls TextBox, PictureBox, GroupBox, etc. Properties & events of controls Program analysis Windows Forms Application vs. Console Application

Chapter 3 Objects Classes Arithmetic operators Object-oriented design & programming Classes The Syntax for a Class Variables Methods Properties Events Arithmetic operators

Chapter 4 The primitive data types Arithmetic operators & Precedence The components of basic control structures The syntax of basic sequence, selection, and repetition structures in Visual C#

Chapter 5 More control structures Logical operators Repetition statements for, do … while statements Usage of break and continue statements Selection switch Logical operators