test case 1 (main assignment):
typetest("school.University");
typetest("school.Faculty");
typetest("school.Department");
typetest("school.Course");
typetest("school.Student");| #region Using Statements | |
| using System; | |
| using System.Collections.Generic; | |
| using Microsoft.Xna.Framework; | |
| using Microsoft.Xna.Framework.Content; | |
| using Microsoft.Xna.Framework.Graphics; | |
| using Microsoft.Xna.Framework.Input; | |
| using Microsoft.Xna.Framework.Storage; | |
| using Microsoft.Xna.Framework.GamerServices; | |
| using ShipFighterClasses; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using Microsoft.Xna.Framework; | |
| using Microsoft.Xna.Framework.Audio; | |
| using Microsoft.Xna.Framework.Content; | |
| using Microsoft.Xna.Framework.GamerServices; | |
| using Microsoft.Xna.Framework.Graphics; | |
| using Microsoft.Xna.Framework.Input; |
| #region Using Statements | |
| using System; | |
| using System.Collections.Generic; | |
| using Microsoft.Xna.Framework; | |
| using Microsoft.Xna.Framework.Content; | |
| using Microsoft.Xna.Framework.Graphics; | |
| using Microsoft.Xna.Framework.Input; | |
| using Microsoft.Xna.Framework.Storage; | |
| using Microsoft.Xna.Framework.GamerServices; | |
| using ShipFighterClasses; |
| projects | |
| document describing what the system does | |
| what the system does | |
| example: | |
| online quiz: | |
| instructor can login | |
| http://quiz.com/ | |
| instructor creates a quiz for the class | |
| student tries the quiz | |
| servive endpoints: |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> | |
| <display-name>testWebservice2</display-name> | |
| <!-- <welcome-file-list> | |
| <welcome-file>index.html</welcome-file> | |
| <welcome-file>index.htm</welcome-file> | |
| <welcome-file>index.jsp</welcome-file> | |
| <welcome-file>default.html</welcome-file> | |
| <welcome-file>default.htm</welcome-file> | |
| <welcome-file>default.jsp</welcome-file> |
test case 1 (main assignment):
typetest("school.University");
typetest("school.Faculty");
typetest("school.Department");
typetest("school.Course");
typetest("school.Student");| using System; | |
| namespace tic_tac_toe | |
| { | |
| class Program | |
| { | |
| public static int EMPTY = 0; | |
| public static int Xchar=1; | |
| public static int Ochar = 2; | |
| int[,] matrix = new int[3, 3]; |
| -the lab practice should be submitted to bb | |
| -This program draws a spacecraft that can travel and an array of fixed asteroids. | |
| -include the following header files: | |
| #include <cmath> | |
| #include <iostream> | |
| #include <string> | |
| #include<conio.h> |
| -the lab practice should be submitted to bb | |
| -This program draws a spacecraft that can travel and an array of fixed asteroids. | |
| -include the following header files: | |
| #include <cmath> | |
| #include <iostream> | |
| #include <string> | |
| #include<conio.h> | |
| #include <Windows.h> | |
| if adding windows.h makes your program not compile use vs2013. |
| using System; | |
| using school; | |
| namespace testschool{ | |
| public class Tester { | |
| static void Main(){ | |
| Faculty scienceFac=University.createFaculty("Science"); |