Web development and programming
191828 questions • Page 3581 / 3837
consider the following: s. You have a data file that contains the following grad
consider the following: s. You have a data file that contains the following grades (all separated by a space): 86.3 95.0 111.5 96.6 87.3 85.4 59.2 73.5 70.0 98.0 ASSUME the file h…
consider the lines of code below. Indicate which are invalid, meaing either that
consider the lines of code below. Indicate which are invalid, meaing either that they would not compile or that they may produce a memory fault. consider each line independently o…
consider the operation removeAll, which removes all the elements from the list t
consider the operation removeAll, which removes all the elements from the list that that are equal to the argument and returns an int indicating the number of elements removed. de…
consider the solution to the readers writers problem. monitor reders/writters {
consider the solution to the readers writers problem. monitor reders/writters { int read_cnt = 0, writting = 0; condition OK_to_read, OK_to_write; start_read(){ if(writting || !em…
consider the testPIN function used in Program 7-21. For convenience, we have rep
consider the testPIN function used in Program 7-21. For convenience, we have reproduced the code for you below: bool testPIN(int custPIN[], int databasePIN[], int size) { for (int…
consists of programs or sets of that bell the computer to perform certain proces
consists of programs or sets of that bell the computer to perform certain processing function GILs software Firmware Hardware allow(s) new hardware added your system to function w…
const int DAYS_IN_WEEK = 7; for(counter = 1; counter
const int DAYS_IN_WEEK = 7; for(counter = 1; counter <= DAYS_IN_WEEK; counter++) { cout << "Enter rainfall amount for Day " + counter << ": "; cin >> rainfall…
const int MAXPRIORITY = 10; template pqqueue::pqqueue() { // ADD YOUR LOGIC HERE
const int MAXPRIORITY = 10; template pqqueue::pqqueue() { // ADD YOUR LOGIC HERE // you need to allocate space for the vector // and initialize the number of elements for(int i = …
const int MAX_BOOKS = 500; struct BookType //Structure to be used in program. {
const int MAX_BOOKS = 500; struct BookType //Structure to be used in program. { string title; string author; string date; }; int numberOfBooks; BookType libraryOfB…
const int N=10; struct PARAM { double s; double z; double n; }; struct HEADING {
const int N=10; struct PARAM { double s; double z; double n; }; struct HEADING { double initialValue; double step; }; struct FLOW_RATE_TABLE { char name[20]; PARAM params;…
const int ROW=3,COL=6;//global variable int main() { double cap=0; char name[ROW
const int ROW=3,COL=6;//global variable int main() { double cap=0; char name[ROWS][COLS]={"ERIC","JOSH","C.J."}; int age[ROWS]={15,17,18}; int thisyear=2014; char*oldest= wholeold…
const int Rows = 15; const int Cols = 30; void displayMenu(); int getChoice(); v
const int Rows = 15; const int Cols = 30; void displayMenu(); int getChoice(); void displaySeats (const char[][Cols]); void displayPrices(const double[]); void displaySales(double…
const int Rows = 15; const int Cols = 30; void displayMenu(); int getChoice(); v
const int Rows = 15; const int Cols = 30; void displayMenu(); int getChoice(); void displaySeats (const char[][Cols]); void displayPrices(const double[]); void displaySales(double…
const int SENTINEL = -1; int count = 0; int sum = 0; int num; double average; co
const int SENTINEL = -1; int count = 0; int sum = 0; int num; double average; cout << "Enter a value: (or -1 to quit): " << endl; cin >> num; while (num != SE…
const int SIZE = 25; //Size of arrays int main() { double SalesAmounts [SIZE]={0
const int SIZE = 25; //Size of arrays int main() { double SalesAmounts [SIZE]={0.0}; //Sales amounts array string SalesReps [SIZE]; //Names of sales representatives array ifstream…
const int TWINKIE_PRICE = 350; This is a function to prompt the user to insert c
const int TWINKIE_PRICE = 350; This is a function to prompt the user to insert coins repeatedly until enough has been paid to buy a twinkie. A switch statement is suggested to use…
constellations -0.581457 -0.294806 -0.536543 -0.205755 -0.536543 -0.205755 -0.54
constellations -0.581457 -0.294806 -0.536543 -0.205755 -0.536543 -0.205755 -0.544292 -0.130741 -0.544292 -0.130741 -0.54293 -0.036595 -0.54293 -0.036595 -0.591873 0.015941 -0.…
constitution PREAMBLE We the People of the United States, in Order to form a mor
constitution PREAMBLE We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defense, pr…
construct a C++ implementation of a static deque class. needs to be an array imp
construct a C++ implementation of a static deque class. needs to be an array implementation template <typename T> class deque { public: typedef std::size_t size_type; static…
construct an object at this stagé. A wireless telephone company has some options
construct an object at this stagé. A wireless telephone company has some options for new customers. Three of them are the following: (1) Buy the phone for $200 and sign a contract…
contact ebay customer service? Call us +1-877-852-0777 contact ebay customer ser
contact ebay customer service? Call us +1-877-852-0777 contact ebay customer service? Call us +1-877-852-0777 contact ebay customer service? Call us +1-877-852-0777 contact ebay c…
contain an even number of a\'s contain no substring aa contain no substring bb a
contain an even number of a's contain no substring aa contain no substring bb at least one a and no occurrence of aahave odd length Question 2 contain aa and ab start with aa The …
contains an even number of a\'s contain no substring aa contain no substring bb
contains an even number of a's contain no substring aa contain no substring bb at least one a and no occurance of aa have odd length contain aa and ab start with aa start with a a…
contains an unsigned value which is supposed to be between 0 and 15. souldprint
contains an unsigned value which is supposed to be between 0 and 15. souldprint the value in AL as a hex digit ASCll character. Assume one byte reserved at Hexchar to hold the cha…
contains_word() 2 Input Parameters: a word (string) and a message (string) Retur
contains_word() 2 Input Parameters: a word (string) and a message (string) Return: True or False depending on if the word is in the message Checks to see if one string (called wor…
content-nid-6030563 1/courses)001256-01-210T-T-O5L-T044 17rencp Problem 2: Cows
content-nid-6030563 1/courses)001256-01-210T-T-O5L-T044 17rencp Problem 2: Cows go M00! [15pt] A Kindergarden teacher wants to test her students to determine whether they know wha…
continuation of the output: This sample program shows how to generate random num
continuation of the output: This sample program shows how to generate random numbers: #include < stdio.h> #include <stdlib.h> #include <time.h> int main() { int …
continue stack I really need stack.h so stack.c makes sense HELP with Stacks (Cp
continue stack I really need stack.h so stack.c makes sense HELP with Stacks (Cprog.) This a program stores information of the books there are in a library (code, author, availabi…
continue to compile/run our Java programs from the command line. Create a progra
continue to compile/run our Java programs from the command line. Create a program that shows the following We'll need to know a few things about our knight such as his name(hint:S…
contrast public, private and protected inheritance. Solution public-->inherite t
contrast public, private and protected inheritance.
controlling motor servo with 2 push buttons and raspberry and also phyton interf
controlling motor servo with 2 push buttons and raspberry and also phyton interface ? Please help me :D Thanks. Here is the beginning of my code import RPi.GPIO as GPIO from time …
conversion(java.lang.String) in TextFileProcessorcannot be applied to (java.io.P
conversion(java.lang.String) in TextFileProcessorcannot be applied to (java.io.PrintWriter) TextFileProcessor.conversion(outputStream); ^ This is the error I a…
convert a program from Java to C++ Need help converting this program from java t
convert a program from Java to C++ Need help converting this program from java to c++ // include file reading libraries import java.io.*; import java.util.LinkedList; // include l…
convert anonymous block to a stored procedure that will accept a date as input a
convert anonymous block to a stored procedure that will accept a date as input and print the original date, the date after one year, week and day. Execute your stored procedure. E…
convert below c code program to java code #include #include
convert below c code program to java code #include <stdio.h> #include <string.h> #include <stdlib.h> #define FALSE 0 #define TRUE 1 typedef int boolval; typedef …
convert exactly to ARM assembly language..using Raspbian OS on a raspberry pi..u
convert exactly to ARM assembly language..using Raspbian OS on a raspberry pi..using registers R0-R15 #include int main int number_1-0, number_2-0, sum-0, difference-0, product-0;…
convert following program to c++ import java.util.*; import java.io.*; //Class C
convert following program to c++ import java.util.*; import java.io.*; //Class ComputeRomans will get the roman values from a file //computes the calculations and //writes the out…
convert into mips. if (j < 0x80) { // j fits in 7 bits, expand to 8 bits // n =
convert into mips. if (j < 0x80) { // j fits in 7 bits, expand to 8 bits // n = j } else if (j <= 0x7FF) { // j fits in 11 bits, expand to 16 bits // b = low 6 bits of j // …
convert the c++ code into mips// #include using namespace std; int rep
convert the c++ code into mips// #include<iostream> using namespace std; int replace(int,int,int,int[]); int main() { int a[5]; //declare an array a[0]=2; //array int a[1]=3…
convert the c++ code to MIPS assembly language ---------------------------------
convert the c++ code to MIPS assembly language -------------------------------------------------------------------------------- #include <iostream> using namespace std; int …
convert the context-free grammar G = , where into a Chomsky normal form grammar
convert the context-free grammar G = , where into a Chomsky normal form grammar G' = . At each stage, your answers should show the steps of the conversion, namely which rules are …
convert the following segment of c code to assmebly language #include #define BU
convert the following segment of c code to assmebly language #include #define BUTTON1 ((P2IN & 0x02) == 0x00) #define BUTT0N2 ((P2IN & 0x04) == 0x00) #define BUTT0N3 ((P2I…
convert the following stack into using a linked list instead of an array: packag
convert the following stack into using a linked list instead of an array: package MyStackQueue; public class Stack{ private Object object[]; private int i; private int…
convert the program using a template #include #include #in
convert the program using a template #include <iostream> #include <stdlib.h> #include <ctime> #define MAX_ITERAIONS 1000000 using namespace std; struct node { in…
convert the pseudocode comments into java code. public class Section_2_FillInThe
convert the pseudocode comments into java code. public class Section_2_FillInTheCode { public static void main(String[] args) { int a = 10; int b = 5; double c; // Convert the fol…
convert the while loop in the following code to a do-while loop: Scanner keyboar
convert the while loop in the following code to a do-while loop: Scanner keyboard = ne…
convert these scripts to plaintext, and analyze the content of the code, and sum
convert these scripts to plaintext, and analyze the content of the code, and summarize what the scripts are doing in plain english. Hint #1: All scripts are coded in JavaScript Hi…
convert this code from c++ to c #include #include #include
convert this code from c++ to c #include <iostream> #include <set> #include <algorithm> using namespace std; #define MAX_R 10 int cost[MAX_R][MAX_R]; string team…
convert this code to assembly language. Please explain Cendal 18 many sorting al
convert this code to assembly language. Please explain Cendal 18 many sorting algorithms is t are out of order. Since we have not yet just worry about swapping two elements int tm…
convert this code to pseudo code import java.util.*; public class MAINCLASS { pu
convert this code to pseudo code import java.util.*; public class MAINCLASS { public static void main(String[] args) { Scanner keyboard=new Scanner(System.in); …
Subject
Web development and programming
Use Browse or pick another subject.