HomeworkHero
Home
Search
Login
Search
Engineering
Engineering
College
.Write a do-while loop that counts up from userNum to 6. Ex: For userNum = 3, output is: 3 4 5 6Code will be tested with values 3,1,7;Language: Javascript
Engineering
College
discuss the advantages and disadvantages of using circular logging instead of continuous logging.
Engineering
College
Three types of switching fabrics are discussed in Section 4.3. List and briefly describe each type. R9. Describe how packet loss can occur at input ports. Describe how packet loss at input ports can be eliminated (without using infinite buffers).
Engineering
College
Based on:Entity-Relationship Diagram with the following requirements:There are Professors (ie users) with the changeable attributes Professor_Name, Field, College, PhD_DateThere are Flubs (ie posts) with the unchangeable attributes Content, Purpose, Moment, Inventor (which is the creating Professor)There are Bounces (ie shares) where a Professor can share another Professor's FlubAdd ID attributes as necessaryContent of Flubs only needs to be a text of fixed lengthProfessors can have/be Colleagues (ie friends/followers)A Flub can get Citations (ie likes) by other ProfessorsShow the Relational Algebra AND Domain Relational Calculus formulas for each.Show a portfolio of the Flubs by a ProfessorShow a portfolio of all Flubs and Bounces (the Flubs bounced) by all of a Professor's Colleagues
Engineering
College
Consider again the mixer of HW5 - Problem 4 and calculate the rate of entropy generation in W/K across the mixer. HW5 Problem 4 (15 points) A hot steam flow (0.25 kg/s at Thor= 1100 C) is mixed with a saturated liquid water flow (0.9 kg/s) in a mixing chamber. If the entire system has uniform pressure 0.8 MPa: Hot Warm Cold
Engineering
College
briefly define the cache memory. (b) with a schematic diagram, explain how data is transferred (i) between the main memory and cache and (ii) between cache and cpu.
Engineering
College
The drag on a submarine moving below the free surface is to be determined by a test on a 1/19-scale model in a water tunnel. The velocity of the prototype in seawater (rho = 1015 kg/m3, v = 1.4 106 m2/s) is 1 m/s. The test is done in fresh water at 20C. Determine the speed of the water in the water tunnel for dynamic similitude and the ratio of the drag force on the model to the drag force on the prototype.
Engineering
College
Improper rigging of the elevator trim tab system will affect the balance of the airplane about itsA. longitudinal axisB. lateral axisC. vertical axis
Engineering
College
You've started work as morse code translator. Unfortunately some of the signals aren't as distinguishable as others and there are times where a . seems indistinguishable from -. In these cases you write down a ? so that you can figure out what all the posibilities of that letter for that word are later.TaskWrite a function possibilities that will take a string word and return an array of possible characters that the morse code word could represent.Examples with ?? should return ['E','T']?. should return ['I','N'].? should return ['I','A']?-? should return ['R','W','G','O']// codeimport java.util.List;import java.util.Arrays;class Challenge {public static List possibilities( String word ) {}}
Engineering
College
a 71.0 kg man weighs himself at the north pole and at the equator.
Engineering
College
Finally, output a "> " and the line from the second file. d. If the two files have a different number of lines, you should output "Files have different number of lines"/
Engineering
College
an ipv4 address appears as a series of four decimal numbers separated by periods, such as .?
Engineering
College
Given a hash table T with 25 slots that stores 2000 elements, the load factor for T is __________a)80b)0.0125c)8000d)1.25
Engineering
College
When summarizing progress, you should describe all of the following except:2Correct1.00 points out of1.00Flag questionA. ContentB.
Engineering
College
You would like to be able to physically separate different materials in a scrap recycling plant. Describe some possible methods that might be used to separate materials such as polymers, aluminum alloys, and steels from one another
Engineering
College
A retail company must file a monthly sales tax report listing the total sales for the month, as well as the amount of state and county sales tax collected. The state sales tax rate is 5 percent and the county sales tax rate is 2.5 percent. Write a Python program that asks the user to enter the total sales for the month. From this figure, your Python program should calculate and display the following:The amount of county sales taxThe amount of state sales taxThe total sales tax (county plus state)Use functions to calculate both the county and state sales tax amounts.
Engineering
College
is a tangible benefit of information systems.a. improved resource controlb. better corporate imagec. improved asset usaged. reduced workforcee. more information
Engineering
College
Consider the following method, which is intended to return the average (arithmetic mean) of the values in an integer array. Assume the array contains at least one element.public static double findAvg(double[] values){double sum = 0.0;for (double val : values){sum += val;}return sum / values.length;}Which of the following preconditions, if any, must be true about the array values so that the method works as intended?The array values must be sorted in ascending order.The array values must be sorted in ascending order.The array values must be sorted in descending order.The array values must be sorted in descending order.The array values must have only one mode.The array values must have only one mode.The array values must not contain values whose sum is not 0.The array values must not contain values whose sum is not 0 .No precondition is necessary; the method will always work as intended.
Engineering
College
For each of the following systems, determine whether or not the system is (1) linear, (2) time-invariant, and (3) causal: a. y[n]=x[n]cos(0.2n) b. y[n]=x[n]x[n1] c. y[n]=x[n] d. y[n]=Ax[n]+B, where A and B are nonzero constants.
Engineering
College
draw the logic diagram for a 16 to 4 encoder using just four 8 input nand gates
Engineering
College
An 8 x 8 x 1-in. angle is used for a beam that supports a positive bending moment of 7500 ft- lb. The moment is applied in the XY-plane as shown in Figure 1. The moments of inertia from a structural steel handbook are l.-I, = 89 in-and- 36 in. Determine : a. The maximum flexural stress and its location on the cross section. b. The orientation of the neutral axis; show on a sketch of the cross section. u 2. Figure 1 Answers : .--7449 psi; = 30.43
Engineering
College
If the actual turbine work is 0.65 mJ. For a steam turbine, and the isentropic turbine work is 0.80 mJ, what is the isentropic turbine efficiency a.) 0.15 b.) 0.52 c.) 0.75 d.) 0.8125
Engineering
College
Who should be a Product Owner (PO) in a Value Maximization scrum team?a. Only Performance Improvement (P) Champion because he/she has a good understanding of Six Sigma and Value Stream Mapping b. Anyone who has a clear vision for the selected Value Log opportunities and who can validate whether the implementation achieved the expected benefits c. Only Lead because he/she has a good understanding of the team dynamics d. Only someone from customer's organization because he/she has a good understanding of the market dynamics
Engineering
College
Repeat 10-fold cross validation method five more times to find the best decision tree (use the following cp). Report the average testing error and average accuracy for each cp. Which cp should be selected to create a decision tree? Why? cp=0.003197442 cp=0.006705747 cp=0.036903810 cp=0.064481748 cp=0.128497202 7-Using caret package, find three most important attributes in predicting if an unknown client has subscribed a term deposit. 8-Create a subset of the improved bank dataset by extracting five most important attribut- es and income attribute. Standardize the important attributes, if it is necessary. 9-Using the train statement in the caret package and 10 fold cross validation method, find the optimum Ks in K-Nearest Neighbor to predict if an unknown client has subscribed a term deposit. Plot the accuracy of K-Nearest Neighbor for each optimal K. Which k has the highest accuracy in predicting if an unknown client has subscribed a term de- posit.
« Previous
Page 38
Next »