Web development and programming
191828 questions • Page 121 / 3837
/* In-class #5: Write a C++ program that converts between money value and its co
/* In-class #5: Write a C++ program that converts between money value and its coin equivalence. If coin to money is desired, it asks for coin value and converts them to money valu…
/* Irwin Blanc mtg2 shirts.cpp */ #include #include #include
/* Irwin Blanc mtg2 shirts.cpp */ #include <iostream> #include <string> #include <iomanip> using namespace std; enum Shirtypes{ Long,Long_x,Short,Silk,Cotton,Woo…
/* Lab 36 In this program the user will enter the following information for a po
/* Lab 36 In this program the user will enter the following information for a portfolio of stocks (up to the maximum number of stocks indicated by MAX_STOCKS): Stock Symbol Numb…
/* Lab 36 In this program the user will enter the following information for a po
/* Lab 36 In this program the user will enter the following information for a portfolio of stocks (up to the maximum number of stocks indicated by MAX_STOCKS): Stock Symbol Numb…
/* Lab Exercise 11.3 EmployeesThree.cpp Passing an array element to a function P
/* Lab Exercise 11.3 EmployeesThree.cpp Passing an array element to a function Passing an array to a function Complete this exercise in 5 steps as follows: STE…
/* Lab5.java Arrays, File input and methods Read the comments and insert your co
/* Lab5.java Arrays, File input and methods Read the comments and insert your code where indicated. Do not add/modify any output statements */ import java.io.*; import java.util.*…
/* LinkList * Anderson, Franceschi */ /** * this class is a concrete implementat
/* LinkList * Anderson, Franceschi */ /** * this class is a concrete implementation of the AbstractList. * * properties of this implementation are such that: - the list is singly …
/* LinkList * Anderson, Franceschi */ /** * this class is a concrete implementat
/* LinkList * Anderson, Franceschi */ /** * this class is a concrete implementation of the AbstractList. * * properties of this implementation are such that: - the list is singly …
/* Linked List */ #include #include #include #inclu
/* Linked List */ #include <iostream> #include <memory> #include <string> #include <sstream> using namespace std; string convertIntToString(int); class Ano…
/* Linked List Experiment */ #include #include struct tax_node { char form; // t
/* Linked List Experiment */ #include #include struct tax_node { char form; // tax form letter int version; // tax form number tax_node *next; // pointer to ne…
/* Method that doubles the value of all elements in a float array * */ public cl
/* Method that doubles the value of all elements in a float array * */ public class DoubleArrayElements { public static void main( String [] args ) { float [] array = { 0.0f, …
/* Method that returns the percentage of array elements 90 or above * */ import
/* Method that returns the percentage of array elements 90 or above * */ import java.text.DecimalFormat; public class ArrayElements90OrMore { public static void main( String [] ar…
/* Method that returns the percentage of array elements having the value true *
/* Method that returns the percentage of array elements having the value true * */ import java.text.DecimalFormat; public class PercentTrue { public static void main( String [] ar…
/* Name: ** Practical Exam 1 ** CS 281 - Intermediate C++ ** Spring 2017 ** Inst
/* Name: ** Practical Exam 1 ** CS 281 - Intermediate C++ ** Spring 2017 ** Instructor: ** ** There are logical and run time errors in the code, as well as compilation errors. ** …
/* Name: Patrick Potts Class: CSCI 1411-001 Description: Movie Listing Lab Partn
/* Name: Patrick Potts Class: CSCI 1411-001 Description: Movie Listing Lab Partner: Gwen Status: Sucessfully compiled and run on csegrid */ #include <iostream> #include <…
/* Output Enter your street address: 127 Main Street Enter your city: Corona Ent
/* Output Enter your street address: 127 Main Street Enter your city: Corona Enter your state (2 digits): CA Enter your 5-digit zip code: 92123 Your full address is 127 Main Stree…
/* PROBLEM 2 * add one line of C code to the \"doit2\"function * so that problem
/* PROBLEM 2 * add one line of C code to the "doit2"function * so that problem2 prints 0 for x * do not make any changes to the problem2function */ void doit2(void) { intoverflowm…
/* Part 1: declare an integer variable named season whose valid values are 1, 2,
/* Part 1: declare an integer variable named season whose valid values are 1, 2, 3 and 4 which represent the seasons winter, spring, summer and fall respectively, and any other va…
/* Pause class * Anderson, Franceschi */ public class Pause { /** wait method *
/* Pause class * Anderson, Franceschi */ public class Pause { /** wait method * @param seconds number of seconds to pause */ public static void wait( double seconds ) { try { Thre…
/* Please Need help in C programing not Java!!! Instructions: You are to create
/* Please Need help in C programing not Java!!! Instructions: You are to create a program that tracks student grades. When the program launches the user should be presented with t…
/* Please fill out the missing code of the following program so that it correctl
/* Please fill out the missing code of the following program so that it correctly stimulate cache coherence mechanisms.*/ import java.lang.*; import java.io.*; import java.util.*;…
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import j
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import java.awt.*; import java.awt.event.*; public class NestedLayoutPractice extends JFrame { private Cont…
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import j
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import java.awt.*; import java.awt.event.*; public class NestedLayoutPractice extends JFrame { private Cont…
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import j
/* Practice using layouts Anderson, Franceschi */ import javax.swing.*; import java.awt.*; import java.awt.event.*; public class NestedLayoutPractice extends JFrame { private Cont…
/* Problem description: The text file DJI.txt contains the information of a stoc
/* Problem description: The text file DJI.txt contains the information of a stock market index -- Dow Jones Industrial Average Index (DJI for short) -- for a continuous time …
/* Problem: Write a prolog program which solves the following logic problem: Fou
/* Problem: Write a prolog program which solves the following logic problem: Four generations of a Tennessee family have been asked to be guest panelists on a wildly-popular Idol …
/* Program to calculate the final grade */ #include int main() { int l
/* Program to calculate the final grade */ #include <stdio.h> int main() { int lab1, lab2, lab3, lab4, lab5; int quiz1, quiz2, quiz3, quiz4; int project1, project2, project3…
/* Program: Employeeclass.cpp Author: Corry Dawkins Course Section: CS220 Date:
/* Program: Employeeclass.cpp Author: Corry Dawkins Course Section: CS220 Date: 4/3/16 Purpose: This program ceates an Employee class. Items to include as data members are employe…
/* Purpose: This program uses ReadData class toread data from a text file to ini
/* 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 obj…
/* Q1. As an administrator of your SQL Server, write a DDL statement to create a
/* Q1. As an administrator of your SQL Server, write a DDL statement to create a new SQL Server login called 'shark' with a password 'Mid-Atlantic'. Do not enforce the Windows pas…
/* Q10. In Q5, you have granted the \'assistant\' user a permission of CREATE TA
/* Q10. In Q5, you have granted the 'assistant' user a permission of CREATE TABLE in the Clearwater database and also allowed this user to grant the same permission to other users…
/* Q3. Assuming a user is already connected to a SQL Server using a login named
/* Q3. Assuming a user is already connected to a SQL Server using a login named 'Anna', what statement does this user need to execute in order to switch the execution context from…
/* Q9. Assuming you are currently working on a query editing page or session of
/* Q9. Assuming you are currently working on a query editing page or session of Clearwater database in your SQL Server using your own login, what statement do you need to execute …
/* Query 3. Write one DDL statement to add a new table Project into exam1. It co
/* Query 3. Write one DDL statement to add a new table Project into exam1. It contains the following three columns: -ProjNum of char(3) type, which is the primary key of Project. …
/* Query 4. Find products that satisfy BOTH conditions below: (a) Its unit price
/* Query 4. Find products that satisfy BOTH conditions below: (a) Its unit price must NOT below $22. (b) Its category ID is 4 or 7 or 8. If its category ID is 1 or 3, then it must…
/* Query 4. Write one DML statement to add data of the following six projects in
/* Query 4. Write one DML statement to add data of the following six projects into Project table. ProjNum Pname Budget ------- ----- -------- p1 UH28K 1890.…
/* Query 4. Write one DML statement to add data of the following six projects in
/* Query 4. Write one DML statement to add data of the following six projects into Project table. ProjNum Pname Budget ------- ----- -------- p1 UH28K 1890.…
/* READ: TO DO: Make the void aesrand function work. the biggest problem right n
/* READ: TO DO: Make the void aesrand function work. the biggest problem right now is the counter/IV. we have to add it together then put the result into the for loop. This code i…
/* Remove all parentheses that do not change the output. Example: Replace int x
/* Remove all parentheses that do not change the output. Example: Replace int x = (1 +4); with int x = 1 + 4; */ public class Math130HW2 { public static void main(String[] args) {…
/* Roots of an Equation -Newton-Raphson Method*/ #include #include
/* Roots of an Equation -Newton-Raphson Method*/ #include <stdio.h> #include <math.h> #define EPS0 1.0e-12 double f(double x); double fp(double x); double newton_raphs…
/* SList.java */ /** * The SList class is a singly-linked implementation of the
/* SList.java */ /** * The SList class is a singly-linked implementation of the linked list * abstraction. SLists are mutable data structures, which can grow at either * end. * * …
/* SavingsAccount class Anderson, Franceschi */ import java.text.NumberFormat; /
/* SavingsAccount class Anderson, Franceschi */ import java.text.NumberFormat; // 1. ***** indicate that SavingsAccount inherits // from BankAccount public class Savin…
/* Slot Machine Program by Joe Tchamitchian*/ #include #include #include using n
/* Slot Machine Program by Joe Tchamitchian*/ #include #include #include using namespace std; int main() { int x,a, b, c, token=4; srand(time(0)); cout<<" ******************…
/* Slot Machine Program by Joe Tchamitchian*/ I am getting an error saying that
/* Slot Machine Program by Joe Tchamitchian*/ I am getting an error saying that the function getNumber may not be initialized.. #include #include #include #include #include using …
/* Slot Machine Program by Joe Tchamitchian*/ It says that function getNumber ma
/* Slot Machine Program by Joe Tchamitchian*/ It says that function getNumber may not be initialized... #include #include #include #include #include using namespace std; int main(…
/* So this is my program, I cannot make all the functions in it work. Can anyone
/* So this is my program, I cannot make all the functions in it work. Can anyone copy paste it and see what i need to do to make them work? */ package AlienTiles; import javafx.ap…
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.s
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.swing.JFrame; import java.awt.Color; public class StackArray { public static final int CAPACITY = 10…
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.s
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.swing.JFrame; import java.awt.Color; public class StackArray { public static final int CAPACITY = 10…
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.s
/* StackArray * Anderson, Franceschi */ import java.awt.Graphics; import javax.swing.JFrame; import java.awt.Color; public class StackArray { public static final int CAPACITY = 10…
/* Stormtrooper Java Database Created by Gene Locklear March 8, 2018 */ SELECT \
/* Stormtrooper Java Database Created by Gene Locklear March 8, 2018 */ SELECT 'This is the starting script for our master database' AS 'Professors Locklear Message'; SELECT SLEEP…
Subject
Web development and programming
Use Browse or pick another subject.