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

a) Write the pseudocode for an efficient algorithm that computes the 25th and 75
a) Write the pseudocode for an efficient algorithm that computes the 25th and 75th percentile (i.e, returns the identity of the (N/4)th and (3N/4)th elements) in an array of unsor…
a) Write the statements to declare a \"struct\" type named \"Circle\" which will
a) Write the statements to declare a "struct" type named "Circle" which will describe a circle. The following information should be included: Radius (double) Diameter (double) Are…
a) You will create a DTD from scratch. Write the correct DTD declaration for eac
a) You will create a DTD from scratch. Write the correct DTD declaration for each of the following descriptions. (Your answers should NOT be XML elements!) Declare an element e wh…
a) Your city has 100 cells in one of its second-generation cellular telephone sy
a) Your city has 100 cells in one of its second-generation cellular telephone systems. As a rough rule of thumb, you can divide the number of cells by seven and get the average nu…
a) Your small company of less than 200 employees lias been assigned a class C ne
a) Your small company of less than 200 employees lias been assigned a class C network by its ISP. The class C network address assigned to you is 204.45.87.0. You need to divide th…
a) create a Node Object using generics. Then use the class Shape as the tag (
a) create a Node Object using generics. Then use the class Shape as the tag (<Shape>) when you create the Node Objects. Your Node Objects should implement Comparable. Define…
a) create a Node Object using generics. Then use the class Shape as the tag (
a) create a Node Object using generics. Then use the class Shape as the tag (<Shape>) when you create the Node Objects. Your Node Objects should implement Comparable. Define…
a) create a method called sum in class Node1 that will recursively calculate the
a) create a method called sum in class Node1 that will recursively calculate the sum of all of the int data values from that node to the last node in the list. (HINT: using the ne…
a) double dotProduct(double[] a, double[] b){ double sum = 0.0; for (int i = 0 ;
a) double dotProduct(double[] a, double[] b){ double sum = 0.0; for (int i = 0 ; i < a.length ; i++){ sum += (a[i] * b[i]); }return sum; } b)boolean inFirstFive(char c, String …
a) interp1. Find the y values that correspond to the xi values using % linear in
a) interp1. Find the y values that correspond to the xi values using % linear interpolation from the vectors x and y. (A) b) spline. Find the y values that correspond to the xi va…
a) sub $s0, $s0, $s1 sub $s0, $s0, $s3 add $s0, $s0, $s1 b) addi $t0, $s6, 4 add
a) sub $s0, $s0, $s1 sub $s0, $s0, $s3 add $s0, $s0, $s1 b) addi $t0, $s6, 4 add $t1, $s6, $0 sw $t1, 0($t0) lw $t0, 0($t0) add $s0, $t1, $t0 For the MIPS assembly above, assume t…
a) the name of the class is TriangleType b) The class TriangleType has three mem
a) the name of the class is TriangleType b) The class TriangleType has three member variables: sideA, sideB and sideC c)The class triangleType has the following member functions: …
a) void cleanse(vector & v) Implement a function that replaces in a vector each
a) void cleanse(vector & v) Implement a function that replaces in a vector each occurrence of the number 0 with the number 1 and the number 13 with the number 7 and leaves all…
a) which students are enrolled in database and networking? ( hint: use sectionNo
a) which students are enrolled in database and networking? ( hint: use sectionNo for each class so you can determine the answer from the registration table by itself) b) which ins…
a) write a recursive Java method writeLine that writes a character repeatedly to
a) write a recursive Java method writeLine that writes a character repeatedly to form a line of n characters. For example, writeLine (' * ',5,3) produces the line ***** b) now wri…
a) write c++ program that stops read a line of text when a period is entered and
a) write c++ program that stops read a line of text when a period is entered and displays the sentence with correct spacing and capitalization . for this program correct spacing m…
a) write c++ program using nested while loops that will print thefollowing *****
a) write c++ program using nested while loops that will print thefollowing ******* ****** ***** **** *** ** * b) modify the program code of part that now it should asked theuser h…
a) { IntNode pos = head; while (pos != null && pos.next != null) { pos.next = po
a) { IntNode pos = head; while (pos != null && pos.next != null) { pos.next = pos.next.next; pos = pos.next; } } b) int countDuplicates(IntNode head) { int numduplicates =…
a). Create a new java project file, CMSC246. In it, create a new Java class, Pro
a). Create a new java project file, CMSC246. In it, create a new Java class, Project5Java. Write a main method and static method called greatestOfThree that returns the greatest o…
a). The first function, combine_arr(), has two inputs arrays of possibly differe
a). The first function, combine_arr(), has two inputs arrays of possibly different widths (that are already sorted in ascending order) and as output an array which combines the tw…
a). The impressive functions performed by computers essentiallyinvolve the manip
a). The impressive functions performed by computers essentiallyinvolve the manipulation of zeros and ones. b). People prefer to manipulate bits instead of characters andfields bec…
a). nslookup google.com b). c). nslookup -type=NS google.com How to explain the
a). nslookup google.com b). c). nslookup -type=NS google.com How to explain the finding from wireshark for question c,d and e? a) [] Run nslookup to obtain the IP address of a Web…
a).Write a function called Doubling with a void return type, which has only a si
a).Write a function called Doubling with a void return type, which has only a single reference parameter, i.e., will be called by reference such that when the function is called s…
a)A potential variation of Insertion Sort is to use Binary Search – rather than
a)A potential variation of Insertion Sort is to use Binary Search – rather than Linear Search – to find the point in which to insert the next element from the unsorted portion int…
a)Consider the following problem. You are given an array S of n numbers (unsorte
a)Consider the following problem. You are given an array S of n numbers (unsorted), and you are given a value K. You wish to rearrange S such that all the numbers <= K come bef…
a)Consider the following problem. You are given an array S of n numbers (unsorte
a)Consider the following problem. You are given an array S of n numbers (unsorted), and you are given a value K. You wish to rearrange S such that all the numbers <= K come bef…
a)Consider the following problem. You are given an array S of n numbers (unsorte
a)Consider the following problem. You are given an array S of n numbers (unsorted), and you are given a value K. You wish to rearrange S such that all the numbers <= K come bef…
a)Create complete Login/Register page (with DB connection, read data from databa
a)Create complete Login/Register page (with DB connection, read data from database - Without Salt & Hash, Without sending email) [This task also include the loading up of one …
a)Describe how a variation of Quicksort can be used to solve the Selection Probl
a)Describe how a variation of Quicksort can be used to solve the Selection Problem. (Hint consider which of the two parts to the partition contains the element you want.) What are…
a)Determine the number of clock cycles needed to execute this code segment on th
a)Determine the number of clock cycles needed to execute this code segment on the pipelined implementation of the MIPS processor (5-stage pipeline). b) Identify the registers that…
a)From this coding: import java.util.ArrayList; public class Town{ public static
a)From this coding: import java.util.ArrayList; public class Town{    public static void main (String[] args) {        ArrayList<String> townList = new ArrayList<String&g…
a)List the hexadecimal code for each instruction. b)Draw the symbol table. c) Fi
a)List the hexadecimal code for each instruction. b)Draw the symbol table. c) Fill in the blanks with correct values for registers PC and AC, and the contents in memory locations …
a)Use a loop to determine how many years it will take 100 grams of an unknown su
a)Use a loop to determine how many years it will take 100 grams of an unknown substance to decay below 5 grams. The substance decays at a rate of 1/3 of its value every year. Afte…
a)What are the grep and egrep commands used for, and what is the difference betw
a)What are the grep and egrep commands used for, and what is the difference between them? b) Give the command to search the file ‘idioms.txt’ for all lines beginning with ‘When’ o…
a)Which of the following true about source and listener objects? They must alway
a)Which of the following true about source and listener objects? They must always be different objects They can be the same object The objects must always be of different types Bo…
a)Why do you think it is important to use a network protocol analyzer like Wires
a)Why do you think it is important to use a network protocol analyzer like Wireshark in order to analyze the network? b)What is a broadcast network address and why it is used on a…
a)Write a program that prompts the user to enter an 8-character password, then p
a)Write a program that prompts the user to enter an 8-character password, then prints the characters back to the screen along with their corresponding ASCII values. b) Modify  the…
a)Write an if-else statement with multiple branches. If givenYear is 2100 or gre
a)Write an if-else statement with multiple branches. If givenYear is 2100 or greater, print "Distant future" (without quotes). Else, if givenYear is 2000 or greater (2000-2099), p…
a)Write what each instruction does in the \"comment section. The first one is co
a)Write what each instruction does in the "comment section. The first one is completed for you Address nstruction X0123 X0124 0001 0010 0010 1010 X0125 X0126 X0127 0001 0010 0110 …
a)You can begin by reading the html file. R makes this easy to do Your first tas
a)You can begin by reading the html file. R makes this easy to do Your first task is to write code to count the total number of faculty in the department. Everyone listed on the w…
a)not $t1, $t2 //bit-wise invert b)orn $t1, $t2, $t3 // bit-wise OR of $t2, !$t3
a)not $t1, $t2 //bit-wise invert b)orn $t1, $t2, $t3 // bit-wise OR of $t2, !$t3 1) Logical instructions above are not included in MIPS instruction set but are described in commen…
a)not $t1, $t2 //bit-wise invert b)orn $t1, $t2, $t3 // bit-wise OR of $t2, !$t3
a)not $t1, $t2 //bit-wise invert b)orn $t1, $t2, $t3 // bit-wise OR of $t2, !$t3 1) Logical instructions above are not included in MIPS instruction set but are described in commen…
a)start = A ; A = B, C; B = \"a\" , B ,\"a\" | D; C = D , E , F ; D = E , \
a)start = A <EOF>; A = B, C; B = "a" , B ,"a" | D; C = D , E , F ; D = E , "b" , D|F ; E = A | "C" ; F = "d" , "d" , F| epslon; ========================== b) start = A <E…
a,b, and c are already done, Write list functions that carry out the following t
a,b, and c are already done, Write list functions that carry out the following tasks for a list of integers in Intro to Python. For each function, provide a test program. Make sur…
a,b,c and please? Show why the following \"basic principles\" of the standard op
a,b,c and please? Show why the following "basic principles" of the standard operators hold: The basic property of Negation NEG: Gamma = phi just in case Gamma (or if and only if) …
a,b,c show step DUE: September 6, 2018 Write schemas for the following relations
a,b,c show step DUE: September 6, 2018 Write schemas for the following relations. (10 points each) a) 1. PROD_CODE PROD DESCRIPT PROD PRICE PROD ON HAND VEND_CODE Table Name: PROD…
a,b,c,d Use both INVENTORY and WAREHOUSE tables to write SOL statements for the
a,b,c,d Use both INVENTORY and WAREHOUSE tables to write SOL statements for the following queries. Make sure to include the screen capture of the SQL output that you get after exe…
a,pter 4 Visual Elements and Graphics 1. code an img tag for the mugs jpg image
a,pter 4 Visual Elements and Graphics 1. code an img tag for the mugs jpg image above the h2 element in the main area. Be sure to include the alt, height, and width attributes. Al…
a- Eclipse ndow Help ProblemSet. Algorithms 1..DProblemSet. ProblemSet blemSet i
a- Eclipse ndow Help ProblemSet. Algorithms 1..DProblemSet. ProblemSet blemSet import java.lang.reflect.Array public class ProblemSet zhengtao_e009t qi: write a public static meth…
a. $s0 $s1 $s2 $s3 $s4 $s5 $s6 $s7 $v1 $v2 1 4 4 2 3 2 3 6 5 4 b. $s0 $s1 $s2 $s
a. $s0 $s1 $s2 $s3 $s4 $s5 $s6 $s7 $v1 $v2 1 4 4 2 3 2 3 6 5 4 b. $s0 $s1 $s2 $s3 $s4 $s5 $s6 $s7 $v1 $v2 1 4 3 3 2 2 3 8 5 4 3. Consider the memory location 0x10000000 has the va…