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

7. A company pays an annual bonus to its employees. The bonus is calculated by m
7. A company pays an annual bonus to its employees. The bonus is calculated by multiplying the employee's annual salary by a bonus rate, which is based on the number of years the …
7. A microcontroller is before the ISR is finished. What happens? executing an i
7. A microcontroller is before the ISR is finished. What happens? executing an interrupt function, or ISR. Another interrupt occurs New interrupt stops original ISR, new ISR execu…
7. A. Design an application for the homestead furniture store that gets sales tr
7. A. Design an application for the homestead furniture store that gets sales transaction data including an account number customer name and purchase price. Output the account num…
7. A. Design an application for the homestead furniture store that gets sales tr
7. A. Design an application for the homestead furniture store that gets sales transaction data including an account number customer name and purchase price. Output the account num…
7. A. Design an application for the homestead furniture store that gets sales tr
7. A. Design an application for the homestead furniture store that gets sales transaction data including an account number customer name and purchase price. Output the account num…
7. Airline Reservations. Write a reservation system for an airline flight. Assum
7. Airline Reservations. Write a reservation system for an airline flight. Assume the airplane has 12 rows with 4 seats in each row. Use a two-dimensional array of strings to main…
7. Algorithm Design: Finding Cycles Give pseudocode for an algorithm which takes
7. Algorithm Design: Finding Cycles Give pseudocode for an algorithm which takes as input a singly-linked-list 2 (of un- known size, possibly containing loops) and returns True if…
7. An algorithm represented in the form of programming language is a) Program b)
7. An algorithm represented in the form of programming language is a) Program b) Flow chart c) Pseudo code d) a and b 8. Pseudo code also known as a) Hardware design language C)Pr…
7. Analyze the following algorithm: int first = 0, last = n - 1, pivot; boolean
7. Analyze the following algorithm: int first = 0, last = n - 1, pivot; boolean found = false; while (first <= last && !found) {     pivot = (first + last) / 2;     if …
7. Apply a proper regression model- either Binary Logistic Regression or Linear
7. Apply a proper regression model- either Binary Logistic Regression or Linear Regression. You need to think which one best fit with this dataset. Use the following for the selec…
7. Assume an architecture that uses base and limit register for memory managemen
7. Assume an architecture that uses base and limit register for memory management. The memory manager uses variable sized partition allocation. The current memory allocation is as…
7. Assume an architecture that uses base and limit register for memory managemen
7. Assume an architecture that uses base and limit register for memory management. The memory manager uses variable sized partition allocation. The current memory allocation is as…
7. Assume that the following processes are to be executed on a uniprocessor syst
7. Assume that the following processes are to be executed on a uniprocessor system. Textbook: Use Modern Operating Systems (3rd or 4th edition) based on the questions above. Pleas…
7. Assume the definition of class bagType as given in Exercise 6. Answer the fol
7. Assume the definition of class bagType as given in Exercise 6. Answer the following questions: (1, 2, 3, 5, 7) a. Write the definition of the member function set so that privat…
7. Average Rainfall: Write a program that uses nested loops to collect data and
7. Average Rainfall: Write a program that uses nested loops to collect data and calculate the average rainfall over a period of years. The program should first ask for the number …
7. Based on the above the answer, which of the following two function prototypes
7. Based on the above the answer, which of the following two function prototypes makes sense to use for a function that will swap two values, the first or second? void swap(int va…
7. Binomial Coefficients. 15 marks; 5 marks each You may recall that the binomia
7. Binomial Coefficients. 15 marks; 5 marks each You may recall that the binomial coefficient, denoted C(n, k) or is the number of combinations (subsets) of k elements from an n-e…
7. Circle Intersection. Write a program that computes the intersection of a circ
7. Circle Intersection. Write a program that computes the intersection of a circle with a hori- zontal line and displays the information textually and graphically Input: Radius of…
7. Circle Intersection. Write a program that computes the intersection of a circ
7. Circle Intersection. Write a program that computes the intersection of a circle with a hori- zontal line and displays the information textually and graphically Input: Radius of…
7. Circle the Collection type that is best suited for each scenario. You may use
7. Circle the Collection type that is best suited for each scenario. You may use a type multiple times or no times at all. One collection per question. 2 (a) You want to manage pr…
7. Complete the body y of digitAppears so it satisfies its contract. For full cr
7. Complete the body y of digitAppears so it satisfies its contract. For full credit, you must use only kernel methods, recursion and one return statement For example, if n 1234, …
7. Complete this program, using functions and dynamic memory allocation. The pro
7.  Complete this program, using functions and dynamic memory allocation.  The program will create a “negative” of the image in the original PGM image (providing that your readPGM…
7. Consider a cache with the following parameters: N (associativity) 2, b (block
7. Consider a cache with the following parameters: N (associativity) 2, b (block size) 2 words, W (word size) = 32 bits, C (cache size) = 32 K words. A (address size) = 32 bits. Y…
7. Consider a communication channel with a one-way propagation delay of 100 msec
7. Consider a communication channel with a one-way propagation delay of 100 msec and transmission rate of 100 Mbps. There is no processing delay and the size of the ACK packets ma…
7. Consider a communication channel with a one-way propagation delay of 100 msec
7. Consider a communication channel with a one-way propagation delay of 100 msec and transmission rate of 100 Mbps. There is no processing delay and the size of the ACK packets ma…
7. Consider a floating point representation with a sign bit, a 5 bit exponent an
7. Consider a floating point representation with a sign bit, a 5 bit exponent and a 10 bit significand. Assume the exponent uses excess M representation uses an implied 1 leading …
7. Consider a propose characteristics: d process scheduler that uses a multileve
7. Consider a propose characteristics: d process scheduler that uses a multilevel feedback queueing network with the following a) The quantum in the first level is 0.5ms. b) Th c)…
7. Consider a proposed process scheduler that uses a characteristics: multilevel
7. Consider a proposed process scheduler that uses a characteristics: multilevel feedback queueing network with the following a) The quantum in the first level is 0.5ms. b) Th are…
7. Consider a relation TwitterUsers(UserID: integer, LastName: string, ...) whic
7. Consider a relation TwitterUsers(UserID: integer, LastName: string, ...) which has 100 million records of 250 bytes each. We create a B+ tree index on this relation using UserI…
7. Consider the following recursive function: void recFun(int u) { if (u == 0) c
7. Consider the following recursive function: void recFun(int u) { if (u == 0) cout << "Zero! "; else { cout << "Negative "; recFun(u - 1); } } What is the output of t…
7. Consider the relation: COURSE (course#,date,level,cost) STUDENT (sID, univers
7. Consider the relation: COURSE (course#,date,level,cost) STUDENT (sID, university, address, course#, date, level) The following assumptions hold: • a course always has the same …
7. Consider the situation where you have the following four requirements for an
7. Consider the situation where you have the following four requirements for an employee information system: Response time for short queries must be less than 1 second In defining…
7. Consider this class: Write a method called build Index that takes an Array Li
7. Consider this class: Write a method called build Index that takes an Array List of person objects and constructs a map from strings (the person's name) to person objects, just …
7. Corporate Sales A corporation has six divisions, each responsible for sales t
7. Corporate Sales A corporation has six divisions, each responsible for sales to different geographic loca- tions. Design a Divsales class that keeps sales data for a division, w…
7. Create a class that holds data about a job applicant. Include a name, a phone
7. Create a class that holds data about a job applicant. Include a name, a phone number, and four Boolean fields that represent whether the applicant is skilled in each of the fol…
7. Deletion with Open Addressing Hash Tables We claimed in class that a hash tab
7. Deletion with Open Addressing Hash Tables We claimed in class that a hash table using open addressing must use “lazy deletion.” a) Give a short-as-possible example that demonst…
7. Describe the functions of a Manufacturing MIS. 8. List and describe some othe
7. Describe the functions of a Manufacturing MIS. 8. List and describe some other types of MISs 9. what are the stages of problem solving? 10. What is the difference between decis…
7. Design a Java class for quadratic equations. Solution public class QuadraticE
7. Design a Java class for quadratic equations.
7. Design an expanding opscode scheme (i e, show the assignment of opcode bit pa
7. Design an expanding opscode scheme (i e, show the assignment of opcode bit patterns) to allow all of the following to be encoded in a 32-bit instruction format 7 anstnuctions w…
7. Draw a picture of array A, showing the values stored in it after execution of
7. Draw a picture of array A, showing the values stored in it after execution of each code segment below. Use the following data: 0 1 2 3 4 5 6 7 8 9 int A[4][2]; int k,m;    for …
7. EXTRA CREDIT: February 10 was the 50th anniversary of the ratification of the
7. EXTRA CREDIT: February 10 was the 50th anniversary of the ratification of the 25th Amendment to the United States Constitution. The following text is Section 4 of that amendmen…
7. Electric Force, Field and Potential: Three identical particles, A, B, and C,
7. Electric Force, Field and Potential: Three identical particles, A, B, and C, each with charge q = 10.00 micro Coulombs, are placed along a circle of radius r = 1.00 m at angles…
7. Exception classes: StackException, EmptystackException. FullstockException Pr
7. Exception classes: StackException, EmptystackException. FullstockException Program #3 1, Show the LinkedtStackADT T interface 2. Create a LinkedstackDs with the following metho…
7. Explain the difference between a dynamic array list and a linked list. 8. Com
7. Explain the difference between a dynamic array list and a linked list. 8. Compare and contrast singly and doubly linked lists, including the pros and cons 9. Explain the differ…
7. Find a proposition with three variables p, q, and r that is true when p and r
7. Find a proposition with three variables p, q, and r that is true when p and r are true and q is false, and false otherwise. (2 points) 8. Find a proposition with three variable…
7. For each of the following predictors for be in the code above, give its \"win
7. For each of the following predictors for be in the code above, give its "win/loss/no decision” numbers. That is, say how many correct predictions, how many incorrect prediction…
7. Give an example of C++ code that creates an alias. 8. In the following C++ fu
7. Give an example of C++ code that creates an alias. 8. In the following C++ function, state where stack-dynamic and explicit heap-dynamic variables are being created: int* maker…
7. Give the 32-bit floating point number (single precision) for the base ten num
7. Give the 32-bit floating point number (single precision) for the base ten number -1245.2 8. Consider the Hamming Code for four bit numbers using odd parity. What is the 7-bit w…
7. Given a DRAM memory chip that is 1M x 1 that is organized into 1024 rows and
7. Given a DRAM memory chip that is 1M x 1 that is organized into 1024 rows and may be refreshed one row at a time. Every cell in the DRAM must be refreshed at least once every fo…
7. Given the E-R diagram shown below, give a database schema (i.e. list of relat
7. Given the E-R diagram shown below, give a database schema (i.e. list of relations) for it. The keys of each entity are shown in quotes. Research Assistant is a weak entity. Pro…