Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Web development and programming

191828 questions • Page 266 / 3837

1. Write a java program that will determine a students grade point average for a
1. Write a java program that will determine a students grade point average for a semseter. Ask the student how many classes they had. In a loop ask for the letter grade and the cr…
1. Write a java program that will display the numbers 1 to 100.Classify each num
1. Write a java program that will display the numbers 1 to 100.Classify each number as Odd or Even Numbers. Expected Result: 1 is an Odd Number 2 is an Even Number 2. Define a cla…
1. Write a java program to count the number of occurences of each letter in a st
1. Write a java program to count the number of occurences of each letter in a string. The program displays the letters in ascending order. You should provide two methods. Each met…
1. Write a java program using Thread to do the following: The main program initi
1. Write a java program using Thread to do the following: The main program initializes an array of size 1000 with random number between 1-10 It creates 5 threads and tell each thr…
1. Write a lisp function that averages its three arguments, first checking to se
1. Write a lisp function that averages its three arguments, first checking to see that they are numbers; if they are not, have the function AVERAGE return 'error. 2. Write a lisp …
1. Write a literal representing an integer value.* 2. Write a literal representi
1. Write a literal representing an integer value.* 2. Write a literal representing a String value. * 3. Write a literal representing a Single zero value. 4. Write an expression th…
1. Write a literal representing the false value. 2. Write a literal representing
1. Write a literal representing the false value. 2.  Write a literal representing the truevalue. 3. Declare a variable isACustomer suitable forrepresenting a true or false value. …
1. Write a loop that will read in a series of even numbers from the console (suc
1. Write a loop that will read in a series of even numbers from the console (such as 2, -4, 8, 6) and compute the total of the numbers in the sequence. The series is ended with a …
1. Write a loop to integer values until the user enters a -999 to quit. When the
1. Write a loop to integer values until the user enters a -999 to quit. When the user is done, print the sum of the numbers entered. //put your import statement here: public stati…
1. Write a main in a class called Explore that declares two different java.util.
1. Write a main in a class called Explore that declares two different java.util.LinkedList objects. Make one's generic type String and the other's type Integer. Add a bunch of dif…
1. Write a matlab program that takes a number from the user as an input and outp
1. Write a matlab program that takes a number from the user as an input and outputs whether the number is perfect or not. Example run: Input number: 5 Not a perfect number! Input …
1. Write a matlab program that takes a number from the user as an input and outp
1. Write a matlab program that takes a number from the user as an input and outputs whether the number is perfect or not. Example run: Input number: 5 Not a perfect number! Input …
1. Write a matlab script/function that takes decimal values until user inputs ze
1. Write a matlab script/function that takes decimal values until user inputs zero (0). The program will display the highest number among input decimal values and will terminate. …
1. Write a method called getNameArray that takes an integer parameter (numNames)
1. Write a method called getNameArray that takes an integer parameter (numNames), returns an array of Strings, and is declared to throw an Exception. If the parameter passed is a …
1. Write a method called playListBuilder that takes no parameters and returns an
1. Write a method called playListBuilder that takes no parameters and returns an ArrayList of Strings (song names). In the method body, declare an ArrayList of Strings called play…
1. Write a method called twiceArray. This method takes an array of double type,
1. Write a method called twiceArray. This method takes an array of double type, it then multiplies each number in the array by 2, stores the new number back in the array and retur…
1. Write a method multiple thatdetermines, for a pair of integers, whether the s
1.      Write a method multiple thatdetermines, for a pair of integers, whether the secondinteger is a multiple of the first. The method should take twointeger arguments and retur…
1. Write a method mycopy that creates a new array of int\'sof the same size as t
1. Write a method mycopy that creates a new array of int'sof the same size as the parameter arr and contains a copyof the values in arr. The new array should bereturned. 2. Write …
1. Write a method named capitalizeFirstLetters that prints a capitalized version
1. Write a method named capitalizeFirstLetters that prints a capitalized version of a passed in string to the screen, that is, it changes the first letter of each word in the stri…
1. Write a method named digitSum that takes a non-negative integer as a paramete
1. Write a method named digitSum that takes a non-negative integer as a parameter and that returns the sum of its digits. For example, digitSum(20879) should return 26 (2 + 0 + 8 …
1. Write a method product that takes a List as an argument and that returns the
1. Write a method product that takes a List as an argument and that returns the product of the values in the list. You should use an iterator rather than using calls on get and si…
1. Write a method public void printInOrder( int a, int b, int c ) that takes as
1. Write a method public void printInOrder( int a, int b, int c ) that takes as its arguments three integers and prints them out in increasing order (i.e., the smallest first) 2. …
1. Write a method that accepts a String as an input; the parameter that the meth
1. Write a method that accepts a String as an input; the parameter that the method is receiving MUST be in such a form ("1,3,33,55,66,-2"). If the String is not in that form (mean…
1. Write a method that converts all Strings in an array to upper case. The metho
1. Write a method that converts all Strings in an array to upper case. The method header is: public void convertToUpper(String[] words) 2. Write a method to create a new array tha…
1. Write a method that converts all Strings in an array to upper case. The metho
1. Write a method that converts all Strings in an array to upper case. The method header is: public void convertToUpper(String[] words) 2. Write a method to create a new array tha…
1. Write a method that determines if a string has all unique characters. 2. Cons
1. Write a method that determines if a string has all unique characters. 2. Consider the following data from Forbes: Create a one dimensional array holding the cheapest ticket pri…
1. Write a method to display the sum of two input integers in reverse order: pub
1. Write a method to display the sum of two input integers in reverse order: public static void reverse(int inputNumber1, int inputNumber2) 2. Write a method that takes an array o…
1. Write a method writeSequence that accepts an integer n as a parameter and pri
1. Write a method writeSequence that accepts an integer n as a parameter and prints a symmetric sequence of n numbers with descending integers ending in 1 followed by ascending in…
1. Write a method: public static int columnSum(int[][] a, int x) that returns th
1. Write a method: public static int columnSum(int[][] a, int x) that returns the sum of the elements in Column x of a (careful with rows of different lengths!). 2. Write a method…
1. Write a multithreaded routine that creates 10 threads and each thread reads a
1. Write a multithreaded routine that creates 10 threads and each thread reads a different file. Have the main program concatinate all of the read files into one output file on th…
1. Write a natural language front end to your family database which works like t
1. Write a natural language front end to your family database which works like this: Yes? Print each daughter of fred. winnie alma esther Yes? Do you know what a cousin is ? No, w…
1. Write a nested if else statement that will compare the values of total and MA
1. Write a nested if else statement that will compare the values of total and MAX. If the values of total and MAX are equal, compare the values of total and sum, if total is less …
1. Write a nonrecursive, reference-based implementation of the ADT sorted list o
1. Write a nonrecursive, reference-based implementation of the ADT sorted list of object as a Java class SortedListRefBased such that a. Duplicates are allowed b. Duplicates are n…
1. Write a paragraph in which you explain the concept of a “sandbox” and describ
1. Write a paragraph in which you explain the concept of a “sandbox” and describe how it is used to reduce security risks in client computers 2. Write a paragraph in which you des…
1. Write a password policy for your employer that could be used for new employee
1. Write a password policy for your employer that could be used for new employees. This policy should contain guidelines for the new employee on how to: • Select their password • …
1. Write a preprocessor directive to accomplish each of the following: A) Define
1. Write a preprocessor directive to accomplish each of the following: A) Define the symbolic constant TRUE to have the value 1. B) Define the symbolic constant FALSE to have the …
1. Write a procedure that reverses order of a 1-D array using the stack. The arr
1. Write a procedure that reverses order of a 1-D array using the stack. The array is a string array, and the address along with the number of elements are passed though the stack…
1. Write a program factorial.cpp that uses recursion to multiply numbers 1 throu
1. Write a program factorial.cpp that uses recursion to multiply numbers 1 through n. Print out the answer. Sample execution: Enter a number? 4 The factorial of 4 is 24 #include&l…
1. Write a program for creating a linked list by dynamically allocating memory f
1. Write a program for creating a linked list by dynamically allocating memory for desired number of nodes. The linked list should be populated based on file I/O. Your program sho…
1. Write a program in C ++ that outputs 500 single digit integers to a file name
1. Write a program in C ++ that outputs 500 single digit integers to a file named "integerfile.txt", each integer is separated by a newline character. 2. Write a program that read…
1. Write a program in C that reads a list of student names and sorts the list. Y
1. Write a program in C that reads a list of student names and sorts the list. Your program should have a function called “readNames” that has two arguments: 1) a 2-D character ar…
1. Write a program in C that reads a list of student names and sorts the list. Y
1. Write a program in C that reads a list of student names and sorts the list. Your program should have a function called “readNames” that has two arguments: 1) a 2-D character ar…
1. Write a program in Java to does the following. a. The program has main menu a
1. Write a program in Java to does the following. a. The program has main menu as follows. My Application Menu 1. List all books information. 2. List the prices of most/least expe…
1. Write a program in c++ / cpp that initializes an array of float to contain 12
1. Write a program in c++ / cpp that initializes an array of float to contain 12 monthly temperatures. It should read in the 12 months from the keyboard. 2. Program should calcula…
1. Write a program in the EXE format. 2. The program should contain the followin
1. Write a program in the EXE format. 2. The program should contain the following procedures: a. INPUT: Reads the arithmetic expression and checks for its validity. b. OPERATE: Th…
1. Write a program in the file main.cpp to read in words from a file with the na
1. Write a program in the file main.cpp to read in words from a file with the name input.txt, store the words in a linked list and count how many times each word appears. Use a li…
1. Write a program merge.c that include the following function: void merge(int n
1. Write a program merge.c that include the following function: void merge(int n, int a1[], int a2[], int a3[]); that has a parameter as an integer array a1[] of length n and anot…
1. Write a program segment that translates an integer value into a letter grade.
1. Write a program segment that translates an integer value into a letter grade. Between 90 and 100 the segment should output 'A', between 80 and 89 it should output 'B', between …
1. Write a program that accepts a date from the user in the form mm/dd/yyyy and
1. Write a program that accepts a date from the user in the form mm/dd/yyyy and then displays it in the form month dd, yyyy, where month is the name of the month: Enter the date(m…
1. Write a program that acts like cat, but reverses the order of the output line
1. Write a program that acts like cat, but reverses the order of the output lines. (Some systems have a utility like this named tac.) If you run yours as ./tac fred barney betty, …