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

// Please helps to answer a correct one thanks //Complete the missing source cod
// Please helps to answer a correct one thanks //Complete the missing source code - - - #include <stdlib.h> #include <string.h> #include "myalloc.h" /* Given a dynamic…
// Please read the given Word document for the project description with an illus
// Please read the given Word document for the project description with an illustrartive diagram. // You are given a partially completed program that creates a list of books. // E…
// Please read the question and complete the incomplete code given below, Thanks
// Please read the question and complete the incomplete code given below, Thanks. Consider the two arrays a and b. a: 1 2 3 4 5 b: 3 4 5 1 2 It is possible to transform array a in…
// Please use c++ Game of Tic Tac Toe Use a 2-D char array with 3 rows and 3 col
// Please use c++ Game of Tic Tac Toe Use a 2-D char array with 3 rows and 3 columns as the game board. Each element in the array should be initialized with an asterix (*). The pr…
// Please write your code directly below the corresponding numbers. // #1 var fu
// Please write your code directly below the corresponding numbers. // #1 var fullName = 'Linus Torvalds'; var birthYear = 1969; // #2 var myArray = []; // #3 myArray.push(fullNam…
// Portfolio - Chapter 8 #include using namespace std; class BankAccou
// Portfolio - Chapter 8 #include<iostream> using namespace std; class BankAccount { private: int acctNum; double acctBal; double balance; double annualRate; public: BankAcc…
// Prevents non-numeric data entry // Then prevents division by 0 using System;
// Prevents non-numeric data entry // Then prevents division by 0 using System; using static System.Console; class DebugEleven02 { static void Main() { int num = 0, denom = 0; str…
// PriceList.h #pragma once #include #include #include \"Pr
// PriceList.h #pragma once #include <string> #include <stdexcept> #include "PriceListItem.h" using namespace std; class PriceList { public: void createPriceListFromDa…
// Problem #1: [] // -----------------------------------------------------------
// Problem #1: [] // ------------------------------------------------------------------ // Function: Complete the following program // a) Read (using >>) a character Letter;…
// Problem 3: (5 points) // Swap the strings that are passed as parameters, this
// Problem 3: (5 points) // Swap the strings that are passed as parameters, this function will be used in Problem 4. // If string1 is "hello" and string2 is "goodbye", after calli…
// Program 1 #include int main() { FILE *input; int grades[ 40][ 5],id
// Program 1 #include <stdio.h> int main() {     FILE *input;     int grades[40][5],id[40],n;     int i = 0, j, high[5], low[5], count, sum[5];     double average[5];     in…
// Program Chart2 manipulates a two-dimensional array // variable. #include
// Program Chart2 manipulates a two-dimensional array // variable.                                         #include <iostream> #include <fstream> using namespace std; …
// Program Debugging // Name:YUXUAN HU. // Explain here what the program is atte
// Program Debugging // Name:YUXUAN HU. // Explain here what the program is attempting to do... #include using namespace std; void SortThem(int [], double); void ShowArray(int [],…
// Program Favorit determines the favorite soft drink. #include using
// Program Favorit determines the favorite soft drink. #include <iostream> using namespace std; enum DrinksType {COKE, PEPSI, SPRITE, DR_PEPPER}; void Prompt(); // This func…
// Program Name: ReservationSystem.cpp : Defines the entry point for the console
// Program Name: ReservationSystem.cpp : Defines the entry point for the console application. // Version: 10.11 // Programmer: // Class: CIS054 C/C++ Programming // Date: Nov. 02,…
// Program calls a method that finds and returns // the median value in an array
// Program calls a method that finds and returns // the median value in an array // The median value is the middle value from largest to smallest // If there are an even number of…
// Program deals two Poker \"hands\" import javax.swing.*; import java.awt.*; im
// Program deals two Poker "hands" import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Poker2 extends Jframe { private Card deck[],hand1[],hand2[]; priv…
// Program demonstrates method that can be called // with one, two, or three arg
// Program demonstrates method that can be called // with one, two, or three arguments // Tuition is $80 per credit // Default district code is I. // If student is in-district (co…
// Program displays some facts about a string public class DebugSeven3 { public
// Program displays some facts about a string public class DebugSeven3 { public static void main(String[] args) { String quote = "Honesty is the first chapter in the book of wisdo…
// Program name: MenuItem Class // Purpose: Pseudocode for defining the MenuItem
// Program name: MenuItem Class // Purpose: Pseudocode for defining the MenuItem class // Author: Bijou Jacob // Date last modified: 17-Mar-2014 Class MenuItem String itemName // …
// Program reads in a file of phone numbers without area codes // inserts \"(312
// Program reads in a file of phone numbers without area codes // inserts "(312) " in front of each phone number // and produces an output file with the new complete phone numbers…
// Program takes 5 numbers from a user (from console), stores them into an // ar
// Program takes 5 numbers from a user (from console), stores them into an // array, and then prints them to the screen (on the same line). // Add code to complete this program. Y…
// Program takes 5 numbers from a user (from console), stores them into an // ar
// Program takes 5 numbers from a user (from console), stores them into an // array, and then prints them to the screen (on the same line). // Add code to complete this program. Y…
// Programmer: (put your name here) // Course: COMP220 // Assignment: Two-Dimens
// Programmer: (put your name here) // Course: COMP220 // Assignment: Two-Dimensional Arrays // Description: The program will use a 2D array and a random-number // generation to p…
// Pseudocode PLD Chapter 7 #6a pg. 301 // Start // Declarations // InputFile ma
// Pseudocode PLD Chapter 7 #6a pg. 301 // Start //     Declarations //         InputFile masterFile; //         InputFile transactionFile; //         OutputFile newMasterFile; //…
// Purpose: Counts the number of non-blank lines and non-whitespacecharacters fo
// Purpose: Counts the number of non-blank lines and non-whitespacecharacters found in the input. // Note: A line is non-blank if it has at least one non-whitespacecharacter appea…
// Q1 : add (66% of specifications) // This function is used to insert a new stu
// Q1 : add (66% of specifications) // This function is used to insert a new student into the list. // Your list should be sorted alphabetically by name, so you need to search for…
// QueueLinked.h #include #include using namespace std; #
// QueueLinked.h #include <stdexcept> #include <iostream> using namespace std; #include "Queue.h" template <typename DataType> class QueueLinked : public Queue&l…
// READ BEFORE YOU START: // Please read the given Word document for the project
// READ BEFORE YOU START: // Please read the given Word document for the project description with an illustrartive diagram. // You are given a partially completed program that cre…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a roster of students for a class. // Each student has the corresponding information: grade in…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a roster of students for a class. // Each student has the corresponding information: grade in…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a roster of students for a class. // Each student has the corresponding information: grade in…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a list of students for a school. // Each student has the corresponding information: name, gen…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a list of students for a school. // Each student has the corresponding information: name, gen…
// READ BEFORE YOU START: // You are given a partially completed program that cr
// READ BEFORE YOU START: // You are given a partially completed program that creates a list of pets with their list of checkups. // Each pet has the corresponding information: na…
// Remove an element from the front of the queue which is index // 0. Shift all
// Remove an element from the front of the queue which is index // 0. Shift all existing elements to the left by one index. The new // front of the queue should be at index 0 afte…
// Requires: The maximum size of array a is SIZE x SIZE && SIZE > 0 // Modifies:
// Requires: The maximum size of array a is SIZE x SIZE && SIZE > 0 // Modifies: The array a and n // Effects: Asks for name of a file to read data from // Opens the fi…
// Requires: The maximum size of array a is n && n > 0 // Modifies: The array a
// Requires: The maximum size of array a is n && n > 0 // Modifies: The array a and n // Effects: Asks for name of a file to read data from // Opens the file // Reads d…
// Return a new array with all the 0\'s that are in // data removed. If data con
// Return a new array with all the 0's that are in          // data removed. If data contains 0, 3, 0, 0, 5, 9          // then an array containing 3, 5, 9 is returned.          p…
// SUM the 10 numbers starting with a number read in // start, input / read star
// SUM the 10 numbers starting with a number read in // start, input / read starting value   store   NextNum load ten / initialize counter   store count loop, load count subt one …
// Sample program to illustrate a doubly-linked list #include using n
// Sample program to illustrate a doubly-linked list #include <iostream> using namespace std; struct Node {   Node* pPrev;   int data;   Node* pNext; };   // don't forget th…
// Selection Sort Function for Descending Order } } } Please rewrite the about f
// Selection Sort Function for Descending Order } } } Please rewrite the about function to template function and put the values in ascending order (the code above is for descendin…
// Shell Sort // I want to use three different types of loops here #include
// Shell Sort // I want to use three different types of loops here #include <iostream> #include <ctime> #include <cstdlib> using namespace std; // Functions prot…
// Sort an array A of 0’s and 1’s so the 0’s come before the 1’s // using swappi
// Sort an array A of 0’s and 1’s so the 0’s come before the 1’s // using swapping. The size of the array is n. int bitsort(int *A, int n) { int i=0; int j=n-1; while( i < j ) …
// Specification file for the InvItem class #ifndef INVITEM_H #define INVITEM_H
// Specification file for the InvItem class #ifndef INVITEM_H #define INVITEM_H #include <string> using namespace std; class InventoryItem { private: long serialNum; //integ…
// Squash_The_Bugs.cpp : This code contains five errors before it will work as d
// Squash_The_Bugs.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. Try…
// Street is an abstract class // OneWayStreet and TwoWayStreet derive from Stre
// Street is an abstract class // OneWayStreet and TwoWayStreet derive from Street // On a OneWayStreet, it is illegal to make a U turn // On a TwoWayStreet, a U Turn reverses the…
// Student.cpp #include \"student.h\" // StudentList.cpp #include \"student.h\"
// Student.cpp    #include "student.h" // StudentList.cpp    #include "student.h" write two additional functions to the StudentList interface: Add an additional function to the St…
// Student.h #include #include using namespace std; class St
// Student.h #include <stdafx.h> #include <string> using namespace std; class Student { private:    string name;    int IdNumber;    double gpa; public:    // construc…
// SumAndProduct.java This progzam computes sums and producta. // Input: Interac
// SumAndProduct.java This progzam computes sums and producta. // Input: Interactive. // Output: Computed sum and product. import javax. awing.* public class SumAndProduct public …