Web development and programming
191828 questions • Page 79 / 3837
* Create a Matrix class. Note that the first letter is in upper case. * This Mat
* Create a Matrix class. Note that the first letter is in upper case. * This Matrix class is to have three private data members that store the number of rows, number of columns, a…
* Database Systems, Coronel/Morris */ /* Type of SQL : MySQL */ Drop schema if e
* Database Systems, Coronel/Morris */ /* Type of SQL : MySQL */ Drop schema if exists sales; Create schema Sales; Use sales; DROP TABLE IF EXISTS vendor; CREATE TABLE VENDOR ( `V_…
* Describe functional dependencies and normalization * Denormalization, if any (
* Describe functional dependencies and normalization * Denormalization, if any (which ones and why) and The normal form (3NF, BCNF, etc) of tables/relationship. Justify the reason…
* Description: Definition of SporkProfile for storing profile data for a restaua
* Description: Definition of SporkProfile for storing profile data for a restauarant/business * declaration of functions for reading, processing, and writing Spork profiles. * */ …
* Description: Function definitions for reading, processing, and writing Spork p
* Description: Function definitions for reading, processing, and writing Spork profiles. * */ /************************************************************************************…
* Exercise 5: Write function isSubArray that takes as input two arrays of charac
*Exercise 5: Write function isSubArray that takes as input two arrays of characters (array1 and array2) and searches for array1 inside array2. The function isSubArray should retur…
* FEW FIXES ONLY * Assume that you are working for hypothetical insurance compan
* FEW FIXES ONLY * Assume that you are working for hypothetical insurance company. This company offers insurance for 4 types of vehicles: cars, trucks, motor cycles and boats. In …
* FEW FIXES ONLY * Assume that you are working for hypothetical insurance compan
* FEW FIXES ONLY * Assume that you are working for hypothetical insurance company. This company offers insurance for 4 types of vehicles: cars, trucks, motor cycles and boats. In …
* Gets whether the given year is a leap year * * @param y The year * @return Whe
* Gets whether the given year is a leap year * * @param y The year * @return Whether y is a leap year */ public static boolean isLeapYear(int year) { if (year % 4 == 0 && …
* Header File */ /**************************************************************
* Header File */ /********************************************************************** cs2123p4.h Purpose: Defines constants: max constants error constants event type constants …
* I NEED THIS CODE TO BE ABLE TO WORK IN JSFIDDLE. I NEED THE HTML ASPECT AND TH
* I NEED THIS CODE TO BE ABLE TO WORK IN JSFIDDLE. I NEED THE HTML ASPECT AND THE JAVASCRIPT ASPECT. HERE IS THE LINK TO JSFIDDLE: jsfiddle.net In Javascript we are going to creat…
* INSTRUCTIONS * ========================= * * Write two functions between the c
* INSTRUCTIONS * ========================= * * Write two functions between the comments * indicated below. * * The first function will take a referenced * pointer to a Node (this …
* INSTRUCTIONS: Write two functions in the space * indicated below. * * printArr
* INSTRUCTIONS: Write two functions in the space * indicated below. * * printArray function: This should take an array of ints * and a count. It should then print out the array of…
* I\'m using Eclipse Objectives: Using for loops, nested for loops and parameter
* I'm using Eclipse Objectives: Using for loops, nested for loops and parameterized methods. a. Write a program using a for loop to calculate how high a ball bounces on each of it…
* It is a C++ program. Make sure it can work in visual studio 2015. A Game of Ch
* It is a C++ program. Make sure it can work in visual studio 2015. A Game of Chance One of the most popular games of chance is a dice game known as "craps," which is played in ca…
* Lab Quiz #1 * 1. Correct the errors in the following * 2. Submit the corrected
* Lab Quiz #1 * 1. Correct the errors in the following * 2. Submit the corrected lab-quiz1.cbl program in blackboard 3. Due: Jan xx * 4. Enter your name: identefication division p…
* Least laxity first (LLF) is a real-time scheduling algorithm for periodic task
* Least laxity first (LLF) is a real-time scheduling algorithm for periodic tasks. Slack time, or laxity, is the amount of time between when a task would complete if it started no…
* MIPSSYM* ASSEMBLY LANGUAGE ONLY Write a program to print out a series of numbe
* MIPSSYM* ASSEMBLY LANGUAGE ONLY Write a program to print out a series of numbers. First input a number N for the size of the list. This should not be more than 20. Next, you nee…
* Make Sure your Output file is %100 Correct* 1) Must use COMMAND PROMPT as prog
* Make Sure your Output file is %100 Correct* 1) Must use COMMAND PROMPT as program I/O Example: program.exe<file.in&…
* Make the following changes to the CheckISBN program: a) If the user\'s input i
* Make the following changes to the CheckISBN program: a) If the user's input is not 13 characters long or does notcontain exactly three dashes, have the program prompt the user t…
* N O Ol 4..ul 84%-7:07 AM LTE For each of the following problems, write a funct
* N O Ol 4..ul 84%-7:07 AM LTE For each of the following problems, write a function that solves the problem recursively. No for loops or while loops allowed! You should test each …
* Only using WHILE loops* *no FOR loops!* I need help writing a Pythagorean Trip
* Only using WHILE loops* *no FOR loops!* I need help writing a Pythagorean Triples python 3 algorithm. Can't use *any* FOR loops! Only use while loops. Also, dont use floating po…
* PROBLEM 4: Run runTerribleLoop for one hour. You can stop the program using th
* PROBLEM 4: Run runTerribleLoop for one hour. You can stop the program using the red "stop" square in eclipse. Fill in the OUTPUT line below with the numbers you saw LAST --- edi…
* PROBLEM 5: The implementation of terribleFibonacci is TERRIBLE! Write a more e
* PROBLEM 5: The implementation of terribleFibonacci is TERRIBLE! Write a more efficient version of fibonacci. Do not change runFibonacciLoop or runFibonacciSomeValues. To make fi…
* Please explain your answer ! A new web service decides to use a program called
* Please explain your answer ! A new web service decides to use a program called BinCodes to generate coupon codes for its customers. BinCodes generates 10 digit binary strings as…
* Productivity:Measuring inputs / outputs * Quality:Measuring waste, errors, and
* Productivity:Measuring inputs / outputs * Quality:Measuring waste, errors, and rework Timeliness:Measuring the meeting of deadlines Cycle time:Measuring elapsed time from start …
* Programming Assignment Details You have been asked to write a program to help
* Programming Assignment Details You have been asked to write a program to help a friend choose among schools in Ohio. Your friend has input the data in a file with specific forma…
* Project12.java * * A program that plays simple word guessing game. In this gam
* Project12.java * * A program that plays simple word guessing game. In this game the user provides a list of * words to the program. The program randomly selects one of the words…
* Question: displayCommonWords(paragraphs): this is the function that I am tryin
* Question: displayCommonWords(paragraphs): this is the function that I am trying to make correct, any help will be helpful (Python 2.7). Ruturns a list of all common words that…
* REQUIREMENT #1 Remove any word in wordList that starts with letter In the test
* REQUIREMENT #1 Remove any word in wordList that starts with letter In the tester, make sure to check the printout of the 1ist before and after the call public void dropletterWor…
* Reads a positive (>0) Ant number * @param msg string representing what is bein
* Reads a positive (>0) Ant number * @param msg string representing what is being read. The method will print a message to the user. * @return int number. e public static int r…
* Ref: http://www.gigamonkeys.com/book/ (see chap. 10) * * In the language Lisp,
* Ref: http://www.gigamonkeys.com/book/ (see chap. 10) * * In the language Lisp, each of the four basic arithmetic operators appears * before an arbitrary number of operands, whic…
* Say I have the node class: */ public class GridNode { private GridNode right;
* Say I have the node class: */ public class GridNode { private GridNode right; private int data; …
* Solve the solution with details. A new company, QCTickets, provides software f
* Solve the solution with details. A new company, QCTickets, provides software for applications to ticketing of sports events. Advise QCtickets on the best data structures to empl…
* Suppose an actor can play a lead role in at most 3 movies, and there are 2 act
* Suppose an actor can play a lead role in at most 3 movies, and there are 2 actors: a) what is the minimum number of movies? ______________ b) what is the maximum number of movie…
* Test Information Description Multiple Attempts This lest allows 2 atlempts. Th
* Test Information Description Multiple Attempts This lest allows 2 atlempts. This is atternpt number 2 Force Completion This test can be saved and resumed later TIO Question Comp…
* The method fun will sum all the values except H for the multiples of 5 unless
* The method fun will sum all the values except H for the multiples of 5 unless it is a multiple of 100. public static int fun (int [] mary) ( return 0 public static void main (St…
* The model needs to show forecast profit for the next 4 quarters (Q1, Q2, Q3, Q
* The model needs to show forecast profit for the next 4 quarters (Q1, Q2, Q3, Q4) The first quarter's revenue is $50,000 and the revenue is forecast to grow by 8% per quarter The…
* This Java Program inputs a list of words from a Text file and separates it wit
* This Java Program inputs a list of words from a Text file and separates it with whitespace * It puts each word from the Txt file into an array with a count of how many times it …
* This are the 3 c++ files that have to be implemented, two files are cpp and on
* This are the 3 c++ files that have to be implemented, two files are cpp and one header file/ ------------------------------------------------------------------------------------…
* This class represents a fraction whose numerator and denominator are integers.
* This class represents a fraction whose numerator and denominator are integers. * * Requirements: * Implement interfaces: FractionInterface and Comparable (i.e. compareTo()) * Im…
* This class represents a fraction whose numerator and denominator are integers.
* This class represents a fraction whose numerator and denominator are integers. * * Requirements: * Implement interfaces: FractionInterface and Comparable (i.e. compareTo()) * Im…
* This function computes the area of a series of squares and circles. Specifical
* This function computes the area of a series of squares and circles. Specifically, we consider a series * of squares and circles in which each successive shape is inscribed in th…
* This game is meant for two or more players. In the game, the * players take tu
* This game is meant for two or more players. In the game, the * players take turns flipping a coin. Before the coin is flipped, the * players should guess if the coin will land f…
* This game is meant for two or more players. In the game, the * players take tu
* This game is meant for two or more players. In the game, the * players take turns flipping a coin. Before the coin is flipped, the * players should guess if the coin will land f…
* This is for CS 101 Java class. I CAN ONLY USE \"for\" and “do-while” loops for
* This is for CS 101 Java class. I CAN ONLY USE "for" and “do-while” loops for this lab assignment. I CANNOT USE “while" or any other repetition method. Also I CANNOT USE arrays o…
* This is for CS 101 Java class. I CAN ONLY USE \"for\" and “do-while” loops for
* This is for CS 101 Java class. I CAN ONLY USE "for" and “do-while” loops for this lab assignment. I CANNOT USE “while" or any other repetition method. Also I CANNOT USE arrays o…
* This is for CS 101 Java class. I CANNOT USE arrays. * b. Create a new project
* This is for CS 101 Java class. I CANNOT USE arrays. * b. Create a new project Lab06b. Write a Java program that inputs a string containing only the letters (a, b, c, d). The pro…
* This is for CS 101 Java class. I can only use \"for\" and “do-while” loops for
* This is for CS 101 Java class. I can only use "for" and “do-while” loops for this lab assignment. I cannot use “while" or any other repetition method. * Create a new project Lab…
* This is for CS 101 Java class. I can only use \"for\" and “do-while” loops for
* This is for CS 101 Java class. I can only use "for" and “do-while” loops for this lab assignment. I cannot use “while" or any other repetition method. Also I cannot use arrays o…
Subject
Web development and programming
Use Browse or pick another subject.