Web development and programming
191828 questions • Page 310 / 3837
16. (15 marks) Write the Uti1Student class that includes the followings. A stati
16. (15 marks) Write the Uti1Student class that includes the followings. A static method readstudent that reads age, gpa, and name from the user, and creates a student object with…
16. (30 pts) Line Segment with End Points (Parts a- d). Let\'s say we need to de
16. (30 pts) Line Segment with End Points (Parts a- d). Let's say we need to design two classes, one named Point and one named LáneSegment. Each Point consists of two double preci…
16. //create first 2 series elements 17. series[0] = 0; 18. series[1] = 1; 19. 2
16. //create first 2 series elements 17. series[0] = 0; 18. series[1] = 1; 19. 20. //create the Fibonacci series and store it in an array 21. for(int i=2; i < limit; i++){ 22. …
16. 16.As system administrator of a popular social networking website, you notic
16. 16.As system administrator of a popular social networking website, you notice that usage peaks during working hours (10am - 5pm ) and the evening ( 7 - 10pm ) on the US east c…
16. A grammar can be expressed in BNF notation. There are two types of symbols i
16. A grammar can be expressed in BNF notation. There are two types of symbols in BNF expressions. Non-terminal symbols are typically A. Abstract concepts that need to be further …
16. A user reports that his USB 3.0 hard drive is working slower when it is conn
16. A user reports that his USB 3.0 hard drive is working slower when it is connected his USB hub at home than when he plugs it in at work. The other USB devices connected to the …
16. A war-dialing tool provides: 16.1 A list of Web servers; 16.2 A list of inst
16. A war-dialing tool provides: 16.1 A list of Web servers; 16.2 A list of installed protocols; 16.3 A list of all nodes to the destination; 16.4 A list of discovered telephone l…
16. All the capacitors in the circuit are the same. Which capacitors are in seri
16. All the capacitors in the circuit are the same. Which capacitors are in series with one another such that they will store the same amount of charge? For example, if capacitors…
16. Arrangements in the plane consist of the following elements, except a. verti
16. Arrangements in the plane consist of the following elements, except a. vertices b. segments or edges c. cells or faces Platonic solids e. None of these (i.e., all are included…
16. Book Club Points Serendipity Booksellers has a book club that awards points
16. Book Club Points Serendipity Booksellers has a book club that awards points to its customers based on the number of books purchased each month. The points are awarded as follo…
16. Coin Toss Simulator Write a class named coin. The coin class should have the
16. Coin Toss Simulator Write a class named coin. The coin class should have the following field: either" heads" or “tails" indicating A string named sideup. The sideUp field will…
16. Consider the following method. public int someCode(int a, int b, int c) { if
16. Consider the following method. public int someCode(int a, int b, int c) { if ((a < b) && (b < c)) return a; if ((a >= b) && (b &g…
16. Consider the following relational schemas from a rental car database Car VIN
16. Consider the following relational schemas from a rental car database Car VIN, Make. Model, Year, HomeLocation) Location LocationID, Street, City, State, Zip, Manager) Now cons…
16. For the program in the figure below, what is the address of the instruction
16. For the program in the figure below, what is the address of the instruction associated with the pressure switch? a) I:1/0 b) I:1/2 c) I:1/1 d) I:1/3 17. When would O:2/0 be en…
16. If two large float numbers are multiplied, the result may be too large to be
16. If two large float numbers are multiplied, the result may be too large to be represented. This is called __________________. 17. A. Finds the subscript of the first nonblank c…
16. In August 2011, a car dealer is trying to deter- mine how many 2012 cars sho
16. In August 2011, a car dealer is trying to deter- mine how many 2012 cars should be ordered. Each car ordered in August 2011 costs $20,000. The demand for the dealer's 2012 mod…
16. In this exercise, you explore the use of integers in monetary calculations.
16. In this exercise, you explore the use of integers in monetary calculations. a. Follow the instructions for starting C++ and opening the Advanced16.cpp file. Run the program. E…
16. In typical a hospital, a patient is examined by many doctors and a doctor ex
16. In typical a hospital, a patient is examined by many doctors and a doctor examines many patients. A database for the hospital has a PATIENTS table whose PK column is Patient-I…
16. In which one of the 3 types of memory are static variables stored? ( heap, s
16. In which one of the 3 types of memory are static variables stored? ( heap, stack, program ) 17. There are two things the NOP instruction accomplishes while doing nothing – wha…
16. List the 3 types of memory partitions as discussed in class. 17. In which of
16. List the 3 types of memory partitions as discussed in class. 17. In which of the 3 types of memory are static variables stored? 18. There are two things the NOP instruction ac…
16. List the 3 types of memory partitions as discussed in class. 17. In which of
16. List the 3 types of memory partitions as discussed in class. 17. In which of the 3 types of memory are static variables stored? 18. There are two things the NOP instruction ac…
16. Relational databases represent relationships using ________. a. foreign keys
16. Relational databases represent relationships using ________. a. foreign keys b. file systems c. metadata d. unique identifiers 3 17. Brad, a project manager, wants to build a …
16. Ro all that an ArrayDeque stores nelements at locations a[j].aKj+1)%alength
16. Ro all that an ArrayDeque stores nelements at locations a[j].aKj+1)%alength ,a[(j+n-1)%a.length] public class ArrayDequecT>extends AbstractListcT> TO a int j: int n; Wha…
16. Solve the following expression: 100 % 25 * 3: * A. 0 B. 3 C. 12 D. 25 E. 100
16. Solve the following expression: 100 % 25 * 3: * A. 0 B. 3 C. 12 D. 25 E. 100 17. In C++, given the following structure Which of the following statements will initialize a reco…
16. State whether the following exceptions are checked or unchecked exceptions.
16. State whether the following exceptions are checked or unchecked exceptions. (Hint: You will need to know the inheritance hierarchy of each of these exception classes: its supe…
16. Suppose a book author can be identified by an AuthorID and each book can be
16. Suppose a book author can be identified by an AuthorID and each book can be identified by an ISBN. Besides the identifier, an author and a book each has many other attributes …
16. The HTTP GET message Consider the figure below, where a client is sending an
16. The HTTP GET message Consider the figure below, where a client is sending an HTTP GET server, gaia.cs.umass.edu I message to a web http message Internet host, running a web br…
16. The method below is designed to print the smaller of two values received as
16. The method below is designed to print the smaller of two values received as arguments. Select the correct expression to complete the method. } a) value1 < value2 b) value1.…
16. The method below is designed to print the smaller of two values received as
16. The method below is designed to print the smaller of two values received as arguments Select the correct expression to complete the method. public void show Smaller (Comparabl…
16. The rows in the ORDERS table are currently stored in ascending order by ORDE
16. The rows in the ORDERS table are currently stored in ascending order by ORDERNO. You want the rows in the ORDERS table to be stored in descending order by CUSTOMERNO. The only…
16. This exercise gives some programming practice with dynamic arrays, but is pa
16. This exercise gives some programming practice with dynamic arrays, but is part of a larger project. continued in Chapters 5 and 8. Write a class called ServerGroup, which will…
16. Three algorithms A, B, and C, are under consideration for the Insert operati
16. Three algorithms A, B, and C, are under consideration for the Insert operation of a particular data set. Through an analysis of these algorithms, their speed functions have b…
16. Training Heart Rate In order for exercise to be beneficial to the cardiovasc
16. Training Heart Rate In order for exercise to be beneficial to the cardiovascular system, the heart rate (number of heart beats per minute) must exceed a value called the train…
16. Training Heart Rate in order for exercise to be beneficial to the cardiovasc
16. Training Heart Rate in order for exercise to be beneficial to the cardiovascular system, the heart rate (number of heart heats per minute) must exceed a value called the train…
16. Under which of the following conditions will evaluating this boolean express
16. Under which of the following conditions will evaluating this boolean expression cause an ArrayIndexOutOfBoundsException n represents the length of a? ((i <= n) && (…
16. Use the following data for the next question. All values are signed: .data v
16. Use the following data for the next question. All values are signed: .data val1 SDWORD ? val2 SDWORD ? Which selection is the correct implementation of the following pseudoco…
16. Use the following data for the next question. All values are signed: .data v
16. Use the following data for the next question. All values are signed: .data val1 SDWORD ? val2 SDWORD ? Which selection is the correct implementation of the following pseudoco…
16. Use the following data for the next question. All values are signed: .data v
16. Use the following data for the next question. All values are signed: .data val1 SDWORD ? val2 SDWORD ? Which selection is the correct implementation of the following pseudoco…
16. Use the following data for the next question. All values are signed: .data v
16. Use the following data for the next question. All values are signed: .data val1 SDWORD ? val2 SDWORD ? Which selection is the correct implementation of the following pseudoco…
16. What do the following two code fragments do given integers a and b? a-a+b, a
16. What do the following two code fragments do given integers a and b? a-a+b, a a b, ; Just print the code you wrote with comment 1. Bit reversal. Write a function that takes an …
16. What downloadable Web font format is the only format supported by Internet E
16. What downloadable Web font format is the only format supported by Internet Explorer? • TTF • EOT • WOFF • OTF 17. Alternative fonts are also referred to as ___________ fonts i…
16. What flags are set when the above operation is performed? A. carry C. none B
16. What flags are set when the above operation is performed? A. carry C. none B. overflow D. both carry and overflow 17. In a computer, typically, the same hardware is used to pe…
16. What is a result when you convert a decimal number 24 to BCD code? 1) 010101
16. What is a result when you convert a decimal number 24 to BCD code? 1) 01010111 2) 00011000 3) 01100100 4) 00100100 17. What is a result when you convert a BCD code 01101001100…
16. What is stored in alpha after the following code executes? int[] alpha = new
16. What is stored in alpha after the following code executes? int[] alpha = new int[5]; for (int j = 0; j < 5; j++) { alpha[j] = 2 * j; if (j % 2 == 1) alpha[j - 1…
16. What is the output of the following code? df = pd.DataFrame(np.arange(9).res
16. What is the output of the following code? df = pd.DataFrame(np.arange(9).reshape((3,3)), columns = list('ABC')) df.ilo[1] (Points : 1) A 3 B 4 C 5 A 1 B 2 C 3 …
16. What is the value of r16 after following instruetion sequence Ldi r16, 200 A
16. What is the value of r16 after following instruetion sequence Ldi r16, 200 Andi r16, 1 a. 1 b. o c. 200 d. None Answer: 17. The compare instruction spi r16, 0 will update the …
16. When adding two n-bit 2’s complement numbers, overflow will NOT occur, if a.
16. When adding two n-bit 2’s complement numbers, overflow will NOT occur, if a. Both operands have different sign bits b. Both operands have same sign bits, and the sign bit of t…
16. When preparing a representative sample from a list of 200 customers who comp
16. When preparing a representative sample from a list of 200 customers who complained about errors in their statements, amight select any 20 customers. b stratified sample e. ran…
16. When using overloaded functions in appication code, the compiler will call w
16. When using overloaded functions in appication code, the compiler will call which one 17. Constructors, which are automatically called when? 18. the overloaded function execute…
16. Where must you code the javadoc comment for a method? (a)Immediately before
16. Where must you code the javadoc comment for a method? (a)Immediately before the method (b)Before any statements in the method (c)After any statements in the method (d)Anywhere…
Subject
Web development and programming
Use Browse or pick another subject.