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

//This is my login class file rt java.awt.BorderLayout; public class Login { pub
//This is my login class file rt java.awt.BorderLayout; public class Login {    public static void main(String[] args)    {       LoginGUI frame = new LoginGUI();       frame.setT…
//This is my login class file rt java.awt.BorderLayout; public class Login { pub
//This is my login class file rt java.awt.BorderLayout; public class Login {    public static void main(String[] args)    {       LoginGUI frame = new LoginGUI();       frame.setT…
//This is perfectly working code. in this code whenever the input requirement( l
//This is perfectly working code. in this code whenever the input requirement( lenght not less than 6 and not more than 10 character with at least one ditgit and letter) // does n…
//This is the implementation file for the methods in the dataStructure //class.
//This is the implementation file for the methods in the dataStructure //class. #include "2170_recursiveLista.h" #include <iostream> #include <stdlib.h> using namespac…
//This is the main.cpp file #include #include #include
//This is the main.cpp file #include <ctime> #include <sstream> #include <iostream> #include <string> #include <cstdlib> #include "queue.h" using nam…
//This program finds brackets in the input file and puts corresponding 1, 2, 3\'
//This program finds brackets in the input file and puts corresponding 1, 2, 3's next to them in the output.   import java.util.*; import java.io.*; public class FileIn { public s…
//This program is going to show the sum, average and print outputs in order. #in
//This program is going to show the sum, average and print outputs in order. #include <iostream> #include <string> using namespace std; int main() {    int i;    int A…
//This program is going to show the sum, average and print outputs in order. #in
//This program is going to show the sum, average and print outputs in order. #include <iostream> #include <string> using namespace std; int main() {    int i;    int A…
//This program is going to show the sum, average and print outputs in order. #in
//This program is going to show the sum, average and print outputs in order. #include <iostream> #include <string> using namespace std; int main() {    int i;    int A…
//This program reads two strings and uses a function to determine whether or not
//This program reads two strings and uses a function to determine whether or not the two strings are the same if you ignore case it does not matter if a given character in the st …
//This program shows how to calculate weekly payment with overtime hours while u
//This program shows how to calculate weekly payment with overtime hours while using functions. #include <iostream> #include <iomanip> #include <string> #include…
//This program uses a two-dimensional array to store the highest and lowest temp
//This program uses a two-dimensional array to store the highest and lowest temperatures for each month. //The program will output the average high, average low, and the highest a…
//This program will read in the quantity of a particular item and its price. //
//This program will read in the quantity of a particular item and its price. // it will then print out the total price. The input will come from a data file // and the ouput will …
//This was code from a previous exercise - let me know if you need the question
//This was code from a previous exercise - let me know if you need the question for this code. #include<iostream> #include<fstream> #include<vector> #include<…
//This was week ones code import javax.swing.*; import java.awt.*; import java.a
//This was week ones code import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Assignment_02Source extends JFrame { private JButton buttonPrev = new JBut…
//Tiffany Robins //CSCI 152 //February 1,2012 //Program 1 Hello World #include
//Tiffany Robins //CSCI 152 //February 1,2012 //Program 1 Hello World #include <iostream> using namespace std; int main ( ) { cout << "Hello World!" << endl <…
//Variables string original; double remove_1; double remove_2; double remove_3;
//Variables string original; double remove_1; double remove_2; double remove_3; double remove_4; string productsymbol; string word_1; string word_2; string word_3; string word_4; …
//Vehicle.h #pragma once #ifndef VEHICLE_H #define VEHICLE_H #include
//Vehicle.h #pragma once #ifndef VEHICLE_H #define VEHICLE_H #include<iostream> #include "Person.h" #include<string> using namespace std; class Vehicle { public:    //…
//Vocab1.xml
//Vocab1.xml <?xml version="1.0" encoding="UTF-8"?> <xsi:noNamespaceSchemaLocation="vocab1.xsd"> <Country>Canada    <City>Toronto        <Attractions&gt…
//Would someone please write me a program for this assignment. I need it in a co
//Would someone please write me a program for this assignment. I need it in a couple hours. I really really need help. Thank you! Program 19 "Line Class" Implement a Line class th…
//Write a method named diceSum that prompts the user for a desired sum, then rep
//Write a method named diceSum that prompts the user for a desired sum, then repeatedly rolls two six-sided dice until their sum is the desired sum. // not sum why it keeps repeat…
//Write a program that prompts the user to input a string. Theprogram then uses
//Write a program that prompts the user to input a string. Theprogram then uses the function substr to removeall the vowels from the string. For example, if str ="There", thenafte…
//Write a recursive function, vowels, that returns the number of vowels in a str
//Write a recursive function, vowels, that returns the number of vowels in a string. Also write a program to test your function. #include <iostream> #include <string> …
//Write a while clause that tells the computer to stop processing the loop instr
//Write a while clause that tells the computer to stop processing the loop instruction when the end of the file has been reached. The file is associated with the inFile object. Th…
//Write an application that accepts a user\'s password from an input dialog. //I
//Write an application that accepts a user's password from an input dialog. //If the entered password is less than six characters, more than 10 characters, or does not contain at …
//Write an application that accepts a user\'s password from an input dialog. //I
//Write an application that accepts a user's password from an input dialog. //If the entered password is less than six characters, more than 10 characters, or does not contain at …
//Write an application that accepts a user\'s password from an input dialog. //I
//Write an application that accepts a user's password from an input dialog. //If the entered password is less than six characters, more than 10 characters, or does not contain at …
//Write an application that accepts a user\'s password from an input dialog. //I
//Write an application that accepts a user's password from an input dialog. //If the entered password is less than six characters, more than 10 characters, or does not contain at …
//Write an application that accepts a user\'s password from an input dialog. //I
//Write an application that accepts a user's password from an input dialog. //If the entered password is less than six characters, more than 10 characters, or does not contain at …
//Write an equals method and compareTo method as described public class Name imp
//Write an equals method and compareTo method as described public class Name implements Comparable<Name> {    private String first; // First name    private String last; // …
//Write functions sum and printEvenIndex //Write function title of fun, change,
//Write functions sum and printEvenIndex //Write function title of fun, change, swapIt. #include <iostream> using namespace std; int fun(int a[][2], int b[], int c); void ch…
//You should add code to the NavigateMaze command to make the robot go from the
//You should add code to the NavigateMaze command to make the robot go from the starting point to the end point! 1 import becker.robots.*; 2 3 class MazeBot extends RobotSE 4 { 5 …
//\"It should display2,4,8,8,12,34,56,56,56,56,56,62,70,89 But it displayseveryt
//"It should display2,4,8,8,12,34,56,56,56,56,56,62,70,89 But it displayseverything, except it turns the 89 into a 0. What is wrong with mycode? #include<iostream> using nam…
//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//\\\\//
//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\ // Program: Lab 02 // Author: // Date: // Course: CSCI/CMPE 2380 // Description: This program ... /* Output should loo…
//add code function to print the shortest path at the end import java.io.*; impo
//add code function to print the shortest path at the end import java.io.*; import java.util.*; class Node{ private int data; private Node nextNodePtr; public Node(){} public void…
//asked how to do this 2 days ago and no response... Need to know how for a test
//asked how to do this 2 days ago and no response... Need to know how for a test tommorow. Thanks Write an error-free Java program to do the following things. This program approxi…
//at the end of the program, the word \'response is shown error. could you help
//at the end of the program, the word 'response is shown error. could you help me what is the problem. #include <iostream> #include <fstream> #include <stdlib.h>…
//browser_history.h #ifndef BROWSERHISTORY_H #define BROWSERHISTORY_H #include
//browser_history.h #ifndef BROWSERHISTORY_H #define BROWSERHISTORY_H #include <string> #include <stack> using namespace std; class BrowserHistory {    public:        …
//c program modify insert_edge() function so that it can keep the link list sort
//c program modify insert_edge() function so that it can keep the link list sorted w.r.t. neighbor IDs. implement graph_copy() to create a copy of the given graph. User will call …
//c++ program // the last two files are just to test the program. // files numbe
//c++ program // the last two files are just to test the program. // files number 2 and 3 just to help with the program write a program that reads in the family data for the Marti…
//c++ program // the last two files are just to test the program. // files numbe
//c++ program // the last two files are just to test the program. // files number 2 and 3 just to help with the program write a program that reads in the family data for the Marti…
//calculations for quadrant if (xp == 0 && yp ==0) { cout
  //calculations for quadrant        if (xp == 0 && yp ==0)    { cout << " Point P lies on the origin";    }    else if (xp >= 0 && yp>= 0) { cout <…
//card3.txt 11 6 H 3 S 4 S 7 S 5 S 9 S T S q s k s a H 2 H 3 H 5 H 2 C 5 S 8 H 9
//card3.txt 11 6 H 3 S 4 S 7 S 5 S 9 S T S q s k s a H 2 H 3 H 5 H 2 C 5 S 8 H 9 H T H j h q h k h k D 2 D 3 D 4 D 5 D 6 D 6 S 6 c 5 s q d j d q C q S 5 C 6 C 8 C 9 C T C j c 2 c …
//ccc_empl.cpp //implementation file #include \"ccc_empl.h\" Employee::Employee(
//ccc_empl.cpp //implementation file #include "ccc_empl.h" Employee::Employee() { salary = 0; } Employee::Employee(string employee_name, double initial_salary) { name = employee_n…
//chapter 9;Joyce Farrell;8th ed;Java programming //output //simple code Create
//chapter 9;Joyce Farrell;8th ed;Java programming //output //simple code Create a class name Majors that includes an enumeration forl the six majors offered by a college as follow…
//class Clock // I need help to add the two clock times together and subtract it
//class Clock // I need help to add the two clock times together and subtract it I am having problems with it can someone please help me i posted another problem just like this bu…
//class CsusStudent does not need to be implemented. Only class LinkedList needs
//class CsusStudent does not need to be implemented. Only class LinkedList needs to be filled in based on the psuedocode given in the comments. public class CsusStudent { // class…
//class to represent one node in a list class ListNode { //package access mem
//class to represent one node in a list class ListNode<T> { //package access members; List can access these directly T data; ListNode<T> nextNode; //constructor create…
//client.cpp #include #include \"maxHeap.h\" using namespace std; int
//client.cpp #include <iostream> #include "maxHeap.h" using namespace std; int main() { MaxHeap h(11); h.insert(3); h.insert(2); h.insert(15); h.insert(5); h.insert(4); h.in…
//client1.cpp #include #include \"trie.h\" using namespace std; int main() { Tri
//client1.cpp #include #include "trie.h" using namespace std; int main() { Trie vocabulary; cout << "Type '0'--quit; '1'--add a word; '2'--search a word; '3'--search prefix:…