List the seven domains of IT infrastructure. Select one domain answer the
List the seven domains of IT infrastructure. Select one domain answer the following questions.
A standard science experiment is to drop a ball and
Question A standard science experiment is to drop a ball and see how high it bounces. Once the “bounciness” of the ball has been determined, the ratio gives a bounciness index. For example, if a ball dropped from a height of 10 feet bounces 6 feet hight, the index is 0.6 and the total distance traveled by the ball is 16 feet after one bounce. If the ball were to continue bouncing, the distance after two bounces would be 10 ft 6 ft 6 ft 3.6 ft = 25.6 ft. Note that distance traveled for each successive bounce is the distance to the floor plus 0.6 of that distance as the ball comes back up.Write pseudo-code that takes as input an initial ball height, a bounciness index, and a number of bounces. The output should be the total distance traveled by the ball.
Note: I just need the code for .js file. The
Question Note: I just need the code for .js file. The html is already provided. src=”/qa/attachment/10151428/” alt=”a.PNG” /> Attachment 1 Attachment 2 Attachment 3 Attachment 4 Attachment 5 Attachment 6 ATTACHMENT PREVIEW Download attachment a.PNG ATTACHMENT PREVIEW Download attachment b.PNG ATTACHMENT PREVIEW Download attachment c.PNG ATTACHMENT PREVIEW Download attachment d.PNG ATTACHMENT PREVIEW Download attachment e.PNG ATTACHMENT PREVIEW Download attachment f.PNG
We use multiple parity bits and each parity bit is
Question We use multiple parity bits and each parity bit is generated from a different subset of the original data bits. For example, consider the original data have 6 bits. We add two parity bits: The first one is the parity bit of 1st, 2nd, 3rd, and 4th bits; the second one is the parity bit of 1st, 2nd, 5th, and 6th bits. If the original data is 111111, then, the parity bits will be 00. This code can also be represented in a table below. “Y” in column i and row j indicates the ith bit is in the subset to compute the jth parity. (In reality, this is called linear block code.) 1 2 3 4 5 6Parity 1 Y Y Y Y N NParity 2 Y Y N N Y YStill we send the original data bits and parity bits to the receiver. Each bit is independently flipped with probability p. We define Event A: None of the bits are flipped; Event B: Some of the bits are flipped, and this is detected by the advanced parity check. Event C: Some of the bits are flipped, but this is not detected by the advanced parity check.Let p = 0.1. Through Python simulation, compute the probability of events A, B, and C, i.e., pA, pB, and pC.
Please solve the following assignment in IBM ILOG CPLEX, and show optimal
Please solve the following assignment in IBM ILOG CPLEX, and show optimal solution and coding
Write a Java program that will obtain up to 20
Question Write a Java program that will obtain up to 20 positive integers from the user via the keyboard; as the values are entered by the user store the values in an array. The user will terminate their input by entering a negative number. After the values have all been entered and stored in the array, process the array to determine the largest value, smallest value, and the average of the values stored in the array. Your solution must incorporate appropriate methods.
This question was created from MAINTENANCE03-01.jpg https://www.coursehero.com/file/14549088/MAINTENANCE03-01jpg/ How did they
Question This question was created from MAINTENANCE03-01.jpg https://www..com/file/14549088/MAINTENANCE03-01jpg/ How did they solve the problem? ATTACHMENT PREVIEW Download attachment 14549088-343984.jpeg start // Assume that this program works, but that it needs to be A structured and modularized. No B? Yes C E No D? Yes F G Yes H? J? Yes No No K F G
#include stdio.h>int main () {/* variable definition: */int count;double
Question #include stdio.h>int main () {/* variable definition: */int count;double avg, value, weight, sum, sumw;/* Initialize */count = 0;sum = 0;sumw = 0;avg = 0.0;// Loop through to input valueswhile (count < 10) {printf("Enter a value and its weight:n");// use %lf for double, %f for floatscanf("%lf %lf",
Program in C utilizing pipes
(1) Create a server program and a client program. The client program reads a line from a text file, converts everything to upper case letters, and send it to the server, using a named pipe. It pauses for 1 second, and repeats the above process, until the end of file.The client sends a “Stop” string at the end. The server displays any thing it receives. The server quits when it sees “Stop”. The server needs to cleanup by deleting the named pipe.Your programs (client and server) need to create the name pipe first, if it does not exist.(2) Re-implement Q1, using SysV shared memory. Here the difficult is that the client needs to find a way to let the server knows that its have written something to the shared buffer. You cannot just modify the buffer and hope the server will find out — what will happen if the new line of text is identical to the contents already in the buffer? (I want you to test this by addling two identical lines in the testing file)
Im doing an academic controversy assignment that requires me to
Question Im doing an academic controversy assignment that requires me to find 2-3 sources that backs up my side. My topic is “Is Disproportionally High Minority Representation in SPED a school problem?” My side is “No” which I have to back up from reading an article as well as the 2-3 sources. I need help finding sources to back up my side.
When running a python script, how do you know if
Question When running a python script, how do you know if the output failed?
Not entirely sure what I am doing wrong. I seem
Question Not entirely sure what I am doing wrong. I seem to understand the concept but am missing something. />1. Use the cout statement to prompt the customer for the name of the function.2. Prompt the customer for his/her full name.3. Use the getline function to input the name of the event and the customer’s name.4. Prompt the customer to enter the length of time (in minutes) for the dinner. The minutes will be used to determine how many hours and minutes you will pay the server(s).5. Prompt the customer to enter the number of guests attending the dinner.6. There will be one server assigned to every 15 guests. Servers make $15.0 per hour and $.50 per minute for every minute over an hour. For example, 123 minutes will be 2 hours and 3 minutes. Use modulus to determine the number minutes. Both cost per minute and per hour will be constants.7. When calculating the number of servers use the function ceil to round up. The code for ceil is roundedUpNumber = ceil(numberOfServers).8. Each dinner will cost $31.80. Make cost per dinner a constant.9. Calculate the total cost for the event and the average cost per person. The caterer requires a 25% deposit on the event. All decimals must line up in the output.//A program by Jeremy Barnes//Sept 22, 2019//Project 4 expressions//CIS 1111#include #include #include using namespace std;int main(){ string eventname; double costofservers = 15.00; double dinnercost = 31.80; string companyname; double deposit; double averagecost; string customername; double roundedupservers; int eventtimeminutes; double totalcost; float servers; float guestsattending; if (guestsattending < 100) cout <> eventtimeminutes; cout <> guestsattending; if (guestsattending = dinnercost) servers = guestsattending / 20; roundedupservers = ceiling(servers); costofservers = ceiling(eventtimeminutes / 60) * 15.5 * roundedupservers; dinnercost = 31.80; totalcost = costofservers dinnercost averagecost = totalcost / guestsattending deposit = totalcost * 0.25; cout << " " << endl; cout << "Number of servers:" roundedupservers << endl; cout << "Cost of servers:" costofservers << endl; cout << "Dinner cost $31.80 each:" dinnercost << endl; cout << "Total cost:" totalcost << endl; cout << "Average cost per person:" averagecost << endl; cout << "Deposit amount:" deposit << endl;}
Could someone please help?Compose an Automobile class for a dealership.
Question Could someone please help?Compose an Automobile class for a dealership. Include fields for an ID number, make, model, color, year, vin number, miles per gallon, and speed. Include get and set methods for each field. Do not allow the ID to be negative or more than 9999; if it is, set the ID to 0. Do not allow the year to be earlier than 2000 or later than 2017; if it is, set the year to 0. Do not allow the miles per gallon to be less than 10 or more than 60; if it is, set the miles per gallon to 0. Car speed should be initialized as 0. Include a constructor that accepts arguments for each field value and uses the set methods to assign the values. Also compose two methods, Accelerate () and Brake (). Whenever Accelerate () is called, increase the speed by 5, and whenever Brake () is called, decrease the speed by 5. To allow users to specify the speed to increase (or decrease), create two overloading methods for Accelerate () and Brake () that accept a single parameter specifying the increasing (or decreasing) speed. Compose an application that declares several Automobile objects and demonstrates that all the methods work correctly. Save the files as Automobile.java and TestAutomobiles.java.
Directions The file must be called unit5-6Prog.cpp1 structure called AddressNodeThe
Question Directions The file must be called unit5-6Prog.cpp1 structure called AddressNodeThe structure should contain a string for name and a pointer called AddressNode that points to “next” (the next element in the list). classed called ABook.Create the Default Constructure. (public)Create the Deconstructor. (public)AddressNode* topPtr. (private) – Should be a pointer to the top of the list. ABook Methods (each of these methods must be created in your program)ABook::ABook() – Default ConstructorABook::Insert(string NewItem) – Add item to the Linked ListABook::SortedInsert(string NewItem) – Add item to the Linked List (sorted)ABook::Remove(string
c quiz 1D Arrays: Sorting and Searching
only have 30 mins1. Using Binary Search, which elements in the following array are compared to the target when target = 50?12, 23, 34, 42, 55, 61, 78, 80, 85, 93, 97, 9961, 34, 42, 555, 2, 4, 378, 42, 61, 555, 2, 3, 2. Using Binary Search, which elements in the following array are compared to the target when target = 93?12, 23, 34, 42, 55, 61, 78, 80, 85, 93, 97, 9961, 85, 97, 935, 9, 7, 85, 8, 10, 961, 80, 933.After 5 passes of the Insertion Sort Algorithm, an array contains the elements shown below. Show the contents of the array after one more pass of the Insertion Sort algorithm:12, 23, 34, 42, 55, 61, 18, 10, 2510, 12, 23, 34, 42, 55, 61, 18, 25The array does not change12, 18, 23, 34, 42, 55, 61, 10, 2510, 12, 18, 23, 25, 34, 42, 55, 614. Which one of the following calls for the insertion sort algorithm is correct?void sort( int list[], int size);int main(){ int a[] = {10, 90, 30, 50, 20, 70, 30}; int size = 7; // calling statement for sort: return 0;}sort list[], size);sort(a[], size);sort( int list[], int size);sort(a, 7);5.Which one of the following calls for the binary search algorithm is correct?int binSearch( const int list[], int size, int target);int main(){ int a[] = {10, 20, 30, 40, 50, 60, 70, 80}; int size = 8, target = 65, pos; // calling statement for biSearch return 0;}pos = binSearch(a, size, target);pos = binSearch(a, 8);pos = binSearch( a, target, size);pos = binSearch( const int list[], int size, int target);
c quiz 1D Arrays: Sorting and Searching
only have 30 mins1. Using Binary Search, which elements in the following array are compared to the target when target = 50?12, 23, 34, 42, 55, 61, 78, 80, 85, 93, 97, 9961, 34, 42, 555, 2, 4, 378, 42, 61, 555, 2, 3, 2. Using Binary Search, which elements in the following array are compared to the target when target = 93?12, 23, 34, 42, 55, 61, 78, 80, 85, 93, 97, 9961, 85, 97, 935, 9, 7, 85, 8, 10, 961, 80, 933.After 5 passes of the Insertion Sort Algorithm, an array contains the elements shown below. Show the contents of the array after one more pass of the Insertion Sort algorithm:12, 23, 34, 42, 55, 61, 18, 10, 2510, 12, 23, 34, 42, 55, 61, 18, 25The array does not change12, 18, 23, 34, 42, 55, 61, 10, 2510, 12, 18, 23, 25, 34, 42, 55, 614. Which one of the following calls for the insertion sort algorithm is correct?void sort( int list[], int size);int main(){ int a[] = {10, 90, 30, 50, 20, 70, 30}; int size = 7; // calling statement for sort: return 0;}sort list[], size);sort(a[], size);sort( int list[], int size);sort(a, 7);5.Which one of the following calls for the binary search algorithm is correct?int binSearch( const int list[], int size, int target);int main(){ int a[] = {10, 20, 30, 40, 50, 60, 70, 80}; int size = 8, target = 65, pos; // calling statement for biSearch return 0;}pos = binSearch(a, size, target);pos = binSearch(a, 8);pos = binSearch( a, target, size);pos = binSearch( const int list[], int size, int target);
I have HW3.I want basic codes and follow the rules, 2.ccp files
I have HW3.I want basic codes and follow the rules, 2.ccp files and 2 .h files.My function is f(x)=sin(Pi*x)
I have HW3.I want basic codes and follow the rules, 2.ccp files
I have HW3.I want basic codes and follow the rules, 2.ccp files and 2 .h files.My function is f(x)=sin(Pi*x)
a block pyramid (C program)
I want you to write a program that creates a block pyramid. You are expected to take in a single positive integer which will be used as the height of your pyramid, for the purposes of this first lab you can assume that the user will always provide a valid integer greater than 0 and less than 1000 (I.e. re-run the program only when value is out of this range). The very top of your pyramid will have a single block with each level having 1 more block until you have created a pyramid with the correct number of levels. In addition to the before mentioned requirements, a few things to note that might not be as evident from the screenshot:1. The very bottom left is left aligned (I.e. no spaces)2. There are no spaces after the right most pyramid in a single level.3. The bottom most row does not end with a new line.
a block pyramid (C program)
I want you to write a program that creates a block pyramid. You are expected to take in a single positive integer which will be used as the height of your pyramid, for the purposes of this first lab you can assume that the user will always provide a valid integer greater than 0 and less than 1000 (I.e. re-run the program only when value is out of this range). The very top of your pyramid will have a single block with each level having 1 more block until you have created a pyramid with the correct number of levels. In addition to the before mentioned requirements, a few things to note that might not be as evident from the screenshot:1. The very bottom left is left aligned (I.e. no spaces)2. There are no spaces after the right most pyramid in a single level.3. The bottom most row does not end with a new line.
Java code in the area on the right. Use the Run button to compile and run the code.
I have four codes that need to be fix or write code. they are really easy. All you need to do is fix the code, then run it and check if its right.and for the others you will need to write code for them.and run it too to see if it works.
PLACE THIS ORDER OR A SIMILAR ORDER WITH SMASHING ESSAYS
The post List the seven domains of IT infrastructure. Select one domain answer the appeared first on Smashing Essays.