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 133 / 3837

// This program uses hours, pay rate, state tax and fed tax to determine gross /
// This program uses hours, pay rate, state tax and fed tax to determine gross // and net pay. #include <fstream> #include <iostream> #include <iomanip> using na…
// This program uses two arrays to record the names of 6 types of pizza // and t
// This program uses two arrays to record the names of 6 types of pizza // and the sales numbers for each of these types // The program then finds the best and the worst selling p…
// This program will define 3 strings; It will make use of various string functi
// This program will define 3 strings; It will make use of various string functions and the concept of namespace. #include <iostream.h>// #include <stdlib.h> #include …
// This program will input an undetermined number of student names // and a numb
// This program will input an undetermined number of student names // and a number of grades for each student. The number of grades is // given by the user. The grades are stored …
// This program will input an undetermined number of student names // and a numb
// This program will input an undetermined number of student names // and a number of grades for each student. The number of grades is // given by the user. The grades are stored …
// This program will input and store meteorological data into an array. // Devel
// This program will input and store meteorological data into an array. // Developer: Faculty CMIS102 // Date: Jan 31, XXXX #define NUMMONTHS 12 #define NUMYEARS 5 #include <st…
// This program will read a positive number and // then computes and prints the
// This program will read a positive number and // then computes and prints the logarithm of the value to the base 2 //preprocessor directives. #define frz system("pause") #includ…
// This pseudocode segment is intended to compute the cost per // day for a vaca
// This pseudocode segment is intended to compute the cost per // day for a vacation. The user enters a value for total dollars // available to spend and can continue to enter new…
// This pseudocode segment is intended to compute the cost per // day for a vaca
// This pseudocode segment is intended to compute the cost per // day for a vacation. The user enters a value for total dollars // available to spend and can continue to enter new…
// This tutorial practices the use of structures to // maintain and record infor
// This tutorial practices the use of structures to // maintain and record information.  The simulated // machine holds onto both the drinks it sells and // the change it has avai…
// Use a nested for loopto draw the upside down triangle with base size. // the
// Use a nested for loopto draw the upside down triangle with base size. // the outer loop will control each line and the number ofleading spaces for (____________________________…
// UserMenu_Solution.cpp : This code contains five errors before it will work as
// UserMenu_Solution.cpp : This code contains five errors before it will work as desired. Find those errors, // document a description of the errors and their fix, and fix them. T…
// Uses DisplayWebAddress method three times using System; public class DebugSev
// Uses DisplayWebAddress method three times using System; public class DebugSeven1 { public static void Main() { DisplayWebAddress(); Console.WriteLine("Shop at Shopper's World")…
// Variables Numeric shoeID // ID# (1000 to 9999) Numeric shoeSize // shoe size
// Variables Numeric shoeID           // ID# (1000 to 9999) Numeric shoeSize         // shoe size String firstName         // first name of renter String lastName          // last…
// Variables Numeric shoeID // ID# (1000 to 9999) Numeric shoeSize // shoe size
// Variables Numeric shoeID           // ID# (1000 to 9999) Numeric shoeSize         // shoe size String firstName         // first name of renter String lastName          // last…
// WOLD SERIES FROM 1903 TO 2012 // THIS IS MY OUTPUT LOOK LIKE /*Please enter y
// WOLD SERIES FROM 1903 TO 2012 // THIS IS MY OUTPUT LOOK LIKE /*Please enter your team name! Minnesota Twins The Minnesota Twins have won the World Series 0 time(s). */ #include…
// Warning: this program uses gets(), which is unsafe. // I WANT TO REPLACE GETS
// Warning: this program uses gets(), which is unsafe. // I WANT TO REPLACE GETS BECAUSE IT IS UNSAFE // I NEED HELP PLEASE #include<iostream> using namespace std; //searche…
// Word Jumble // The classic word jumble game where the player can ask for a hi
// Word Jumble // The classic word jumble game where the player can ask for a hint #include #include #include #include using namespace std; int main() { enum fields {WORD, HINT, N…
// Write a function that multiplies each element in the array \"myArray\" // by
// Write a function that multiplies each element in the array "myArray" // by the variable "multiplyMe". #include <iostream> using namespace std; // TODO - Write your functi…
// Write a function that will delete the all nodes in a sorted linked list // th
// Write a function that will delete the all nodes in a sorted linked list // that fall between two given values. // // /* BEFORE function call - a is 10 20 30 40 50 60 70 80 90 n…
// Write the function definitions for each of the function members of the Color
// Write the function definitions for each of the function members of the Color class. //------------------------------------------------------------------------------------------…
// Write the method determineTax. The method is sent the amount of the // purcha
// Write the method determineTax. The method is sent the amount of the // purchase and the tax rate. It returns a double value that is the // amount of the tax. // Note that the m…
// You are given a partially completed program that creates a roster of students
// You are given a partially completed program that creates a roster of students for a class. // Each student has the corresponding information: grade in the class and education l…
// You are provided with the Student class, which consists of two private variab
// You are provided with the Student class, which consists of two private variables- name, age. It also contains a constructor, and two methods i.e. toString // which will return …
// Your full name here #include #include #include
// Your full name here #include <iostream> #include <fstream> #include <string> #include <math.h>//used to define pi # define PI 3.1415 using namespace std…
// Your name goes here // // add a description of this program here. #include
// Your name goes here // // add a description of this program here. #include <iostream> #include <cmath> using namespace std; int main() { double a,b,c; // coefficein…
// Your name goes here // // add a description of this program here. #include
// Your name goes here // // add a description of this program here. #include <iostream> #include <cmath> using namespace std; int main() { double a, b, c; // coeffice…
// a function to compute the position of the first occurrence of NUM in the list
// a function to compute the position of the first occurrence of NUM in the list, // where NUM is passed as a parameter // and positions are counted as an offset from the beginnin…
// a function to compute the size of the list using recursion // empty list has
// a function to compute the size of the list using recursion    // empty list has size 0    // You will want to create a helper function to do the recursion    public int sizeRec…
// a short code to illustrate truncation error and round-off error // Chunlei Li
// a short code to illustrate truncation error and round-off error // Chunlei Liang 1-20-2013, MAE 2117 #include <stdlib.h> #include <stdio.h> #include <math.h> …
// add codes public class Computer { private Memory ram; private PC pc; private
// add codes public class Computer {    private Memory ram;    private PC pc;    private IR ir;    private ACC acc; public Computer() {        ram = new Memory(100);        pc = n…
// an abstract class to represent a one-variable mathematical function // TODO:
// an abstract class to represent a one-variable mathematical function // TODO: complete the methods integrate() and drawIntegral() below public abstract class Function { /* * TOD…
// applicable template code // FILE: main.cpp Solution new->next =&word; What is
// applicable template code // FILE: main.cpp
// as you can see in the method getCurrency l have threestrings respectively t,s
// as you can see in the method getCurrency l have threestrings respectively t,s and a. I would like to know how can lreturn them in the main method and print them out after lhave…
// c3090 pass4 key Parallelize the matrix code given #include #includ
// c3090 pass4 key Parallelize the matrix code given #include <malloc.h> #include <stdio.h> #include <iostream> #include <omp.h> using namespace std; #defi…
// change the c code to c++ # include # include # define a
// change the c code to c++ # include <stdio.h> # include <pthread.h> # define arrSize 10 struct StructMaxMin { int iMax; int iMin; }; int arr[arrSize]; void *thread_s…
// change the c code to c++ # include # include # define a
// change the c code to c++ # include <stdio.h> # include <pthread.h> # define arrSize 10 struct StructMaxMin { int iMax; int iMin; }; int arr[arrSize]; void *thread_s…
// chapter 11, Java programming, Joyce Farrell, 8th ed // output // do simple an
// chapter 11, Java programming, Joyce Farrell, 8th ed // output // do simple and apply from chapter 11 // chapter 11, Java programming, Joyce Farrell, 8th ed // output // do simp…
// class BookGenre package library.service.classes; public enum BookGenre {GENRE
// class BookGenre package library.service.classes; public enum BookGenre {GENRE_HISTORY,GENRE_SCIENCE,GENRE_ENGINEERING,GENRE_LITERATURE}; // class BookRecord package library.ser…
// class BookGenre package library.service.classes; public enum BookGenre {GENRE
// class BookGenre package library.service.classes; public enum BookGenre {GENRE_HISTORY,GENRE_SCIENCE,GENRE_ENGINEERING,GENRE_LITERATURE}; // class BookRecord package library.ser…
// class used to store a string and its priority. public class PrioItem implemen
// class used to store a string and its priority. public class PrioItem implements Comparable<PrioItem>{ private String item; private int priority; //Constructor public Prio…
// code begin. #include // Lab 3 example int main() { /* Declare varia
// code begin. #include <stdio.h> // Lab 3 example int main() { /* Declare variables */ char firstnames [4][15]; //Changed from 3 --> 4 char lastnames [4][20]; //Changed …
// compile and run this infix class using the Stack class, Tokenizer Class, and
// compile and run this infix class using the Stack class, Tokenizer Class, and Queue Class. Debugged the three issues that I found when I run the infix class and fixed please imp…
// data declarations (inputs, outputs, and constants) // data initializations (f
// data declarations (inputs, outputs, and constants) // data initializations (for any KNOWN values) I/ calculations I/ output prints (possibly interspersed with calculations) Sam…
// data member for Citizen Name 1: Name //data member for Citizen Nationality 2:
// data member for Citizen Name 1: Name //data member for Citizen Nationality 2: Nationality Your Program should define three constructors for the classCitizen 1: a constructor wi…
// done. public interface SortableObject { public abstract double getSortValue()
// done. public interface SortableObject { public abstract double getSortValue(); } //TODO Modify to operate over arrays of SortableObjects public interface Sorter { void sort(int…
// each time you restart the game the password must change. Chapter 4, PP 3 Java
// each time you restart the game the password must change. Chapter 4, PP 3 Java Project Name: IC11_GuessingGame Develop a Java console application for a simple game of guessing a…
// enumerate the different combinations // for select k objects from the set of
// enumerate the different combinations // for select k objects from the set of objects given in list L public static List<List<String>> comb(List<String> L, int…
// even.cpp // Determine whether inputs are odd or even. #include usi
// even.cpp // Determine whether inputs are odd or even. #include <iostream> using namespace std; /* Write a function prototype for function even, which takes an int paramet…
// file : recursive.cpp // author: ... // desc. : this file contains the entry p
// file : recursive.cpp // author: ... // desc. : this file contains the entry point (and helper functions) for // the recursive max subarray problem/solution. #include using name…