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

Web development and programming

191828 questions • Page 125 / 3837

/** Given an int array, return an int array with duplicate ints removed if the a
/** Given an int array, return an int array with duplicate ints removed if the array contains duplicate values. removeDuplicateInts({3}) → {3} removeDuplicateInts({1, 2}) → {1…
/** Hare class * inherits from abstract Racer class * Anderson, Franceschi */ im
/** Hare class *   inherits from abstract Racer class *   Anderson, Franceschi */ import java.awt.Graphics; import java.awt.Color; import java.util.Random; public class Hare exten…
/** Hare class * inherits from abstract Racer class * Anderson, Franceschi */ im
/** Hare class *   inherits from abstract Racer class *   Anderson, Franceschi */ import java.awt.Graphics; import java.awt.Color; import java.util.Random; public class Hare exten…
/** Illustration of class design - will talk about documenting a class Activity:
/** Illustration of class design - will talk about documenting a class Activity: extend the main method to: 1. store the data of the Student object s onto file student.data and cl…
/** Java Array This method takes in a reference to an integer array and a positi
/** Java Array This method takes in a reference to an integer array and a positive integer n and it returns a new array whose contents is the contents of the input array rotated t…
/** Java Array This method takes in a reference to an integer array and a positi
/** Java Array This method takes in a reference to an integer array and a positive integer n and it "rotates" the contents of the input array to the right n places. So each elemen…
/** Listing 1-1. @file BagInterface.h */ #ifndef _BAG_INTERFACE #define _BAG_INT
/** Listing 1-1. @file BagInterface.h */ #ifndef _BAG_INTERFACE #define _BAG_INTERFACE #include <vector> using namespace std; template<class ItemType> class BagInterfa…
/** Purpose: This program uses ReadData class toread data from a text file to in
/** Purpose: This program uses ReadData class toread data from a text file to initialize * the number of apartments, employees, carports,garages, etc. * It also initializes the ob…
/** The LinkedList1 class implements a Linked list. */ class LinkedList1 { /** T
/**    The LinkedList1 class implements a Linked list. */ class LinkedList1 {     /**        The Node class stores a list element        and a reference to the next node.     */  …
/** The \'Chaining\' exercise. * * Your assignment is to complete a HashTable th
/** The 'Chaining' exercise. * * Your assignment is to complete a HashTable that uses * chaining. */ public class Chaining { /** A Node from a singly linked list. * * This is used…
/** The business logic of a Parking Pay Station. Responsibilities: 1) Accept pay
/** The business logic of a Parking Pay Station. Responsibilities:            1) Accept payment; 2) Calculate parking time based on payment; 3) Know earning, parking time bought; …
/** This exercise involves implementing several methods. Stubs for each method w
/**    This exercise involves implementing several methods. Stubs for each method    with documentation are given here. It is your task to fill out the code in    each method body…
/** This exercise involves implementing several methods. Stubs for each method w
/**    This exercise involves implementing several methods. Stubs for each method    with documentation are given here. It is your task to fill out the code in    each method body…
/** This program allows the user to play the lottery by entering a ticket to com
/** This program allows the user to play the lottery by entering a ticket to compare to the computer generated winning lottery ticket */ import java.util.Scanner; import java.util…
/** This program allows the user to play the lottery by entering a ticket to com
/** This program allows the user to play the lottery by entering a ticket to compare to the computer generated winning lottery ticket */ import java.util.Scanner; import java.util…
/** read hours worked for each employee on each day of the work week into the tw
/** read hours worked for each employee on each day of the work week into the two -dimensional array hours. ( the method for input is just a stub in this preliminary version.) com…
/** read hours worked for each employee on each day of the work week into the tw
/** read hours worked for each employee on each day of the work week into the two -dimensional array hours. ( the method for input is just a stub in this preliminary version.) com…
/** read hours worked for each employee on each day of the work week into the tw
/** read hours worked for each employee on each day of the work week into the two -dimensional array hours. ( the method for input is just a stub in this preliminary version.) com…
/*** * PROVIDE THE MISSING CODE in the keyPressed() method * in order to move th
/*** * PROVIDE THE MISSING CODE in the keyPressed() method * in order to move the 'snake' around the interface * by pressing: * * --> cursor keys * --> CTRL-Z to 'undo' last…
/*** *Question 6 *DoubleLinked List */ struct DoubleLinkedNode { int data; Doubl
/*** *Question 6 *DoubleLinked List */ struct DoubleLinkedNode { int data; DoubleLinked * prev; DoubleLinked * next; }; //write the code for the following function: bool removeLas…
/*** This class implements a sorted version of the ArrayList class,* where each
/*** This class implements a sorted version of the ArrayList class,* where each element is sorted according to their priority** @author:*/class SortedArrayList{// Instance Variabl…
/******************** *Payton Murray *vigenere cipher *CSC 442 *****************
/******************** *Payton Murray *vigenere cipher *CSC 442 ********************/ #include <iostream> #include <string> using namespace std; // String declarations …
/*********************** * In this file, you need to implement a class called \"
/*********************** * In this file, you need to implement a class called "customDSLL<Item>" abbreviated for custom-DataStructure-Linkedlist, which needs to be implement…
/************************ BST.java ************************** * generic binary s
/************************ BST.java ************************** * generic binary search tree */ public class BST<T extends Comparable<? super T>> { protected BSTNode<…
/************************ BST.java ************************** * generic binary s
/************************ BST.java ************************** * generic binary search tree */ import java.util.*; public class BST <T extends Comparable<T>> implements…
/**************************** * Week 3 lab - exercise 1: * * a simple Stack clas
/**************************** * Week 3 lab - exercise 1: * * a simple Stack class * *****************************/ /** * Class to test the Stack class. */ public class Main { publ…
/***************************** Compiler Directives ****************************/
/***************************** Compiler Directives ****************************/ #include <cstdlib> #include <iostream> #include <cmath> #include <string> …
/******************************** * The class FuelGauge that resembles the FuelG
/******************************** * The class FuelGauge that resembles the FuelGauge * object that contains fuel tank.The tank capacity * is 15 gallons. The increment the fuel* **…
/********************************* * The Odometer class that resembles Odometer
/********************************* * The Odometer class that resembles Odometer * object that contains mileage. Set maximum * mileage is 999999999 ********************************…
/************************************* LinkedList.java *************************
/************************************* LinkedList.java ****************************************/ // Fill in code in ALL commented areas public class LinkedList { // Defined Node c…
/********************************************************** * MedeirosJeniferPro
/********************************************************** * MedeirosJeniferProg1.java * Jenifer Medeiros * * This class is a driver for the JMDissector class. ******************…
/********************************************************** * Program Name : Pra
/********************************************************** * Program Name : Practice Coding - Creating Methods * Author : * Date : April 01, 2010 * Course/Section : CSC111 - 01 *…
/************************************************************* DaleHollowayProg3
/************************************************************* DaleHollowayProg3.java Written by Dale Holloway 6/20/13 This program is a substitution ciper using a shift value and…
/***************************************************************** * This progra
/***************************************************************** * This program finds the edges of light and dark regions of the * input binary bit pattern. * ******************…
/****************************************************************** * Programmer
/****************************************************************** * Programmer: Roland * * Date: April 12, 2012 * * * File name: myMain.cpp * * Description: Demonstrates basic c…
/******************************************************************** // Account
/******************************************************************** // Account.java Author: Lewis/Loftus // // Represents a bank account with basic services such as deposit // a…
/******************************************************************** This is my
/******************************************************************** This is my code implimenting a washer machine in Verilog (code C) This project is suppose to take a payment i…
/********************************************************************** biggestI
/********************************************************************** biggestInt.c This file is a program that finds some information about a system's C data types. It does this…
/************************************************************************** * co
/************************************************************************** * complete .h file (.cpp file is complete) and an output is given * ***********************************…
/*************************************************************************** * F
/*************************************************************************** * File: iplib.c * * * * Desc: general routines for reading and writing ppm files. * * Modified from: C…
/******************************************************************************
/****************************************************************************** genFibonacci() computes the first N Fibonacci numbers and storesthem, in sequence in the array F. P…
/******************************************************************************
/****************************************************************************** reverseArray() reverses the order of the elements in A[], betweenindices Lo and Hi, inclusive. Pre:…
/******************************************************************************
/****************************************************************************** File name : 2170_10_3b.cc Purpose   : This program demonstrates the use of doubly linked lists     …
/******************************************************************************
/****************************************************************************** * Compilation: javac Insertion.java * Execution: java Insertion < input.txt * Dependencies: StdO…
/*******************************************************************************
/************************************************************************************* * This class represents a fraction whose numerator and denominator are integers. * * Require…
/*******************************************************************************
/************************************************************************************* * * This class represents a fraction whose numerator and denominator are integers. * * Requi…
/*******************************************************************************
/************************************************************************************ * *         CSC220 Programming Project#2 * * Specification: * * Taken from Project 7, Chapter…
/*******************************************************************************
/*********************************************************************************************** Part 3: Image Averaging Your task will be to apply averaging to an image. We will …
/*******************************************************************************
/******************************************************************************* * List header files - do NOT use any other header files. Note that stdlib.h is * included in case …
/*******************************************************************************
/************************************************************************************ * * Do not modify this file. * * LispExpressionException * * It is used by LispExpressionEval…