![]() |
.NET using C# (Graduate) - Fall 2004 |
Signin |
| Home | Syllabus |Assignments | Code | Notes |Tutorials |OFS | MY Page | Contact | ||
Assignments
Assignment #6: Due(10/30/2004)
- Consume Free Webservices on TerraServerusa.com. Here is a PDF document on how to use itUse this URL for the Webservice http://www.terraserver-usa.com/terraservice2.asmx
- Create a webservice that sends a Pie chart as an XML Stream
Here is an example from Kiichi.
![]()
Assignment #5: Due(10/23/2004)
- Complete the NotePad application that we discussed in the class.
- Create a Windows Explorer like application using
TreeViewandListViewclasses.
Assignment #4: Due(10/16/2004)
- Create a class
AnalogClockthat uses events triggered every second to emulate an analog clock.Use the example available in the code section
- Create a simple Drawing Application by handling MouseEvents
Assignment #3: Due(10/9/2004)
- Modify the
PieChartclass Code to include the data inside each of the pie's. The output should look like this
![]()
- Using the same Class Design, create a Barchart.
Assignment #2: Due(10/2/2004)
- Design appropriate classes to perform Matrix Addition and Matrix Multiplication
- Design custom exception Handlers for a
Boilerclass.Throw the custom exceptionBoilerExceptionwhen the pressure is more than 2000 units or less than 500 units
It should have the following Members and Methods.
MembersMethods
double pressure
void Increase();--> Increase by 100 unitsvoid Decrease();--> Decrease by 100 units- Design a Calculator User Interface that looks exactly like the
cacl.exein Windows
![]()
Assignment #1: Due(9/25/2004)
Design the following classes. Choose the appropriate constructors,properties and methods as needed other than the ones mentioned.
- Represent a two dimensional
Pointclass
It will have the following membersCreate a method called
xy
double Distance(Point otherPoint);
that returns the distance from the current point to the other point- Design a class called
Stack
It will have the following memberCreate the follwoing methods
int[] data
void Push(int num);int Pop();int Peek();bool IsFull();bool IsEmpty();
In order to create the above class you would need to learn about C# arrays.See the Home page for details.- Design a class called
Sorter
It will have the following memberCreate the follwoing methods
int[] data
Create the following Propery
void BubbleSort();void SelectionSort();void InsertionSort();
public int[] Data
In order to create the above class you would need to learn about C# arrays.See the Home page for details.- Design a class called
Searcher
It will have the following memberCreate the follwoing methods
int[] data
int LinearSearch(int searchData);This returns the position of the first occurance in the arrayint BinarySearch(int searchData);This returns the position of the first occurance in the array
Create the following Propery
public int[] Data
In order to create the above class you would need to learn about C# arrays.See the Home page for details.
©Copyright
2009 Gavi Narra |