1,486 Answered Questions for the topic computer programming

Computer Programming Java Computer Science Javascript

01/21/22

Please answer the question in the description.

Assume that aList is a valid ArrayList containing the following:Wei, Marila, Anna, Neal, Rachel, Jack, AneeshWhen the following statement executes, what does aList contain? aList.set(1,... more
Computer Programming Java Computer Science Javascript

01/21/22

Answer the question below please.

Assume that aList is a valid ArrayList containing the following:Wei, Marila, Anna, Neal, Rachel, Jack, AneeshWhich of the following does not remove Anna from aList? aList.remove("Anna",... more
Computer Programming Java Computer Science Javascript

01/21/22

Answer the question in the description below please.

Assume that the following numbers belonged to an ArrayList called values:5, 23, 45, −3, 17, 18, 100Which of the following would determine how many elements are in values?  a int numElements =... more
Computer Programming Computer Java Computer Science

01/20/22

what is the answer to the question in the description

Given the following class:import java.util.ArrayList;public class RectangleTester{     public static void main(String[ ] args)     {          ArrayList< Rectangle > shapes = new ArrayList<... more
Computer Programming Math Calculus Maths

01/20/22

Work out the O() running time for the following recursive function. Show all your working.

void sort(int vals[], int n) { if (n == 1) return; sort(vals, n-1); // sort first n-1 values // now insert vals[n-1] into correct position in vals[] int temp = vals[n-1]; int i = n-1; while... more
Computer Programming Java Computer Science Javascript

01/18/22

What is the answer to the question in the description

Assume that the following code exists inside the main method of SomeClass, and that this code compiles without errors:int result = obj.calculate(4, 3.14);where obj is an object of... more
Computer Programming Math Geometry Sat Math

01/18/22

Identify A polygon

Choose ALL answers that describe the polygon EFGH if measure of angle E = 96 degrees, measure of angle F = 91 degrees, measure of angle G =89 degrees, measure of angle H =84 degrees, and side EF is... more
Computer Programming Chemistry Sat Math Computer Science

12/10/21

Chemistry Bonding Covalent Structures

Write the following elements structural formula, electron dot formula, molecular shape, bond polarity (P or NP) and Molecular polarity (P or NP)Elements: H2O2, HCOOH, HCN, CO(NH2)2 , N2H4, C2H4,... more
Computer Programming Java

12/09/21

computer language

Write a java program to implement inheritance and methodoverriding for the given problem below: [20] 1. Create a class called Courier that includes the following: a. Declare the necessary member... more
Computer Programming Java

12/09/21

computer language

Write a program that reads an integer from the user, then creates an array of integers of that length. It then fills the array with integers read from the user. a) In your program’s main class,... more
Computer Programming Java

12/09/21

computer language

Write a Java code which gives the value of for n= 2,4, … 2^14. You can use the function Math.pow(x, y).
Computer Programming General Computer

12/02/21

Unable to boot to windows 10

How to fix my bootloader from MirBSD Korn shell
Computer Programming Python

12/02/21

Python Assignment

The game you will construct here will require user input to appease or defeat the characters above, each of which has a different requirement. To receive full credit for this assignment, your... more
Computer Programming Programming

11/30/21

plz can u help to solve this with OUBUILD program

A person is cutting a long board of wood into different length of pieces . Each cutting has fixed width 2 cm lengths. Given that each cutting with different length has a different... more
Computer Programming Programming

11/30/21

plz can u help to solve this with OUBUILD programe

Suppose you have a set of numbers and they are in ascending order such as (6,2,9,5,8,7). In this set we have six pairs that are out of this rule or sequence as following... more
Computer Programming Computer General Computer Java

11/22/21

Please help with coding problem

Hello,I have a question about a java code. I have to write a program where i'll enter a String value as a variable “word”: “blahblahblah” then create a method that is called “showPairs(String... more
Computer Programming Computer General Computer Java

11/16/21

Help needed with code

I am struggling with a Java coding problem. How can I write an application that allows a user to enter any number of student quiz scores, as integers, until the user enters 99. If the score entered... more
Computer Programming

11/12/21

Computer Programming

Goal: To bring together everything you've learned about repetition , relational operators, and input validation and show your mastery of these concepts.You are to write a program that will allow a... more
Computer Programming Computer Science Python

11/11/21

Python gradient RGB

I am creating a PYTHON program that outputs a window with a background made up of lines that start at x = 0 and span across the width of the window. What I would like to do is ask the user for... more
Computer Programming

11/10/21

Computer Programming

Do you think that C has all of the data types that a programmer needs to do his or her job? If so, why? If not, what is one data type you would add to the language to make it more useful?
Computer Programming Boolean

11/06/21

Simplify the Boolean function

Simplify the Boolean function F (w,x,y,z)=Σ(2,4,7,10,12)together with its don't-care conditions d(w,x,y,z)=Σ(0,6,8) and express the simplified function in SOP form. Do not include spaces between... more
Computer Programming

11/04/21

Computer Programming

Goal: To bring together everything you've learned about repetition , relational operators, and input validation and show your mastery of these concepts.You are to write a program that will allow a... more
Computer Programming Java Computer Science Data

11/04/21

Write a static method histogram() that takes an array a[ ] of int values...........

Write a static method histogram() that takes an array a[ ] of int values and an integer M as arguments and returns an array of length M whose ith entry is the number of times the integer i appeared... more
Computer Programming Java

11/04/21

if Statement on two user inputs

import java.util.Scanner; public class RunBloodData { public static void main (String [] args){ Scanner sc = new Scanner(System.in); System.out.println("Enter blood type of... more

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.