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

1 . Start by calling the irvine-crscr\" subroutine, then 2. Write a message aski
1 . Start by calling the irvine-crscr" subroutine, then 2. Write a message asking for the number of number to add. Irvine “writestring" to display a message. Use the Irvine Readin…
1 . Suppose that an open-address hash table has a capacity of 811 and it contain
1 . Suppose that an open-address hash table has a capacity of 811 and it contains 81 elements. What is the table's load factor? (An appoximation is fine.) #2. Suppose you are buil…
1 . What is the output of the following C++ loop? for ( int K =11 ; K >= 1 ; K =
1 . What is the output of the following C++ loop? for ( int K =11 ; K >= 1 ; K = K + 2 ) cout << K << endl; 2. What is the output of the following loop? int M = 1; …
1 . When an object\'s lifetime is over, the object\'s ______ is called automatic
1. When an object's lifetime is over, the object's ______ is called automatically. 2. If a node has no successor, its link is set to a special ______ value. 8. Linked lists allow …
1 . When creating a new table, Access creates the first field and names it _____
1. When creating a new table, Access creates the first field and names it ________ which Access assigns a unique sequential number. A) ID B) OBJECT C) ITEM D) VALUE 2. When consid…
1 . Which (two) of the following CPUs are Intel\'s current budget desktop market
1. Which (two) of the following CPUs are Intel's current budget desktop market? (a) core i3 (b) core i5 (c)core i7 (d) pentium (e) celeron (f) sempron (g) athlon (h)FX. 2. ExFAT i…
1 . Which of the following are legal int literals? Choose all that are correct.
1. Which of the following are legal int literals? Choose all that are correct. A. 22 B. 1.5 C. -1 D. 10.0 E. "42" F. 42 2. What is the value of this expression? 2 + 19 % 5 - (11 *…
1 . Which of the following will create an array called a that contains ten integ
1. Which of the following will create an array called a that contains ten integers? Select one: a. int[10] a; b. int[] a = new int[10]; c. int[] a = new[10]; d. int[] a; 2. Which …
1 . Write a C Program ( NOT C++) Using Video Studios 2015 that finds the \"small
1. Write a C Program ( NOT C++) Using Video Studios 2015 that finds the "smallest" and "largest" in a series of words. After the user enters the words, the program will determine …
1 . Write a c Program Using Video Studios 2015 that finds the \"smallest\" and \
1. Write a c Program Using Video Studios 2015 that finds the "smallest" and "largest" in a series of words. After the user enters the words, the program will determine which words…
1 . Write a method, called isSorted, that takes an array of integers as input, a
1. Write a method, called isSorted, that takes an array of integers as input, and returns true if the array is sorted in ascending order (e.g., [2,3,7,8,22,59]), and false otherwi…
1 . Write a program in C or C++ to sort a set of integers. Use quicksort algorit
1. Write a program in C or C++ to sort a set of integers. Use quicksort algorithm. Input (from standard input: keyboard): 1. n – the number of integers to be sorted 2. n integers …
1 . ________________ is a Usability Goal and refers to how easya system is to re
1 . ________________ is a Usability Goal and refers to how easya system is to remember how to use, once learned. ·        Learnablity ·        Memorabilty ·        Utility 2. ----…
1 . ~C() is a prototype for the destructor of a class named C.(True or false) A)
1. ~C() is a prototype for the destructor of a class named C.(True or false) A) True B) False 2. If a class contains a pointer to dynamically allocated memory, which of the follow…
1 .Describe a specific scenario, situation, or application where using a foreign
1 .Describe a specific scenario, situation, or application where using a foreign key would be necessary. 2. Explain your reasons, including the characteristics of the data, that n…
1 .Which file I/O function writes a data to a file in PHP? Select one: a. printf
1.Which file I/O function writes a data to a file in PHP? Select one: a. printfile() b. file() c. file_write_contents() d. file_put_contents() e. file_get_contents() 2.In PHP file…
1 .Which of the following Bare Bones programs is self-terminating Assume X > 0 A
1.Which of the following Bare Bones programs is self-terminating Assume X > 0 A. while X not 0:     B. while X not 0: decr X C. decr X while X not 0: 2: If c = x mod n then c i…
1 .Which of the following is primarily used for security? Logical database desig
1 .Which of the following is primarily used for security? Logical database design rules Authorization rules View integration CREATE TABLE statements 2 .A conceptual data model of …
1 / An implementation of a priority queue using an array-based heap. / 2 public
1 / An implementation of a priority queue using an array-based heap. / 2 public class HeapPriorityQueue<K,V> extends AbstractPriorityQueue<K,V> { 3 / primary collectio…
1 / An implementation of a priority queue using an array-based heap. / 2 public
1 / An implementation of a priority queue using an array-based heap. / 2 public class HeapPriorityQueue extends AbstractPriorityQueue { 3 / primary collection of priority queue en…
1 // DebugSix4.java 2 // Displays 5 random numbers between 3 // (and including)
1 // DebugSix4.java 2 // Displays 5 random numbers between 3 // (and including) user-specified values 4 import java.util.Scanner; 5 public class DebugSix4 6 { 7 public static void…
1 // Fig. 7.11: DeckOfCardsTest.java 2 // Card shuffling and dealing. 3 4 public
1 // Fig. 7.11: DeckOfCardsTest.java 2 // Card shuffling and dealing. 3 4 public class DeckOfCardsTest 5 { 6 // execute application 7 public static void main(String[] args) 8 { 9 …
1 // This program converts the speeds 60 kph through 2 // 130 kph (in 10 kph inc
1 // This program converts the speeds 60 kph through 2 // 130 kph (in 10 kph increments) to mph. 3 #include <iostream> 4 #include <iomanip> 5 using namespace std; 6 7 …
1 // This program usus a switch statement to determine 2 // the item selected fr
1 // This program usus a switch statement to determine 2 // the item selected from a menu. 3 #include <iostream> 4 #incude <iomanip> 5 using namespace std; 6 7 int mai…
1 //Solution.cpp #pragma once #include 6 typedef int ListItem; 7 #define INVALID
1 //Solution.cpp #pragma once #include 6 typedef int ListItem; 7 #define INVALID-LIST-ITEM (-1) 10 11 class List 13 TODO !1 15 16 17 18 19 20 21 This is the abstract class from wh…
1 0verview For this assignment, you are asked to implement a class that represen
1 0verview For this assignment, you are asked to implement a class that represents polygon and a class that represents a point. Each polygon consists of a list of points. 2 Requir…
1 1-3 Suppose a JavaFX class has a binding property named weight of the type Dou
1 1-3 Suppose a JavaFX class has a binding property named weight of the type DoubleProperty. By convention, which of the following methods are defined in the class (choose three)?…
1 100 0000 -1 .0 * 2 1 = -2 e. How 1 will be represented? 0 011 0000 1.0 * 2 0 =
1 100 0000 -1 .0 * 2 1 = -2 e.      How 1 will be represented? 0 011 0000 1.0 * 2 0 = 1 f.        What is the smallest positive number in this representation? (without denormal) m…
1 1000 201000 1 202000 1 101100 4 101200 2 50 00 100200 1 101100 250 00 101200 1
1 1000 201000 1 202000 1 101100 4 101200 2 50 00 100200 1 101100 250 00 101200 1 300 00 30 00 50 00 3 2000 4 2000 5 3000 6 3000 7 3000 300 00 50 00 Where SKU is a "Stock have at l…
1 2 3 4 5 6 1 X X X X X X 2 X X X X X X 3 X X X X X X Another array should hold
   1 2 3 4 5 6 1 X X X X X X 2 X X X X X X 3 X X X X X X Another array should hold the pairs of values and should becreated by random. The values can be any symbol you would liket…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 public class WhatzitRevisited {     public static void main(String[] args) {    …
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 public static
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 public static void main(String[] args) {     SimpleReader input = new SimpleReader1L();     SimpleWriter output =…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 String theBard=\"Alas poor Yorick\"; String the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 String theBard="Alas poor Yorick"; String theSubBard=theBard.substring(5,9); String theCliche="A poor workman blames his tools"; String theSubClic…
1 2 Question 1) Aluminum alloys are made by adding other elements to aluminum to
1 2 Question 1) Aluminum alloys are made by adding other elements to aluminum to improve its properties, such as hardness or tensile strength. The following table shows the compos…
1 2 please answer what print in each lines my deck. display() unshuffled deck A4
1 2 please answer what print in each lines my deck. display() unshuffled deck A4 24 34 44 54 64 74 84 94 104 J4 Q4 K4 A. 24 3. 4. 54 64 74 84 94 10% J+ Q4 K4 my deck. shuffle my d…
1 2 you can also use imports, for example: import java.util. A5]20 Triplet (0, 2
1 2 you can also use imports, for example: import java.util. A5]20 Triplet (0, 2, 4) is a triangle and its perimeter equals 10+ 5+8- 23. There is no other triangle in this array w…
1 4.8 (Guess the NumberGame ) Write a program that plays %u201Cguess the number%
1 4.8 (Guess the NumberGame) Write a program that plays %u201Cguess the number%u201D as follows: Your program chooses the number to be guessed by selecting an i nt at random in th…
1 5 2 0 sequence process allocation claim needs available P0 0 0 1 2 0 0 1 3 P1
1     5     2     0 sequence    process                 allocation                               claim                                     needs                                   …
1 844 238 866 pof customer service 1 844 238 866 pof customer service 1 844 238
1 844 238 866 pof customer service 1 844 238 866 pof customer service 1 844 238 866 pof customer service 1 844 238 866 pof customer service 1 844 238 866 pof customer service 1 84…
1 A 1inked list librarv This is a refresher lab. The tasks here are setting up s
1 A 1inked list librarv This is a refresher lab. The tasks here are setting up some of the future topics, but are mostly things you have seen before only have the functions specif…
1 A Java exception is an instance of __________. A. RuntimeException B. Exceptio
1 A Java exception is an instance of __________. A. RuntimeException B. Exception C. Error D. Throwable E. NumberFormatException Answer: 2 An instance of _________ describes syste…
1 A SSIGNMENT 4 –M ORTGAGE A MORTIZATION T ABLE –W ITH C OMMA S EPARATED CURRENC
1 ASSIGNMENT 4 –MORTGAGE AMORTIZATION TABLE –WITH COMMA SEPARATED CURRENCY FORMAT This assignment is to use your existing program of assignment 2 to include additional number form…
1 A can only send data, B can receive and send data 2 A can send and receive dat
1 A can only send data, B can receive and send data 2 A can send and receive data, B can only receive data. 3 A can only send data, B can only receive data 4 A can only receive da…
1 A constructor Always accepts two arguments Has the same name as the class Has
1 A constructor Always accepts two arguments Has the same name as the class Has return type of void Always has an access specifier of private 2 A constructor is a method that Perf…
1 A series of SQL statements that you can store in a file is called a script cat
1 A series of SQL statements that you can store in a file is called a script catalog view subquery view 1 points    QUESTION 2 Code a statement that assigns the value “Test” to a …
1 All functions are characterized as either value-returning functions or ____ fu
1 All functions are characterized as either value-returning functions or ____ functions. Choose one answer. a. program-defined b. void c. built-in d. static ..Question 2 The funct…
1 An instance variable refers to a data value that a is owned by an particular i
1 An instance variable refers to a data value that a is owned by an particular instance of a class and no other b is shared in common and can be accessed by all instances of a giv…
1 Assume you are responsible for setting up security for an existing bank; they
1 Assume you are responsible for setting up security for an existing bank; they are upgrading all their equipment including setting up new security. Assume they have both a LAN an…
1 Assuming that Moore’s Law continues to hold true, where n is the number of tra
1 Assuming that Moore’s Law continues to hold true, where n is the number of transistors that can currently be placed on an integrated circuit (chip), and k*n is the number that c…