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

1. Design login.html which has ID and Password in text box with Login button and
1. Design login.html which has ID and Password in text box with Login button and also Create Account link. 2. Create Account link goes to newAccount.html which has ID and Password…
1. Design problem and solve it involving all cache parameters such as: – Hit Rat
1. Design problem and solve it involving all cache parameters such as: – Hit Rate = Hits / (Hits + Misses) – Miss Rate = Misses / (Hits + Misses) – I-Cache Miss Rate = Miss rate i…
1. Determine all the output from the following segment of program as it would ap
1. Determine all the output from the following segment of program as it would appear on the screen. 2. Explain each line of output int a ( ); void b (int = 5); float c (int&);…
1. Determine how many books are in the Cooking category 2. Display the number of
1. Determine how many books are in the Cooking category 2. Display the number of books that have a retial value of more than $30.00. 3. Display the date of the most recently publi…
1. Determine how many strings of n lowercase letters from the English alphabet c
1. Determine how many strings of n lowercase letters from the English alphabet contain (a) the letter a. (b) the letters a and b. (c) the letters a and b in consecutive positions …
1. Determine the largest root in the interval [2, 5 of f(x) = e-r2 + sin x (a) b
1. Determine the largest root in the interval [2, 5 of f(x) = e-r2 + sin x (a) by using MATLAB to plot y = f(x) over the given interval. As part of your answer include a printout …
1. Determine the output displayed in the list box by the lines of code. Dim tax
1. Determine the output displayed in the list box by the lines of code. Dim tax As Double tax = 200 tax = 25 + tax lstOutput.Items.Add(tax) 2. Find the value of the given function…
1. Determine the output of the following Java program. Notice that the method fe
1. Determine the output of the following Java program. Notice that the method fen2 ) is overloaded, so there are really three distinct functions here // Probleml.java class Proble…
1. Determine the physical address of a memory location given by 0A51:CD90h. 2. A
1. Determine the physical address of a memory location given by 0A51:CD90h. 2. A memory location has a physical address 4A378h. Compute a. the offset address if the segment number…
1. Determine the value of the following expressions. a. toupper(\'b\') b. tolowe
1. Determine the value of the following expressions. a. toupper('b') b. tolower('C'); c. pow(3.0,3.0); d. sqrt(81.0); e. fabs(-1.23); f. floor(22.46); g. ceil(33.3); 2. Using the …
1. Determine whether or not each of the following sentences is a proposition. Fo
1. Determine whether or not each of the following sentences is a proposition. For each of those sentences that are propositions, write ts negation. In case the sentence is not a p…
1. Determine whether the following arguments are valid or invalid. If they are v
1. Determine whether the following arguments are valid or invalid. If they are valid, thern state the rules of inference used to prove validity. If they are invalid, outline preci…
1. Develop Pseudo-code (English-like) Develop an algorithm to compute gross pay.
1. Develop Pseudo-code (English-like) Develop an algorithm to compute gross pay. The inputs to your algorithm are the hours worked per week and the hourly pay rate. The rule for d…
1. Develop a C# program that includes a delegate named “ Start ” that passes a m
1. Develop a C# program that includes a delegate named “ Start ” that passes a method with a single argument. 2. The program should include at least two calls to a method that acc…
1. Develop a Haskell function xor that takes two Booleans and returns the “exclu
1. Develop a Haskell function xor that takes two Booleans and returns the “exclusive-or” of the two values. An exclusive-or operation returns True when exactly one of its argument…
1. Develop a M-file to calculate the following (1) Use for-loop of Matlab (2) Us
1. Develop a M-file to calculate the following (1) Use for-loop of Matlab (2) Use while-loop of Matlab 2. For a matrix (1) Use Matlab command to identify the dimension s (2) Use M…
1. Develop a Monte Carlo simulation by writing an algorithm that generates a seq
1. Develop a Monte Carlo simulation by writing an algorithm that generates a sequence of uniform random numbers (01 for values ofxand yon the OABC region, and calculate the corres…
1. Develop a method canGraduate that will take two integerparameters major and e
1. Develop a method canGraduate that will take two integerparameters major and elective and returns a boolean value True orFalse based on the following: The method will check if a…
1. Develop a program that receives as input 3 names of stars. 2. For each star e
1. Develop a program that receives as input 3 names of stars. 2. For each star enter its distance and brightness 3. For each star calculate the amount of light that we see: formul…
1. Develop an algorithm for a Java program that randomly pick a whole number bet
1. Develop an algorithm for a Java program that randomly pick a whole number between 1 and 100 inclusive. It should then ask the user to guess the number. In response to the guess…
1. Develop exactly one class and create three instances john, mary and jane of t
1. Develop exactly one class and create three instances john, mary and jane of the class. These three objects share a tank of water with a capacity of 1234.5 gallons. The class eq…
1. Develop the Boolean equation for the circuit shown below. 2. Determine the ou
1. Develop the Boolean equation for the circuit shown below. 2. Determine the output Y in Problem 1 for the input values shown below. 3. Redraw the circuit in Problem 1 using only…
1. Develop the class Polynomial. The internal representation of a Polynomial is
1. Develop the class Polynomial. The internal representation of a Polynomial is an array of terms. Each term contains a coefficient and an exponent. The term: 2 x^4 has the coeffi…
1. Dice Rolling (15 points)
1.      Dice Rolling (15 points)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Write a program that simulates the roll of two dice using the ra…
1. Digital Signal is more resilient against the distortion that takes place duri
1. Digital Signal is more resilient against the distortion that takes place during transmission. Easiest method of reconstructing digital signal from the received signal with dist…
1. Digital playback is better than analog because a. It\'s a natural format b. T
1. Digital playback is better than analog because a. It's a natural format b. There are less errors in amplitude c. You have more samples d. Even with noise, 0's and 1's are diffi…
1. Dim scholar As Student Private Sub btnGo_Click(. . . ) Handles btnGo_Click Di
1. Dim scholar As Student Private Sub btnGo_Click(. . . ) Handles btnGo_Click Dim firstname as String scholar.Name = "Warren" fristName = scholar.Name End Sub 2. Dim scholar As St…
1. Direct execution refers to running a program directly on the CPU True or Fals
1. Direct execution refers to running a program directly on the CPU True or False 2. Allows the kernel to carefully expose certain key pieces of functionality to user program? A. …
1. Discuss at least three advantages of using functions over the case in which a
1. Discuss at least three advantages of using functions over the case in which all your code is written inside main(). Are there some disadvantages of using functions? 2. Explain …
1. Discuss each of these statements. What might be wrong with each of them?(at l
1.      Discuss each of these statements. What might be wrong with each of them?(at least 6-7 lines answer on each ) a. “We’ve thought about computer integration of all our manufa…
1. Discuss how a company should manage the parallel creation of different projec
1. Discuss how a company should manage the parallel creation of different projects that adapt to its business vision. 2. Assume you are addressing the IT needs of a large corporat…
1. Discuss in reasonable detail two of the business uses of Facebook that you di
1. Discuss in reasonable detail two of the business uses of Facebook that you did not know about. How would you apply that use(s) in your business? 2.Discuss one or two business u…
1. Discuss the advantage(s) of providing a list box or a combo box in a form. Ho
1. Discuss the advantage(s) of providing a list box or a combo box in a form. How does it help a user? What possible disadvantages are present when using a list box control? 2. Wh…
1. Discuss the difference between a Continuity of Operations Plan (COOP), a Busi
1. Discuss the difference between a Continuity of Operations Plan (COOP), a Business Continuity Plan (BCP), and a Disaster Recovery Plan (DRP). You might want to start with the de…
1. Discuss the following optimization for time in detail including code instrume
1. Discuss the following optimization for time in detail including code instrumentation to determine bottle necks. Emphasize the organized approach developed in class to prioritiz…
1. Discuss the importance and value of register Sv0 when using syscall 2. Write
1. Discuss the importance and value of register Sv0 when using syscall 2. Write a program in MIPS assembly language that implements the following a. Ask the user to input his/her …
1. Discuss the issue of forensic analysts’ reports and expert opinions in relati
1. Discuss the issue of forensic analysts’ reports and expert opinions in relation to testimony being admissible by analysts who did not actually conduct the laboratory analysis t…
1. Discuss the problems associated with duplication of data. How can we eliminat
1. Discuss the problems associated with duplication of data.  How can we eliminate or control them. 2. Database is a model of a user’s view of the word.  How well does should it f…
1. Discuss three (3) major issues in Web analytics--measuring performance and de
1. Discuss three (3) major issues in Web analytics--measuring performance and determining the ROI of digital marketing. 2. Describe any three (3) components of a best-in-class das…
1. Discuss three advantages of dynamic (shared) linkage of libraries compared wi
1. Discuss three advantages of dynamic (shared) linkage of libraries compared with static linkage.Describe two cases in which static linkage is preferable. 2. The Linux source cod…
1. Discuss three fundamental website and page design errors. Describe the proble
1. Discuss three fundamental website and page design errors. Describe the problem, why it makes for poor design, and how it impacts users.       2. Discuss the relationship betwee…
1. Discuss what considerations the computer operator took into account in decidi
1. Discuss what considerations the computer operator took into account in deciding on the sequences in which programs would be run on early computer systems that were manually ope…
1. Discuss your views on the implementation of Authentication. (50 – 100 words)
1. Discuss your views on the implementation of Authentication. (50 – 100 words) 2. Which authentication mechanism would you consider for a SOHO or enterprise business? Although th…
1. Display last name, job title for employees whose commission percentage is not
1. Display last name, job title for employees whose commission percentage is not null and belongs to department 40. 2- Display department name, manager name, and salary of the man…
1. Display random numbers to simulate rolling a die 2. Create a java program tha
1. Display random numbers to simulate rolling a die 2. Create a java program that simulate a casino game. (rollin a die) a. To play a game, pay $1 b.   The rewards are;       6: $…
1. Display the following menu to the user: Bank Account Manager 1. Make a deposi
1. Display the following menu to the user: Bank Account Manager 1. Make a deposit 2. Make a withdrawal 3. Show current balance 4. Display account report 5. Print account report 6.…
1. Display the following menu to the user: Bank Account Manager 1. Make a deposi
1. Display the following menu to the user: Bank Account Manager 1. Make a deposit 2. Make a withdrawal 3. Show current balance 4. Display account report 5. Print account report 6.…
1. Display the menu(once at beginning of Game) 2. Display the Scores for both Ho
1. Display the menu(once at beginning of Game) 2. Display the Scores for both Home and Visitor teams, Down number, Team that has possession of the ball or has just received a kick…
1. Display the name of each employee, the name and department to which the perso
1.  Display the name of each employee, the name and department to which the person is assigned, and the location of each department.  Join the EMP and DEPT tables through the WHER…
1. Distinguish between prim 2. Identify the important characteristics of seconda
1. Distinguish between prim 2. Identify the important characteristics of secondary storage. 3. Describe hard disk platters, tracks, sectors, cylinders, and head crashes. 4. Compar…