Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more.
Course Hero has millions of course specific materials providing students with the best way to expand
their education.
Below is a small sample set of documents:
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.compublic class Linecfw_private double xOne,yOne, xTwo, yTwo;private double slope;public void setCoordinates(double x1, double y1, double x2, double y2)cfw_xOne = x1;yOne = y1;xTwo = x2;
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.compublic class Rectanglecfw_private int length;private int width;private int perimeter;public void setLengthWidth(int len, int wid )cfw_length=len;width=wid;public void calculatePerim
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.compublic class Sumcfw_private double one, two, sum;public void setNums(double num1, double num2)cfw_one=num1;two=num2;public void sum( )cfw_sum=one+two;public void print( )cfw_Sys
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Distancecfw_private int xOne,yOne,xTwo,yTwo;private double distance;public Distanc
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import java.lang.Math.*;public class Lab03a /this class is used to test Trianglecfw_public static void main( String[] args )cfw_Scanner keyboard = new Scanner(S
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Lab03bcfw_public static void main( String[] args )cfw_Scanner keyboard = new Scann
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Lab03ccfw_public static void main( String[] args )cfw_Scanner keyboard = new Scann
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Lab03dcfw_public static void main( String[] args )cfw_Scanner keyboard = new Scann
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class MilesPerHourcfw_private int distance, hours, minutes;private double mph;public Mil
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Quadraticcfw_private int a, b, c;private double rootOne;private double rootTwo;pu
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import java.lang.Math.*;public class Trianglecfw_private int sideA, sideB, sideC;private double perimeter;private double theArea;public Triangle()cfw_setSide
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class AddStringscfw_private String first, last;private String sum;public AddStrings()cfw_setStrings(",");sum=";public AddStrings(String one,
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class FirstAndLastcfw_private String word;private char firstLetter;private char lastLetter;public FirstAndLast()cfw_setString(");word=";publ
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class Lab04acfw_public static void main ( String[] args )cfw_AddStrings demo = new AddStrings("hello","world");demo.add();out.println(demo);dem
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class Lab04bcfw_public static void main ( String[] args )cfw_FirstAndLast demo = new FirstAndLast("Hello");demo.findFirstLastLetters();out.print
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class Lab04ccfw_public static void main ( String[] args )cfw_StringRipper demo = new StringRipper("chicken");out.println(demo.ripString(3,6);out
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabimportComputer Science - www.apluscompsci.comstatic java.lang.System.*;public class Lab04dcfw_public static void main ( String[] args )cfw_Name person = new Name("Sally Baker");System.out.println(person.getFirst();System.out
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class Lab04ecfw_public static void main ( String[] args )cfw_StringChecker demo = new StringChecker("chicken");out.println("looking for c "+demo.
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class Namecfw_private String name;public Name()cfw_setName(");name = ";public Name(String s)cfw_setName(s);public void setName(String s)c
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class StringCheckercfw_private String word;public StringChecker()cfw_word = ";public StringChecker(String s)cfw_setString(s);public void se
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class StringRippercfw_private String word;public StringRipper()cfw_setString(");word=";public StringRipper(String s)cfw_setString(s);publi
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimportimportimportimportimportimportimportjava.awt.Graphics;java.awt.Color;java.awt.event.ActionListener;java.awt.event.ActionEvent;javax.swing.Timer;javax.swing.JFrame;java.awt.
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class CharacterAnalyzercfw_private char theChar;public CharacterAnalyzer()cfw_theChar = 0;public CharacterAnalyzer(ch
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Distancecfw_private int x1,y1,x2,y2;public Distance()cfw_x1 = 0;y1 = 0;x2 = 0;
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class Lab05acfw_public static void main( String args[] )cfw_Scanner keyboard = new Scanner(System.in);out.print("Enter
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class Lab05bcfw_public static void main ( String[] args )cfw_Scanner keyboard = new Scanner(System.in);out.print("Enter
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class Lab05ccfw_public static void main ( String[] args )cfw_Scanner keyboard = new Scanner(System.in);out.print("Enter
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class Lab05dcfw_public static void main ( String[] args )cfw_Scanner keyboard = new Scanner(System.in);out.print("Enter
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport java.util.Scanner;import static java.lang.System.*;import static java.lang.Math.*;public class Lab05ecfw_public static void main( String[] args )cfw_Scanner keyboard = new Scann
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;public class OddOrEvencfw_private int number;public OddOrEven()cfw_number=0;public OddOrEven(int num)cfw_setNum(num);public void setNum(int num)c
Cy-Fair College - C++ - comp122
/ A+/Name/Date/LabComputer Science--www.apluscompsci.comimport static java.lang.System.*;import java.util.Scanner;public class StringOddOrEvencfw_private String word;public StringOddOrEven()cfw_word=";public StringOddOrEven(String s)cfw_
American College of Computer & Information Sciences - COP - 1332
Public Class Form1Dim filename As StringDim oFile As System.IO.FileDim oWrite As System.IO.StreamWriterPrivate Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)Handles MyBase.Loadfilename = InputBox("Enter output file name")
American College of Computer & Information Sciences - COP - 1332
Exercise 5-6Exercise 5-6 Asks us to create a crude Bar Chart to display sales data for several retail stores.The user will be prompted via Input Box to enter the total sales for each store. The program willthen createand display a Bar Chart representi
American College of Computer & Information Sciences - COP - 1332
5-10 is a variation of the old compound interest problem. Sue Starts out being paid 1 the firstday. Her pay is doubled each day she works, 2 on day 2, 4 on day 3, etc. The exercise is tocreate an application to calculate her pay for any given number of
American College of Computer & Information Sciences - COP - 1332
The form accepts the following inputs: Number of days spent in the hospital at $350/day Amount of medication costs Amount of surgical costs Amount of Lab Fees Rehabilitation ChargesWe are asked to create the following VB functions CalculateStayChar
American College of Computer & Information Sciences - COP - 1332
This Exercise 6-1, asks us to create an application that uses a sub procedure to calculate theRetail Price of an Item (Whole Sale Price + Mark up). It is a rather simple little exercise; butuseful because it introduces us to functions and sub procedures
American College of Computer & Information Sciences - COP - 1332
Exercise 5-5.I used a piece of code I found on the internet 2/22/2010 as the basis of todays exercise. Theoriginal code was the clearing text boxes using a For Each .Next loop.Dim objControl As ControlFor Each objControl In Me.ControlsIf TypeOf objCo
American College of Computer & Information Sciences - COP - 1332
Exercise 6-3.I was a little slow posting last week. It was Income Tax time and took priority over all else. ITis done now so I can get back to what I love. This exercise from several days ago asks us tocreate an order form that will take the number of
American College of Computer & Information Sciences - COP - 1332
Exercise 6-5.This is an exercise I started back on April 7th; but just now getting around to posting. Theexercise asks us to create an application to allow a program to be password protected. The user isprompted to enter his/het user name and password.
American College of Computer & Information Sciences - COP - 1332
Exercise 7-1In this exercise we are asked to create a simple form to register participants for conference andcalculate the cost. The exercise requires us to use two forms and pass data between them. It is ashort little program that demonstrates creatio
American College of Computer & Information Sciences - COP - 1332
Public Class Form1Private Sub Button1_Click(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles Button1.ClickTextBox3.Text = TextBox1.Text * TextBox2.TextEnd SubPrivate Sub Button2_Click(ByVal sender As System.Object, ByVal e AsSystem
American College of Computer & Information Sciences - COP - 1332
Public Class Form1Private Sub btnVA_Click(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles btnVA.Click' Display the label controls.lblVA.Visible = TrueEnd SubPrivate Sub btnNC_Click(ByVal sender As System.Object, ByVal e AsSystem.
American College of Computer & Information Sciences - COP - 1332
Public Class Form1Private Property decRevA As DecimalPrivate Property decRevB As DecimalPrivate Property decRevC As DecimalPrivate Property dectotalrevenue As DecimalPrivate Property RevClassA As DecimalPrivate Sub lblTicketsSold_Click(ByVal sender
Blue Ridge - ECONOMICS - E101
TermsDefinitionsOLAP is a tool for enablingUsers to obtain online1) Users to obtain online answers to ad-hoc questions in answers to ad-hoc questionsa rapid amount of time.in a rapid amount of time.2) Users to view both logical and physical views o
Campbell - ANTHRO - 101
The 4 Fields of AnthropologyPhysical (Biological) AnthropologyArchaeologyAnthropological LinguisticsCultural AnthropologyPhysical AnthropologyPaleoanthropologyPrimatologyHuman physical variationForensic AnthropologyApplied Physical Anthropology
Campbell - ANTHRO - 101
Chapter 3Applied AnthropologyApplied AnthropologyCharacterized by problem-orientedresearch among the worldscontemporary populations.Attempt to apply anthropological data,concepts, and strategies to the solution ofsocial, economic, and technologica
Campbell - ANTHRO - 101
Chapter 2 FerraroChapter 1 HodgesThe Concept of CultureWhat We Will LearnHow do anthropologists define the termculture?Despite the enormous variation indifferent cultures, are some commonfeatures found in all cultures of the world?What are the li
Campbell - ANTHRO - 101
Chapter 6Language and CommunicationImportant QuestionsHow does human language differ from forms ofcommunication in other animals?How do languages change?Are some languages superior to others?Do people from different cultures have differentstyles o
Campbell - ANTHRO - 101
Ethnology and EthnographyEthnographic MethodsEthnological (Comparative) MethodsEthnographic MethodsThere are two sources of cultural dataabout a particular people The living members of the society ethnographic fieldwork. Written accounts or other r
Campbell - ANTHRO - 101
HUNTER COLLEGE OF THE CITY UNIVERSITY OF NEW YORKDEPARTMENT OF ANTHROPOLOGYANTHC 101.00 Introduction to Cultural AnthropologyMonday/Thursday 2:45 - 4:00 p.m., Room 510 HNFall Semester 2011David Julian Hodges, Ph.D.ProfessorCourse SyllabusThis cour
Campbell - ANTHRO - 101
CLASSDEBATECLASSDEBATEMONDAY,OCTOBER31ShouldJuvenilesBeTriedAsAdultsfoCommittingViolentCrimes?CLASSDEBATECLASSDEBATEMONDAY,OCTOBER31PROCON Juliette Collazo Nicole Bianco OliviaFriedlander Liz Schweitzer Joseph Moore ChamikaChamikaWanigatu
Campbell - ANTHRO - 101
Chapter 6Language and CommunicationSynchronic AnalysisThe analysis of cultural data at a singlepoint in time, rather than through time.Diachronic AnalysisThe analysis of sociocultural data throughtime, rather than at a single point in time.Languag
Campbell - ANTHRO - 101
Chapter 6Language and CommunicationImportant QuestionsHow does human language differ from forms ofcommunication in other animals?How do languages change?Are some languages superior to others?Do people from different cultures have differentstyles o
Campbell - ANTHRO - 101
Chapter 5Methods inCultural AnthropologyCommon Issues in FieldworkChoosing knowledgeable informants.Coping with culture shock.Learning a new language.Be willing to reevaluate findings in thelight of new evidence.Data Gathering TechniquesParticip
Campbell - ANTHRO - 101
Chapter 5Methods inCultural AnthropologyWhat We Will LearnHow do cultural anthropologists conductfieldwork?What types of data-gathering techniques docultural anthropologists use?What are some of the problems faced bycultural anthropologists that
Campbell - ANTHRO - 101
Chapter 11Sex and GenderImportant QuestionsTo what extent does biology influence malenessand femaleness?Are males dominant over females in allsocieties?How similar are gender roles throughout theworld?Do women and men in the same culturecommunic
Campbell - ANTHRO - 101
Chapter 4The Growth ofAnthropological TheoryAnthropological TheoriesA theory is a statement that suggests arelationship among phenomena.Theories enable us to reduce reality to anabstract set of principles.Anthropological principles help us make se
Campbell - ANTHRO - 101
Aspects of Nacirema CultureShrine Charm Box ?Hierarchy of Magical PractitionersMedicine Men ?Holy mouth men ?Daily Mouth Ritual ?Hog Hairs ?Opulence ?Aspects of Nacirema CultureRoom for secrecy and privacy ?Small font ?Without ritual, belief is
Campbell - ANTHRO - 101
Chapter 9Marriage and the FamilyDefinition of FamilySocial unit characterized by: economic cooperation management of reproduction child rearing common residence a male and female adult who maintain asocially approved sexual relationshipMarriage
Campbell - ANTHRO - 101
ANTHC 101.00 Introduction to Cultural AnthropologyExam # 1Sample Questions forTrue/FalseIndicate whether the sentence or statement is true or false.1. Anthropology is unique among the disciplines in that it is both a social science and a natural scie
Campbell - ANTHRO - 101
Stand-In For A MurdererNotes to Help You Follow the DialogueProfessor David Julian HodgesIntroduction to Cultural Anthropology11/09/111POTLATCH A form of competitive giveaway [ anddestruction of property] found amongNative Americans from the Nort