Web development and programming
191828 questions • Page 120 / 3837
/* Airport class Anderson, Franceschi */ public class Airport { // 1. ***** Defi
/* Airport class Anderson, Franceschi */ public class Airport { // 1. ***** Define the instance variables ***** // airportCode is a String // gates is an integer // Part 1 student…
/* Airport class Anderson, Franceschi */ public class Airport { // Instance vari
/* Airport class Anderson, Franceschi */ public class Airport { // Instance variables private String airportCode; private int gates; // 1. ***** Add a static class variable ***** …
/* Airport class Anderson, Franceschi */ public class Airport { // Instance vari
/* Airport class Anderson, Franceschi */ public class Airport { // Instance variables private String airportCode; private int gates; // 1. ***** Add a static class variable ***** …
/* Airport class Anderson, Franceschi */ public class Airport { // Instance vari
/* Airport class Anderson, Franceschi */ public class Airport { // Instance variables private String airportCode; private int gates; // 1. ***** Add a static class variable ***…
/* An applet shell Anderson, Franceschi */ import java.awt.Color; import java.aw
/* An applet shell Anderson, Franceschi */ import java.awt.Color; import java.awt.Graphics; import java.awt.Polygon; import javax.swing.JApplet; public class ShellApplet extend…
/* Android Studio*/ An app consists of two screens: 1) a Welcome screen and 2) a
/* Android Studio*/ An app consists of two screens: 1) a Welcome screen and 2) an AccessControl screen. First open the app with Welcome screen, containing a TextView widget that d…
/* Asking for a tip on what exactly am I missing here. The debugger shows the va
/* Asking for a tip on what exactly am I missing here. The debugger shows the variables are holding the right numbers. However, when trying, multiple ways, to print to a txt file …
/* Attached is a class definition that encapsulates \"Temperature\" Temperature.
/* Attached is a class definition that encapsulates "Temperature" Temperature.java Write a method 'equals (Temperature other)' that returns true if the temperatures of the calling…
/* BEFORE function call - a is 10 20 30 40 50 60 70 80 90 node with 20 leaving n
/* BEFORE function call - a is 10 20 30 40 50 60 70 80 90 node with 20 leaving node with 30 leaving node with 40 leaving node with 50 leaving node with 60 leaving node with 70 lea…
/* C Programming: Missing Code - - - In this program, read stdin a line at a tim
/* C Programming: Missing Code - - - In this program, read stdin a line at a time, and print the longest line. If that line is longer than 30 characters, print it in the format ::…
/* CREATE_P_V.SQL */ /* Introduction to SQL */ /* Script file for ORACLE DBMS */
/* CREATE_P_V.SQL */ /* Introduction to SQL */ /* Script file for ORACLE DBMS */ /* This script file creates the following tables: */ /* V - default vendor table data */ /* P - de…
/* Calculation of roots to a quadratic equation --------------------------------
/* Calculation of roots to a quadratic equation -------------------------------------------- Write a C++ program that prints all solutions to the quadratic equation ax^2 + bx + c …
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Gra
/* Cart * Anderson, Franceschi */ import javax.swing.JFrame; import java.awt.Graphics; import java.awt.Color; import java.text.DecimalFormat; public class Cart { Item[] items; int…
/* Cashier class Anderson, Franceschi */ import java.awt.Color; import java.awt.
/* Cashier class Anderson, Franceschi */ import java.awt.Color; import java.awt.Graphics; import javax.swing.JFrame; import javax.swing.JOptionPane; import java.text.DecimalFormat…
/* Chapter 3 Programming Activity 2 Calling class methods Anderson, Franceschi *
/* Chapter 3 Programming Activity 2 Calling class methods Anderson, Franceschi */ // ***** add your import statements here public class PracticeMethods { public static void main(S…
/* Comments in prolog \\+ represents \"not equal to\" */%single line comments da
/* Comments in prolog + represents "not equal to" */%single line comments day("sunday"). day("monday"). day("tuesay"). day("Wednesday"). day("thursday"). day("friday"). no_office(…
/* Course: CS-182 Project: Programming 4 Name: Zaddie Arnold Date: 11/11/2015 De
/* Course: CS-182 Project: Programming 4 Name: Zaddie Arnold Date: 11/11/2015 Description: Write a program using the proper implementation of inheritance; utilizing abstract and d…
/* Create a program that prints a class roll sheet in alphabetical order. The us
/* Create a program that prints a class roll sheet in alphabetical order. The user inputs the students' first name and last names (separately!), and presses enter on the first nam…
/* Debugging Exercise, based on AT&T Network Bug */ /* See handout associated wi
/* Debugging Exercise, based on AT&T Network Bug */ /* See handout associated with this program for more information */ /* Note: this is not intended to be a good example of c…
/* Determine if the numbers between 2 and 9 are prime numbers */ #include
/* Determine if the numbers between 2 and 9 are prime numbers */ #include <stdio.h> int main() { int c, number, i=0; printf("Enter a number between 2 and 9 "); scanf("%d", &…
/* ELEN 1301-48F Programming Assignment #12 Name : Your name Student ID : Your s
/* ELEN 1301-48F Programming Assignment #12 Name : Your name Student ID : Your student ID# Due date : Objective of this assignment : Read a 8 digits number from the input file. Se…
/* Enter size of array (cannot be negative integer), and then ask for array elem
/* Enter size of array (cannot be negative integer), and then ask for array elements */ #include<stdio.h> #define MAXNUMBER 100 int printAll() { int s; for(s = 0; s<size;…
/* Fig. 12.19: fig12_19.c Create a binary tree and traverse it preorder, inorder
/* Fig. 12.19: fig12_19.c Create a binary tree and traverse it preorder, inorder, and postorder */ #include <stdio.h> #include <stdlib.h> #include <time.h> /* se…
/* For this lab, you should write: - A constructor that initializes the fields 1
/* For this lab, you should write: - A constructor that initializes the fields 1) name 2) ID 3) department 4) position - A no argument constructor - Mutator methods for each field…
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, i
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, into the // middle of block of ints |blk|, which has |dim1| elements. The inserted block starts at /…
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, i
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, into the // middle of block of ints |blk|, which has |dim1| elements. The inserted block starts at /…
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, i
/* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, into the /* Function |insert| inserts block of ints |toInsert|, having |dim2| elements, into the // …
/* Given a linked list you are to delete nodes if it has value 13 or is the 13th
/* Given a linked list you are to delete nodes if it has value 13 or is the 13th node in the list. Specifically perform deletion in the following order 1) delete all nodes that ha…
/* GuessGrameFrame.java */ package guessinggame; import java.awt.Color; import j
/* GuessGrameFrame.java */ package guessinggame; import java.awt.Color; import java.awt.FlowLayout; // specifies how components are arranged import java.awt.Graphics; import java.…
/* HanoiClient * Anderson, Franceschi */ import javax.swing.JOptionPane; import
/* HanoiClient * Anderson, Franceschi */ import javax.swing.JOptionPane; import javax.swing.JFrame; import java.awt.Graphics; public class HanoiClient extends JFrame { private Tow…
/* HanoiClient * Anderson, Franceschi */ import javax.swing.JOptionPane; import
/* HanoiClient * Anderson, Franceschi */ import javax.swing.JOptionPane; import javax.swing.JFrame; import java.awt.Graphics; public class HanoiClient extends JFrame { private Tow…
/* HanoiClient 1. For the code under comment 2, use numDisks as the disk number
/* HanoiClient 1. For the code under comment 2, use numDisks as the disk number to move. import javax.swing.JOptionPane; import javax.swing.JFrame; import java.awt.Graphics; publi…
/* HanoiClient 1. For the code under comment 2, use numDisks as the disk number
/* HanoiClient 1. For the code under comment 2, use numDisks as the disk number to move. import javax.swing.JOptionPane; import javax.swing.JFrame; import java.awt.Graphics; publi…
/* Hello, can you please help me with this one. This is in an intro course so pl
/* Hello, can you please help me with this one. This is in an intro course so please keep it basic enough, also we use C language. thank you. Please read enire question */ Call by…
/* Here you can write everything in a main() function. Suppose fred is a double
/* Here you can write everything in a main() function. Suppose fred is a double variable. Assign fred a value. Display the value of fred. Declare a pointer that points to fred. Di…
/* Homework Lab 32 Loop processing with arrays Keeping count of array elements t
/* Homework Lab 32 Loop processing with arrays Keeping count of array elements that are being used Parallel Arrays: Two or more arrays whose corresponding elements refer to relate…
/* Homework Lab 33 Passing an array element to a function Passing an array to a
/* Homework Lab 33 Passing an array element to a function Passing an array to a function Complete this exercise in 5 steps (with substeps a, b, and c) as follows. Complete each st…
/* Homework Lab This program does not work. There are three errors that you will
/* Homework Lab This program does not work. There are three errors that you will need to fix: TODO: Fix the following 3 errors. ERROR #1) The compiler knows there is something wro…
/* I need to do this in Vector and Array List*/ int main() { addressBookType add
/* I need to do this in Vector and Array List*/ int main() { addressBookType addressList(500); addressList.load(); addressList.searchByLastName("Balto"); cout<<" Printing in…
/* I want to fix void make_flight(int counter, flight_t flights[]) Enter flight
/* I want to fix void make_flight(int counter, flight_t flights[]) Enter flight code> Enter departure info for the flight leaving SYD. Enter month, date, hour and minute separa…
/* I want to track my indexes for the students class to make my algorithm more e
/* I want to track my indexes for the students class to make my algorithm more efficient. I was able to set the indexes and get them, but how do I test where my indexes are locate…
/* INSTRUCTIONS: 1) Create a class called Car that inherits from the Vehicle cla
/* INSTRUCTIONS: 1) Create a class called Car that inherits from the Vehicle class. 2) In the main() function, create a single instance of the Car class. 3) Create a loop that ask…
/* Iam trying to finish this school project and Iam just a beginner in java prog
/* Iam trying to finish this school project and Iam just a beginner in java programming . This program is about a game called Stop Gate played wih dominoes in a board. I have done…
/* Identify the live ranges of the variables in the code */ #include #
/* Identify the live ranges of the variables in the code */ #include <stdio.h> #include <string.h> typedef unsigned char BYTE; enum ArcType { ArcERR=-1, UNKNOWN, ARC, …
Subject
Web development and programming
Use Browse or pick another subject.