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 153 / 3837

1 and 2 Review for Function Test 1. create a function header and body that takes
1 and 2 Review for Function Test 1. create a function header and body that takes in a double and returns an int. The int will be the number sent in modulus 99 2. create a f unctio…
1 class LockedQueuecT> new ReentrantLock(); 2 final Lock lock 4 final Condition
1 class LockedQueuecT> new ReentrantLock(); 2 final Lock lock 4 final Condition notEmpty lock.newCondition(): int tail, head, count; 3 final Condition notFull lock.newCondition…
1 class Main 3public static void main(String [] args) [ double pi; approximate v
1 class Main 3public static void main(String [] args) [ double pi; approximate value to he computed int count; final double SYSTEM PI Math.PI; tinal double ONE_ THOUSANDETH -1.E-0…
1 class Node: 2 definit_(self, value): self.value = value self.nextNone 4 5 6 cl
1 class Node: 2 definit_(self, value): self.value = value self.nextNone 4 5 6 class LinkedList: 7 def init__(self): self, first = None 10 def prepend(self, value): new-node = Node…
1 code // Test driver #include #include typedef int ItemTyp
1 code // Test driver #include <iostream> #include <fstream> typedef int ItemType; #include "PQType.h" #include<string> using namespace std; int main() { ifstrea…
1 for j = 2 to A. length 2 key = A[ j ] 3 // Insert A[ j ] into the sorted seque
1 for j = 2 to A.length 2 key = A[ j ] 3 // Insert A[ j ] into the sorted sequence A[1 . . j - 1 ] 4 i = j - 1 5 while i > 0 and A[ i ] > key 6 A[ i + 1 ] = A[ i ] 7 i = i -…
1 from h1dden_11b 1mport count trigrams 2 from h1dden_11b 1mport tra1n class1f1e
1 from h1dden_11b 1mport count trigrams 2 from h1dden_11b 1mport tra1n class1f1er Write a function score_document (document, lang_counts default_lang_counts) which takes as input …
1 his assignment serves as practice for the material we have covered in class an
1 his assignment serves as practice for the material we have covered in class and in your assigned readings regarding chapters 1 and 2 of the text. Below are several questions to …
1 http://snap2013 nap.phpAlmodearn/atp , 1 sNAP 2013-PowerPoint Se- Horne Amazon
1 http://snap2013 nap.phpAlmodearn/atp , 1 sNAP 2013-PowerPoint Se- Horne Amazon.com-Online Sh.- TripAdvisor The Acf buttion in e Speling task pane adds Chooce one anaw b a commen…
1 import java.awt.Container; 2 import java.awt.FlowLayout; 3 import java.awt.eve
1 import java.awt.Container; 2 import java.awt.FlowLayout; 3 import java.awt.event.ActionListener; 4 import java.awt.event.*; 5 import javax.swing.JButton; 6 import javax.swing.JF…
1 import java.io.IOException; VariablesChallengePS/src/VariablesChallengePS java
1 import java.io.IOException; VariablesChallengePS/src/VariablesChallengePS java 2 import java .nio.file. le 3 import java.nio.file. Paths; 5 public class FilesLecture1 5 points s…
1 import javax. sound. sampled. 2 import javax. sound. sampled. DataLine 3 impor
1 import javax. sound. sampled. 2 import javax. sound. sampled. DataLine 3 import java applet. 4 import java.net. 5 public class Audio{ public static void main (String[ args) 7 tr…
1 int *ptr; int val = 1; ptr = val; The second statement in the above code will
1 int *ptr; int val = 1; ptr = val; The second statement in the above code will assign the value 1 to the pointer. A) True B) False 2 int a[5]; int *ptr; ptr = a; a. the second st…
1 int *ptr; int val = 1; ptr = val; The second statement in the above code will
1 int *ptr; int val = 1; ptr = val; The second statement in the above code will assign the value 1 to the pointer. A) True B) False 2 int a[5]; int *ptr; ptr = a; a. the second st…
1 int multiplier= 1000; 2 3 int podraceWinnings (int place) 4 int winnings = 0;
1 int multiplier= 1000; 2 3 int podraceWinnings (int place) 4 int winnings = 0; winnings = (10 - place) * multiplier; return Winnings 6 8 9 10 int main (void) [ int prizeAmt 0; in…
1 int startingValue; 2 int terminatingValue; 3 int stepValue; 4 5 for (int i - s
1 int startingValue; 2 int terminatingValue; 3 int stepValue; 4 5 for (int i - startingvalue; i terminatingValue; i + stepValue) switch( i ) 7 8 9 10 case e: System.out.print( "He…
1 int startingValue; 2 int terminatingValue; 3 int stepValue; 4 5 for (int i - s
1 int startingValue; 2 int terminatingValue; 3 int stepValue; 4 5 for (int i - startingvalue; i terminatingValue; i + stepValue) switch( i ) 7 8 9 10 case e: System.out.print( "He…
1 int stringCompare(String str1, String str2) Description: Given two Strings, co
1 int stringCompare(String str1, String str2) Description: Given two Strings, compare the value of hte strings. If the first comes earlier than the second, then return EXACTLY -1;…
1 interface I { 2 String s1 = \"I\"; 3 } 4 class A implements I { 5 String s1 =
1 interface I { 2 String s1 = "I"; 3 } 4 class A implements I { 5 String s1 = "A"; 6 } 7 class B extends A { 8 String s1 = "B"; 9 } 10 class C extends B { 11 String s1 = "C"; 12  …
1 itialize objects: J a HashSet object, nset, of Double objects ) a HashSet obje
1 itialize objects: J a HashSet object, nset, of Double objects ) a HashSet object, stset of Student objects. ). a TreeSet object, cset, of Card objects. a TreeSet object, cSet1, …
1 limport java util.Random 4 public class ArrayNum1 static Random r new Random (
1 limport java util.Random 4 public class ArrayNum1 static Random r new Random (10) static int new int 20 array public static void main (String[] args) creates an array of 20 elem…
1 limport java util.Random 4 public class ArrayNum1 static Random r new Random (
1 limport java util.Random 4 public class ArrayNum1 static Random r new Random (10) static int new int 20 array public static void main (String[] args) creates an array of 20 elem…
1 nt sumNeg(int[] vals) 2- I Description Given an array of ints, iterate over th
1 nt sumNeg(int[] vals) 2- I Description Given an array of ints, iterate over the array. Skip any elements which are not negative; add the negative ones together, and return the s…
1 of 1 15 points) Palindrome Detector. A palindrome is a phrase that reads the P
1 of 1 15 points) Palindrome Detector. A palindrome is a phrase that reads the Pi same ronwards as it does backwards. For example, "a man, a plan, a canal, Panama is a palindrome.…
1 of 1 Chapter 7 How to code subqueries Exercises Write a SELECT statement that
1 of 1 Chapter 7 How to code subqueries Exercises Write a SELECT statement that returns the same result set as this SELECT statement, but don't use a join. Instead, use a subquery…
1 of 10 Homework 4: Adventure Game Description: The purpose of this assignment i
1 of 10 Homework 4: Adventure Game Description: The purpose of this assignment is to build a simple text-based adventure game where the player explores the game world by travellin…
1 of 2 CS 150: Problem Solving and Programming I Lab#9 Description In this peogr
1 of 2 CS 150: Problem Solving and Programming I Lab#9 Description In this peogram, you will complete eight functions in the template source code file. The peogram will imput the …
1 of 2 CS 250 Computer Networks Fundamentals Fall 2016 Homework 3 A network admi
1 of 2 CS 250 Computer Networks Fundamentals Fall 2016 Homework 3 A network administrator is trying to redesign the network by dividing it into smalier subnets. The following are …
1 of 2 CS140 Joe\'s Automotive performs the following routine maintenance servic
1 of 2 CS140 Joe's Automotive performs the following routine maintenance services: Oil change-$26.00 Lube job-$18.00 Radiator flush-$30.00 . Transmission flush-$80.00 Inspection-$…
1 of 2 EEL-4734 Midterm Take heme exam due at 11:59 pm, Saturday, July 14, 2018
1 of 2 EEL-4734 Midterm Take heme exam due at 11:59 pm, Saturday, July 14, 2018 Namc PanthertD Multiple chaices: Based ea the lesthoek, ehoose ealy aaswer that best matches with t…
1 of 3 In this assignment, we will work with linked list and operator overloadin
1 of 3 In this assignment, we will work with linked list and operator overloading. Define a class LinkedList and making 2 linked lists. Combine the two linked list to make the thi…
1 of 30 Use-case points is a project effort estimation approach based on unique
1 of 30 Use-case points is a project effort estimation approach based on unique features of _______ and object orientation. Question 2 of 30 The person who identifies the business…
1 of 5 Concept of Programming Languages Review Questions for the Final Exam I. D
1 of 5 Concept of Programming Languages Review Questions for the Final Exam I. Describe the language evaluation criteria. 2. What construct of a programming language provide proce…
1 package com.example.second; 3 import android, support . v7.app.ActionBarActivi
1 package com.example.second; 3 import android, support . v7.app.ActionBarActivity; 4 import android.app.Activity; 5 import android.os.Bundle; 6 import android.view.Menu; 7 import…
1 package strings; gm 3 import javax. swing.30ptionPane; gs 5 public class DateV
1 package strings; gm 3 import javax. swing.30ptionPane; gs 5 public class DateValidation 4 6 public static void main (Stringl] ar) rc 7 str 8String date; 9 int m,d,y,loc1,loc2; b…
1 points QUESTION 7 Which sort algorithm starts with an initial sequence of size
1 points    QUESTION 7 Which sort algorithm starts with an initial sequence of size 1, which is assumed to be sorted, and increases the size of the sorted sequence in the array in…
1 points QUESTION 95 The element() method in the Queue interface 1· retrieves an
1 points QUESTION 95 The element() method in the Queue interface 1· retrieves and removes the head of this queue, or null if this queue is empty C retrieves and removes the head o…
1 points Save Answer QUESTION 1 This is a MULTIPLE ANSWER question, which means
1 points Save Answer QUESTION 1 This is a MULTIPLE ANSWER question, which means you are able to select one or more answers as being correct. Note that this does not necessarily me…
1 points Save Answer QUESTION 4 s one of the two methods of executing a program
1 points Save Answer QUESTION 4 s one of the two methods of executing a program in L1. It replaces each instruxtion in L1 by an equivalent sequence of instructions in LO and then …
1 pts D Question 1 Which of the following is the correct sequence of events when
1 pts D Question 1 Which of the following is the correct sequence of events when designing a solution? o write the code, design the interface, and plan the application. O plan the…
1 public class Accumulator 2 { 3 private double total: 4 private int N: 5 } 6 7
1 public class Accumulator 2 { 3 private double total: 4 private int N: 5 } 6 7 public class Transaction 8 { 9 private final String who: 10 private final Date when: 11 private fin…
1 public class Bird 2 { 3 private boolean canFly; 4 private double wingSpan; 5 6
1 public class Bird 2 { 3    private boolean canFly; 4    private double wingSpan; 5    6    public Bird() 7    { 8       canFly = yes; 9    } 10   public Bird(boolean canFly, dou…
1 public class CourseGrades 2 { 3 GradedActivity[] grades = new GradedActivity[4
1 public class CourseGrades 2 { 3 GradedActivity[] grades = new GradedActivity[4]; 4 5 public void setLab(GradedActivity grade) 6 { 7 grades[0] = grade; 8 } 9 public void setPassF…
1 public class MyLinkedList extends MyAbstractList { 2 private Node hea
1 public class MyLinkedList<E> extends MyAbstractList<E> { 2 private Node<E> head, tail; 3 4 /** Create a default list */ 5 public MyLinkedList() { 6 } 7 8 /** C…
1 python program. First to submit a functioning program that satisfies the given
1 python program. First to submit a functioning program that satisfies the given directions gets 5 stars and all points. If that is not achieved, all points and 5 stars go to the …
1 question) Arrange the following in the order of their growth rates, from least
1 question) Arrange the following in the order of their growth rates, from least to greatest: (5 pts) n3                     n2         nn        lg n     n!       n lg n         …
1 sequences and sampling. Suppose we went to sample the x-axis from Xmin to Xmax
1 sequences and sampling. Suppose we went to sample the x-axis from Xmin   to Xmax using a step size of step A)Draw a picture of what is going on. B) Write a expression for n the …
1 through 25 please 1. When the logic of a relay control panel needs to be chang
1 through 25 please 1. When the logic of a relay control panel needs to be changed, it usually involves _____. a. a software update b. installing higher-voltage relays c. wiring c…
1 through 4 could have mutiple answers 1) An Excel chart may have a. a vertical
1 through 4 could have mutiple answers 1) An Excel chart may have                 a. a vertical axis label                 b. a horizontal axis label                 c. gridlines …
1 use the E-R Diagram to create the following tables: Employees, Departments,Job
1 use the E-R Diagram to create the following tables: Employees, Departments,Jobs, Job_History, Locations,Countries. 2. after create these table above answer the question from 3 t…