Web development and programming
191828 questions • Page 80 / 3837
* This is for CS 101 Java class. I can only use \"while\" loops. I cannot use \"
* This is for CS 101 Java class. I can only use "while" loops. I cannot use "for", "do-while" or any other repetition method.* Your program inputs one positive integer and calcula…
* This is for CS 101 Java class. I can only use \"while\" loops. I cannot use \"
* This is for CS 101 Java class. I can only use "while" loops. I cannot use "for", "do-while" or any other repetition method.* Write a program that calculates the factorial of a g…
* This method returns true if the word selected from the word list satisfies the
* This method returns true if the word selected from the word list satisfies the constraints specified in the project document. Otherwise it returns *false. * @param word *@return…
* This method reverses \'in place\' the elements in * the array. Reversing is de
* This method reverses 'in place' the elements in * the array. Reversing is defined asmoving the * elements in the array such that thefirst element * becomes the la…
* Write a C++ program ticketSales to do the following. In your main() function,
* Write a C++ program ticketSales to do the following. In your main() function, you should do the following • Call the function getNumber() to get the number of tickets sold • Cal…
* Write a program that reads pairs of integers between 100 and 10, 000 from the
* Write a program that reads pairs of integers between 100 and 10, 000 from the standard input stream and determines whether the pairs are amicable or not. Use a while loop to rea…
* Write a speech that you would give to a friend in an elevator summing up the c
* Write a speech that you would give to a friend in an elevator summing up the contents of this course. You have 30 – 90 seconds to inform your friend of the most important elemen…
* Writes all valid tempertures readings and AC status to an output file specifie
* Writes all valid tempertures readings and AC status to an output file specified by fileName * using the format: * * HH:MM TT.TTT AC * * HH:MM reports the time at which the tempe…
* Writes all valid tempertures readings and AC status to an output file specifie
* Writes all valid tempertures readings and AC status to an output file specified by fileName * using the format: * * HH:MM TT.TTT AC * * HH:MM reports the time at which the tempe…
* You are given a map indicating the elevation of * a small area like a desk. A
* You are given a map indicating the elevation of * a small area like a desk. A ball is placed on the desk. * The ball will roll downhill going north south east or west. * * The b…
* add comments Problem Statement Write a C program that gets a set of characters
* add comments Problem Statement Write a C program that gets a set of characters from the user and store it in a char array. The reading continues until two consecutive (##)charac…
* bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | *
* bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | * Max ops: 8 * Rating: 1 */ int bitAnd(int x, int y) { return 2; /* # replace this */ } /* * get…
* can pleas write this code to psedocode. I need to explain each code in writen
* can pleas write this code to psedocode. I need to explain each code in writen word pleas? import java.awt.List; import java.util.ArrayList; import java.util.Collections; import …
* explanation/analysis for each question as to if the questiongives the expected
* explanation/analysis for each question as to if the questiongives the expected output, the types of unsolved errors and so on.A sample output should be shown. The program must h…
* https://chriskottom.com/blog/2014/02/a-few-modest-best-practices-forgit/ * htt
* https://chriskottom.com/blog/2014/02/a-few-modest-best-practices-forgit/ * https://sethrobertson.github.io/GitBestPractices/ * https://www.lullabot.com/articles/git-best-practic…
* i need help with 2 programs * 1. Enter the first side (as a decimal): 10.5 Ent
* i need help with 2 programs * 1. Enter the first side (as a decimal): 10.5 Enter the second side (as a decimal): 15.5 The area is 162.75 The perimeter is: 52.0 Should the user c…
* inverse * returns the inverse of this symbol table. * the inverse is a symbol
* inverse * returns the inverse of this symbol table. * the inverse is a symbol table where the roles of the Keys and Values are switched * Example: * Consider the …
* leds in the board will fade */ int main(void) { TIM_TimeBaseInitTypeDef TIM_Ti
* leds in the board will fade */ int main(void) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; /* TIM config */ GPIO_InitTypeDef GPIO_Init…
* population_report * Purpose: * calculates g,tatg (total, mAx, mig and average)
* population_report * Purpose: * calculates g,tatg (total, mAx, mig and average) of * carbon footprint data of individuals in a population, * Parameters: * gIg - a pointer to an a…
* q1: Write a public static method named ql that takes a double as a parameter a
* q1: Write a public static method named ql that takes a double as a parameter and returns a double. The method will represent a line with slope 11.04 and y-intercept 8.51 by inte…
* q2: Write a public class named LayerListener that implements the ActionListene
* q2: Write a public class named LayerListener that implements the ActionListener interface. This class will have a public constructor that takes a JTextField and a JLabel as * pa…
* q2: Write a public static method named q2 that takes an ArrayList of type Char
* q2: Write a public static method named q2 that takes an ArrayList of type Character and * returns a char. This method returns the char that comes first * alphabetically/lexicogr…
* q3: Write a public static method named q3 that takes no parameters and returns
* q3: Write a public static method named q3 that takes no parameters and returns a new * HashMap with keys of type Integer mapped to values of type String containing the key-val *…
* q5: Write a public static method named q5 that takes an ArrayList of type Inte
* q5: Write a public static method named q5 that takes an ArrayList of type Integer and *returns an int. This method returns the number of times* a most significant value appears …
* strcspn( char str, char reject) - return the length of the initial segment of
* strcspn( char str, char reject) - return the length of the initial segment of str' which consists of characters entirely of characters that are not in reject. Example: strcspn( …
* using python 3 functions and list- I can\'t seem it get it to run properly whe
* using python 3 functions and list- I can't seem it get it to run properly where I can get the balance, deposit and withdraw amount to come out properly it keeps showing [300, 30…
*! Exercise 4.2.2: If L is a language, and a is a symbol, then L/a, the quotient
*! Exercise 4.2.2: If L is a language, and a is a symbol, then L/a, the quotient of L and a, is the set of strings w such that wa is in L. For example, if L = {a, aab, baa), then …
*(Make the program able to work in Visual Studio or My Programming lab if possib
*(Make the program able to work in Visual Studio or My Programming lab if possible)* Consider the testPIN function used in Program 7-21. For convenience, we have reproduced the co…
*(Please answer all parts of this question; A, B, C and D)* In Java Programming,
*(Please answer all parts of this question; A, B, C and D)* In Java Programming, 1. Write a hangman’s program where the user is a computer that has to guess the word “JAVA.” The c…
*(Please answer all parts of this question; A, B, C and D)* In Java Programming,
*(Please answer all parts of this question; A, B, C and D)* In Java Programming, 1. Write a hangman’s program where the user is a computer that has to guess the word “JAVA.” The c…
*(Use a HTML editor of your choice to work on your assignments.) Part 1. Create
*(Use a HTML editor of your choice to work on your assignments.) Part 1. Create a table with a size one border to list the movie titles and prices: The table has two columns. The …
** 1. ReadString Implement your own version of the ReadString procedure, using s
** 1. ReadString Implement your own version of the ReadString procedure, using stack parameters. Pass it a pointer to a string and an integer, indicating the maximum number of cha…
** A python2.7 code is provided of a two player tic tac toe game, is this exerci
** A python2.7 code is provided of a two player tic tac toe game, is this exercise we have to add the veryWinner(function) to check in there is a winner in the game. I have attach…
** C not C++** Complete the program to assign a seat on an airline flight. The u
** C not C++** Complete the program to assign a seat on an airline flight. The user will select First, Business or Economy class. If there is an available seat, assign it by addin…
** C not C++** Write a complete program that includes the following three tasks:
** C not C++** Write a complete program that includes the following three tasks: Write a for loop to count and display integers starting at 0 and counting by 5's up through 100 (o…
** Can you tell me what each line is doing? // example? public class Business {
** Can you tell me what each line is doing? // example? public class Business { private String name; private String stockTicker; private int numberOfEmployees; private double netW…
** Cannot changes FileAcessor scanner to not Private, can only find workaround i
** Cannot changes FileAcessor scanner to not Private, can only find workaround in new wordpercetages class Do writings by individual authors have statistical signatures? They cert…
** Cannot make changes to FileAccessor or WordPercentagesDriver, can only write
** Cannot make changes to FileAccessor or WordPercentagesDriver, can only write new WordPercentages Class. Need a work around for the private scanner in FileAccessor, as we cannot…
** Computer Organization and Architecture (Stallings 10th edition)** Consider th
** Computer Organization and Architecture (Stallings 10th edition)** Consider the example in Section 2.5 for the calculations of average CPI and MIPS rate, which yielded the resul…
** Create a constructor that initializes ONLY the name and date-of-birth data-fi
** Create a constructor that initializes ONLY the name and date-of-birth data-fields(i.e. takes two arguments). Also, increment the patient counter static variable. ** Create a co…
** Data Structures and Algorithms Using Java** a)Give the integer range of the v
** Data Structures and Algorithms Using Java** a)Give the integer range of the values that rear can assume after the statement: rear = x % 54; executes (assume x is an integer). b…
** Data Structures and Algorithms using Java**Restricted Structures*** a)Give th
** Data Structures and Algorithms using Java**Restricted Structures*** a)Give the line numbers of the code presented in Figure 3.13 (see textbook page 140) that perform the garbag…
** Edited Q: \"regarding tables can i we do in oracle sql??\" Yes, Oracle SQL sh
** Edited Q: "regarding tables can i we do in oracle sql??" Yes, Oracle SQL should work! Database management/SQL question (Scroll down for the SPJDatabase) if exists(Select * from…
** I Need help with the following questions on my F# Review with explanation ple
** I Need help with the following questions on my F# Review with explanation please! :) ** 1) Which of the following F# expressions is not well typed? Select one: a) 2 + 5 * 10 b)…
** I Need help with the following questions on my F# Review with explanation ple
** I Need help with the following questions on my F# Review with explanation please! :) ** 4) Which of the following statements about F# lists is not true? Select one: a) They are…
** I Need help with the following questions on my F# Review with explanation ple
** I Need help with the following questions on my F# Review with explanation please! :) ** 8) Let F# function foo be defined as follows: let rec foo = function | (xs, []) -> xs…
** IN C++ PLEASE ** This program will store roster and rating information for a
** IN C++ PLEASE ** This program will store roster and rating information for a soccer team. Coaches rate players during tryouts to ensure a balanced team (1) Prompt the user to i…
** Implement an instance method called redFlags. This method should return a boo
** Implement an instance method called redFlags. This method should return a boolean value. The method will return true if either the heart rate is less than 60 or greater than 10…
** In Java with detailed comments ** ** In Java with detailed comments ** Assign
** In Java with detailed comments ** ** In Java with detailed comments ** Assignment 10 Take the code (it is from the Savitch student data files) listed here and 1) make it doubly…
** In Java with detailed comments ** ** In Java with detailed comments ** Assign
** In Java with detailed comments ** ** In Java with detailed comments ** Assignment 11 Using a hash set to do a Monte Carlo analysis of the birthday paradox. The paradox states t…
Subject
Web development and programming
Use Browse or pick another subject.