Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse P

Alphabetical listing with fast deep pagination.
81033 items • Page 1459 / 1621

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
package HandleEvent; import javafx.application.Application; import javafx.event.
package HandleEvent; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.geometry.Pos; import javafx.scene.Scen…
package Hangman; import java.util.*; public class DictionaryManager { final stat
package Hangman; import java.util.*; public class DictionaryManager { final static String[] dictionaryArray = {"scissor", "size", "98 more words and phrases"}; public static void …
package Lab11; public class BinaryTree { private BinaryTreeNode root; public Bin
package Lab11; public class BinaryTree {     private BinaryTreeNode root;         public BinaryTree(){     root=null;     }         public boolean isEmpty(){     return root==null…
package Lab11; public class BinaryTreeNode { BinaryTreeNode left, right; int dat
package Lab11; public class BinaryTreeNode {     BinaryTreeNode left, right;     int data;         public BinaryTreeNode(){     left=null;     right=null;     data=0;     }       …
package Lab3; import java.io.IOException; import java.io.PrintWriter; import jav
package Lab3; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import…
package Learning; public class Number { private int num; public Number(int num)
package Learning; public class Number { private int num; public Number(int num) {    this.num = num; } public static Number addNumbers(Number n1, Number n2) {    return new Number…
package Lecture_7; public class Student implements Comparable{ Integer a
package Lecture_7; public class Student implements Comparable<Object>{    Integer age;    String state;    String firstName;    String lastName;       public Student(Integer…
package Milestone1; import java.util.Scanner; public class Ingredient { private
package Milestone1; import java.util.Scanner; public class Ingredient { private String name; private double amount; private String unitOfMeasure; private int calories; private Sca…
package P1; public class Memory f //attributes private int[] contents; private i
package P1; public class Memory f //attributes private int[] contents; private int size; //constructor public Memory (int size) this. size = size; contents = new int [size]; //set…
package P4; /* This file includes: * 1. Solution to P3 * 2. Questions for P4. Co
package P4; /* This file includes: *    1. Solution to P3 * 2. Questions for P4. Comments starting with REQ represent the questions. * * Features: *    - We have from 1 to 3 playe…
package PJ2; public class MyStack implements StackInterface { // Data fields pri
package PJ2; public class MyStack implements StackInterface { // Data fields private Node topNode; // references the first node in the chain private int numberOfEntries; public My…
package PJ4; import java.util.*; /* * Ref: http://en.wikipedia.org/wiki/Video_po
package PJ4; import java.util.*; /* * Ref: http://en.wikipedia.org/wiki/Video_poker * http://www.google.com/ig/directory?type=gadgets&url=www.labpixies.com/campaigns/videopoke…
package PJ4; import java.util.*; //=============================================
package PJ4; import java.util.*; //================================================================================= /** class PlayingCardException: It is used for errors related …
package Simulator; import java.util.ArrayList; /** * * @author kimler */ public
package Simulator; import java.util.ArrayList; /** * * @author kimler */ public class Pager { private int pframes = 4; //[0-3] private int vframes = 8; //[0-7] private String refe…
package a; import java.io.*; import java.awt.*; import javax.swing.*; import jav
package a; import java.io.*; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException…
package addition; /* * To change this template, choose Tools | Templates * and o
package addition; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ //package addition; /** * * @author MAN */ import javax.swing.JO…
package algs11; import java.util.Arrays; import stdlib.*; /** * This is a skelet
package algs11; import java.util.Arrays; import stdlib.*; /** * This is a skeleton file for your homework. Edit the sections marked TODO. You * may also edit the function "main" t…
package algs11; import java.util.Arrays; import stdlib.*; /** * This is a skelet
package algs11; import java.util.Arrays; import stdlib.*; /** * This is a skeleton file for your homework. Edit the sections marked TODO. You * may add new functions. You may also…
package algs11; import java.util.Arrays; import stdlib.*; /** * Version 1.0 * *
package algs11; import java.util.Arrays; import stdlib.*; /** * Version 1.0 * * Your Name goes here * You class section goes here * * * This is a skeleton file for your homework. …
package algs11; import java.util.Arrays; import stdlib.*; /** CSC300Homework4 ve
package algs11; import java.util.Arrays; import stdlib.*; /** CSC300Homework4 version 1.0 * * Your Name goes here * You class section goes here * * * This is a skeleton file for y…
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods o
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods of MyFriend so that it works. * Each method must work in the worst case time given below (assuming u…
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods o
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods of MyFB so that it works. * Each method must work in the worst case time given below (assuming unifo…
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods o
package algs34; import java.util.*; import stdlib.*; /* * Complete the methods of MyFB so that it works. * Each method must work in the worst case time given below (assuming unifo…
package arraysofobjects; import java.util.Scanner; public class Main { public st
package arraysofobjects; import java.util.Scanner; public class Main {     public static void main(String[] args)     {           Scanner inputs = new Scanner(System.in);         …
package assignment1; package assignment1; import java.util.Scanner; /** * * @aut
package assignment1; package assignment1; import java.util.Scanner; /** * * @author adi */ public class Change { public static void main( String[] args)    { int amount, originalA…
package assignment1_main; import javax.swing.*; import java.awt.*; import java.a
package assignment1_main; import javax.swing.*; import java.awt.*; import java.awt.event.* ; /** * * @author willi public class Calculator extends JFrame { JTextField xInput, y In…
package bstpractice; import java.io.*; import java.util.*; class Node { public S
package bstpractice; import java.io.*; import java.util.*; class Node { public String name; //data[low] or data[high] are the data items represented by the subtree //data[mid] is …
package buttongui; import static com.sun.deploy.config.JREInfo.clear; import jav
package buttongui; import static com.sun.deploy.config.JREInfo.clear; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; imp…
package ch03.stacks; import support.LLNode; public class LinkedStack implements
package ch03.stacks; import support.LLNode; public class LinkedStack implements UnboundedStackInterface{ protected LLNode top; // reference to the top of this stack public LinkedS…
package chapter4; import java.util.*; public class SetOfFloatingPoint { public s
package chapter4; import java.util.*; public class SetOfFloatingPoint { public static void main(String[] args) { float total = 0; float count = 0; Scanner in = new Scanner(System.…
package chapter4; import java.util.*; public class WhileLoopPrints { private sta
package chapter4; import java.util.*; public class WhileLoopPrints { private static Scanner in; public static void main(String[] args) { { int sum = 0; for (int i = 0; i < 100;…
package code; /** * You are given a partial definition of a Recipe class. Your t
package code; /** * You are given a partial definition of a Recipe class. Your task is to complete this class by * writing a constructor and 3 getter methods for the 3 instance va…
package code; /** * You are given a partial definition of a Recipe class. Your t
package code; /** * You are given a partial definition of a Recipe class. Your task is to complete this class by * writing a constructor and 3 getter methods for the 3 instance va…
package code; import java.io.IOException; import java.nio.file.Files; import jav
package code; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; p…
package code; import java.io.IOException; import java.nio.file.Files; import jav
package code; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; p…
package code; import java.io.IOException; import java.nio.file.Files; import jav
package code; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; p…
package code; import java.io.IOException; import java.nio.file.Files; import jav
package code; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; p…
package code; import java.util.HashMap; /* * Homework 3, part 1 * * This homewor
package code; import java.util.HashMap; /* * Homework 3, part 1 * * This homework is the first step to a geography-based application. It gives you practice with the following * co…
package code; public class AssignmentOne { public static void main(String[]args)
packagecode; publicclassAssignmentOne {             publicstaticvoidmain(String[]args) {                         System.out.println("* * * * * *");                         System.…
package code; public class SavingsAccount { . * Define this class to that repres
package code; public class SavingsAccount { . * Define this class to that represents a simple Savings Account. * Pay attention to the names, parameters and return types of the met…
package code; public class WriteUp { /* * Your job in this write-up is to do two
package code; public class WriteUp { /* * Your job in this write-up is to do two things: * * 1) write tests for the required functionality of * the method described below * * 2) f…
package com.IST240Apps import java.awt.event.* import java.awt.* public class Li
package com.IST240Apps import java.awt.event.* import java.awt.* public class ListenerKey extends Jframe implements Keylistener i JtextPield keyTextnew JTextField (80) Jlabel keyL…
package com.binarytree; import java.util.Iterator; import java.util.List; public
package com.binarytree; import java.util.Iterator; import java.util.List; public class Main { public static void main(String[] args) { BinarySearchTree tree = new BinarySearchTree…
package com.binarytree; import java.util.Iterator; import java.util.List; public
package com.binarytree; import java.util.Iterator; import java.util.List; public class Main { public static void main(String[] args) { BinarySearchTree tree = new BinarySearchTree…
package com.example.admin.hw4; import android.app.Activity import android.suppor
package com.example.admin.hw4; import android.app.Activity import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widg…
package com.example.admin.hw4; import android.app.Activity; import android.suppo
package com.example.admin.hw4; import android.app.Activity; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.wid…
package com.example.admin.hw4; import android.app.Activity; import android.suppo
package com.example.admin.hw4; import android.app.Activity; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.wid…
package com.example.diyahsbluetooth; import java.io.IOException; import java.io.
package com.example.diyahsbluetooth; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Set; import …
package com.list; public class Main { public static void main(String[] args) { N
package com.list; public class Main {    public static void main(String[] args) {               NodeList list = new NodeList();               list.add("Book");        list.add("La…
package csci3230.hw3; import java.io.File; import java.io.IOException; import ja
package csci3230.hw3; import java.io.File; import java.io.IOException; import java.util.ListIterator; import java.util.NoSuchElementException; import java.util.Random; import csci…