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

1.) What will be the output of the program? for (int i = 0; i < 4; i += 2) { Sys
1.) What will be the output of the program? for (int i = 0; i &lt; 4; i += 2) { System.out.print(i + " "); } System.out.println(i); /* Line 5 */ A. 0 2 4 B. 0 2 4 5 C. 0 1 2 3 4 D…
1.) When you call a function and pass an array, a copy of the array is made in t
1.) When you call a function and pass an array, a copy of the array is made in the function. true false 2. If   (var ==false) is testing a: a string a character a boolean variable…
1.) Which of the following are legal Java identifiers? a.) 4Bforts b.) B_Fort c.
1.) Which of the following are legal Java identifiers? a.) 4Bforts b.) B_Fort c.) $.4 d.) B-b34 e.) For Honor 2.) What is the Java convention for capitalizing an identifier if a.)…
1.) Which of the following is NOT a difference between methods and functions? A
1.) Which of the following is NOT a difference between methods and functions? A function is defined as part of a class definition A method is defined as part of a class definition…
1.) Which of the following is a correct way to declare an int array. 2.)Which of
1.) Which of the following is a correct way to declare an int array. 2.)Which of the following to is a correct way to declare and initialize an array of integers with length 10? 3…
1.) Will each of the following SQL statements be executed successfully? In other
1.) Will each of the following SQL statements be executed successfully? In other words, do they violate any constraints for the given database state? Please list all violated cons…
1.) With switch blocks if you don\'t include a break statement then execution co
1.) With switch blocks if you don't include a break statement then execution continues within in the switch block until the next break statement or the end of the block. True Fals…
1.) Write a class named Uniform with only a main method In main, create a Random
1.) Write a class named Uniform with only a main method In main, create a Random instance and then write a simple counting loop that will generate 100 ints between 1 and 6. You ca…
1.) Write a function called canMakeSum() that takes a sorted array of n integers
1.) Write a function called canMakeSum() that takes a sorted array of n integers and determines whether two distinct elements of the array add up to some specified value, "key". I…
1.) Write a function that can take in two matrix of any size and solve the syste
1.) Write a function that can take in two matrix of any size and solve the system of equations using matrix operation a. The function will take in two matrix and output one matrix…
1.) Write a program that prints a calendar for a year. Prompt the user for which
1.) Write a program that prints a calendar for a year.Prompt the user for which day of the weekJanuary 1 is on and whether the year is a leap year. The day that January 1 is on is…
1.) Write a program that will define the following string manipulation functions
1.) Write a program that will define the following string manipulation functions. Each is analogous to the corresponding C++ string function. STRLEN( Str &amp;, Len &amp;) Sent th…
1.) Write a program that will read a text file that contains an unknown number o
1.) Write a program that will read a text file that contains an unknown number of movie review                                      scores. Read the scores as Double values and pu…
1.) Write a single, simple SELECT statement from the employees table that return
1.)              Write a single, simple SELECT statement from the employees table that returns: ·       the minimum department_number aliased as min_dno ·       and the maximum de…
1.) Write an Application that extends the Thread class, call it MyThread.java. H
1.) Write an Application that extends the Thread class, call it MyThread.java. Have your new class accept an integer(i.e. 200) when it is instantiated. (MyThread mt = new MyThread…
1.) Write an efficient algorithm for finding the smallest element in an unsorted
1.) Write an efficient algorithm for finding the smallest element in an unsorted list. Compare your algorithm with the algorithm in your text. Specifically give the exact number o…
1.) Write the HTML for a hyperlink to a video called demo1.mov on a web page. 2.
1.) Write the HTML for a hyperlink to a video called demo1.mov on a web page. 2.)Write the HTML to allow a web visitor to control the playback of an audio file named lesson1.mp3 3…
1.) Write the definition of a class Counter containing: An instance variable cou
1.) Write the definition of a class  Counter containing: An instance variable   counter of type  int , initialized to 0. A method called  increment that adds one to the instance v…
1.) You whirl a stone in a horizontal circle in such a way that the stone is in
1.) You whirl a stone in a horizontal circle in such a way that the stone is in uniform circular motion. Which of the following is true for this situation? (Select all that apply.…
1.) \"If a super class and a subclass both have a method with the same name and
1.) "If a super class and a subclass both have a method with the same name and number of parameters, _____." we say the subclass method overrides the superclass method. we say the…
1.) boolean leapyear = (year % 4 == 0 && year % 100 != 0) (year % 400 = 0) Use t
1.) boolean leapyear = (year % 4 == 0 &amp;&amp; year % 100 != 0) (year % 400 = 0) Use the statements above in your program. Connect the two statements above with a short-circuit …
1.) design a class named Person which should have the following fields person\'s
1.) design a class named Person which should have the following fields person's name(String) address(String) telephone number(String) 2.) you should implement the following constr…
1.) design a class named Person which should have the following fields person\'s
1.) design a class named Person which should have the following fields person's name(String) address(String) telephone number(String) 2.) you should implement the following constr…
1.) imagine a pile of books on your desk. each book is so large and heavy that y
1.) imagine a pile of books on your desk. each book is so large and heavy that you can remove only the top one from the pile. you cannot remove a book from under another one. like…
1.) write a Depth first search iterator for the tree class. write a unit test to
1.) write a Depth first search iterator for the tree class. write a unit test to test the iterator. the depth search iterator is for the generic tree class i made for these functi…
1.) write a cyc- program that does first order linear regression analysis on the
1.) write a cyc- program that does first order linear regression analysis on the three laboratory data sets listed below. Note your program should print out a separate table for c…
1.) write a sorted list class using array by implementing sorted list ADT(page 4
1.) write a sorted list class using array by implementing sorted list ADT(page 413 on text book). The data should consist of the following. a. name b. date of birth c. gender list…
1.)A queue is a data storage device much like a stack. The difference is that in
1.)A queue is a data storage device much like a stack. The difference is that in a stack the last data item stored is the first one retrieved, while in a queue the first data item…
1.)Declare an integer array of size 60 named test array. 2.)Write a function pro
1.)Declare an integer array of size 60 named test array. 2.)Write a function prototype for each of the following functions: You dont need to write the function body just the first…
1.)Explain the operation of the Address Resolution Protocol? 2.)Discuss the trad
1.)Explain the operation of the Address Resolution Protocol? 2.)Discuss the trade-offs between bus-based and switched Ethernet. State the various conditions under which one or the…
1.)Get S# values for suppliers who supply both projects J1 and J2. 2.)Get S# val
1.)Get S# values for suppliers who supply both projects J1 and J2. 2.)Get S# values for suppliers who supply project J1 with a red part. 3.) Get P# values for parts supplied to an…
1.)Given a set, weights , and an integer desired_weight , remove the element of
1.)Given a set, weights, and an integer desired_weight, remove the element of the set that is closest to desired_weight (the closest element can be less than, equal to OR GREATER …
1.)Locate information about the Cell Processor. Describe the tasks performed by
1.)Locate information about the Cell Processor. Describe the tasks performed by the various slave processors.What is the primary role of the master processor? Explain the advantag…
1.)Please define a two dimensional array to hold the following table 12 14 8 25
1.)Please define a two dimensional array to hold the following table 12 14 8 25 107 88 15 17 70 71 18 23 The first dimension holds the rows and the second dimension holds the colu…
1.)What will happen if you use instead of in an HTML documen
1.)What will happen if you use &lt;/CENTER&gt; instead of &lt;/center&gt; in an HTML document? A.)The text inside the tag will be centered and appear in all uppercase letters. B.)…
1.)When we input data using ByteStream & write---> String s=xy.readLine(); int x
1.)When we input data using ByteStream &amp; write---&gt; String s=xy.readLine(); int x=Integer.parseInt(s); Can the 2nd line be called as TypeCasting since we are entering the da…
1.)Which of the expressions is equivalent to the following statement: The sum of
1.)Which of the expressions is equivalent to the following statement: The sum of two even numbers is even. 2.) Find a counterexample for the statement: every month of the year has…
1.)Why would DMA be useless if the computer did not have interrupt capability? 2
1.)Why would DMA be useless if the computer did not have interrupt capability? 2.) What is an interrupt vector? 3.)To use a computer for multimedia (moving video and sound), it is…
1.)Write a program that requests the user to enter the number100.If the user ent
1.)Write a program that requests the user to enter the number100.If the user enters something else, keep asking the user toenter 100!Print a thank you message once they have enter…
1.)Write a program that requests the user to enter the number100.If the user ent
1.)Write a program that requests the user to enter the number100.If the user enters something else, keep asking the user toenter 100!Print a thank you message once they have enter…
1.)Write the definition of a class Counter containing: An instance variable name
1.)Write the definition of a class  Counter containing: An instance variable  named  counter of type  int . A constructor that takes one  int argument and assigns its value to  co…
1.- A) Express each of the signed decimal integersthat follow as either a byte-
1.- A) Express each of the signed decimal integersthat follow as either a byte- or a word hexadecimal number (use2's-complement notation for negative numbers) a) +127,     b)-10, …
1.- Create a regular user named user01. 2.- As super-user create a directory cal
1.- Create a regular user named user01. 2.- As super-user create a directory called backup under the home directory of user01 and change the owner and group associated to the dire…
1.- In this assignment you will implement a simulation of the interaction of use
1.- In this assignment you will implement a simulation of the interaction of user programs with the OS to execute an I/O operation. User programs: User programs will communicate w…
1.- In this assignment you will implement a simulation of the interaction of use
1.- In this assignment you will implement a simulation of the interaction of user programs with the OS to execute an I/O operation on two different devices. User programs: User pr…
1.- In this assignment you will implement a simulation of the interaction of use
1.- In this assignment you will implement a simulation of the interaction of user programswith the OS to execute an I/O operation on two different devices. User programs: User pro…
1.- In this assignment you will implement a simulation of the interaction of use
1.- In this assignment you will implement a simulation of the interaction of user programs with the OS to execute an I/O operation. User programs: User programs will communicate w…
1.- Show how the double word 12345678 16 is storedin memory starting at address
1.- Show how the double word 1234567816 is storedin memory starting at address A00116. Is the double wordaligned or misaligned? 2.- Show how the word ABCD16 is stored in memorysta…
1.- respondents to respond to aquestion ?ntheir own terms: I. Open ended questio
1.- respondents to respond to aquestion ?ntheir own terms: I. Open ended questions 2. Closed ended questions 3. Multipie choice questions 4. Multiple choice grid questions Google …
1.. Currently, Internet users in the USA are subject to extensive tracking by __
1.. Currently, Internet users in the USA are subject to extensive tracking by _______ . A) US federal law enforcement without a warrant B.) Advertising companies C.) The KGB D.) U…