Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

Can You Please Define Project Scope? Can You Please Explain IP Addressing Table With

Get college assignment help at Smashing Essays can you please define project scope? can you please explain IP addressing table with justification? can you please explain network integration plan? can you please provide network planning?

In JAVA Write A Member Function For A BinaryTree Class AreConnected That Returns True

In JAVA Write a member function for a BinaryTree class areConnected that returns true if two binary trees are intersecting (as shown below int the figure), otherwise, the method would return false. Do not make any assumption on the number of nodes each binary tree. (You may utilize ANY data structure that has been developed or discussed during lecture/lab hours, Consider an example given in figure as one of the cases among many others.) public class BinaryTree{             BTNode root; public boolean isConnected(BinaryTree second)

Suppose A Processor Has Access To Three Levels Of Memory. Level 1 Has An

Suppose a processor has access to three levels of memory. Level 1 has an access time of 10 microseconds, level 2 has an access time of 20 microseconds, and level 3 has an access time of 80 microseconds. Level 1 contains a subset of the bytes contained in level 2, and level 2 contains a subset of the bytes contained in level 3. It is estimated that 55 % of all requested bytes are contained in level 1, 70 % of all requested bytes are contained in level 2, and 100 % of all requested bytes are contained in level 3. If a byte to be accessed is in level 1, then the processor will directly access it from level 1. If a byte to be accessed is not in level 1 but in level 2, then the processor will directly access it from level 2. If a byte to be accessed is not in level 1 and not in level 2, then the processor will directly access it from level 3. For simplicity, we assume that the accessed bytes are not transferred between the memory levels. Moreover, we ignore the time that is required for the processor to determine whether a byte can be found in level 1, 2 or 3. What is the average access time of this system? Write down all intermediate steps and explain the result briefly.

In A Batch Operating System, Three Jobs JOB1, JOB2, JOB3 Are Submitted For Ex-

In a batch operating system, three jobs JOB1, JOB2, JOB3 are submitted for ex- ecution. Each job involves an I/O activity, a CPU time, and another I/O activity. JOB1 requires a total of 21 ms, with 3 ms CPU time. JOB2 requires 29 ms total time with 5 ms CPU time. JOB3 requires 14 ms total time with 4 ms CPU time. 3.1 What will be the CPU utilisation for uniprogramming? Write down all intermediate steps. 3.2 What will be the CPU utilisation for multiprogramming? Write down all intermediate steps

(NOTE: This Is Done In C) – Use This Test Driver To Implement And

(NOTE: This is done in C) – Use this test driver to implement and test your function prior to submission. #include #include #include // Declare Global variables here. void array_stats() { // Insert your solution here. } #include #include int main() { // Simulate the test setup process. srand( time( NULL ) ); for ( int i = 0; i < 34; i ) { val[i] = rand(); } val_count = rand(); val_mean = rand(); val_min = rand(); val_max = rand(); // Call submitted code. array_stats(); // Display contents of array val. for (int i = 0; i < val_count; i ) { printf("%f ", val[i]); } printf("n"); printf("Item count: %dn", val_count); printf("Item mean : %fn", val_mean); printf("Item min : %fn", val_min); printf("Item max : %fn", val_max); return 0; }

For This Project, You Need To Finish Two Tasks For The Following Given Image:

For this project, you need to finish two tasks for the following given image: (1) segmentation and (2) recognition. This image is supposed to have only “TWO” colors: black and gray. However, due to the noises from the sensor, there are many pixels with wrong and random values as shown figure 1. Your task is to denoise the image through segmentation and identify a circle object from the image. 1. Segmentation To cluster the image into two groups, you need to implement both K-means and Expectation-Maximization (EM) algorithms to label the image by one of the two values: 0 or 255. Fo the EM, you can use the result of K-means as the initial input. (1) K-means (2) EM For both of the two algorithms, you need to implement them yourself, NOT using OpenCV provided functions. Hint: To simplify the task, you can load the image as “gray” image instead of color image. In other words, the image matrix has only one channel. Also, you we use K-means to cluster the image, you do NOT need to call any noise filter in the code. e.g.: Mat img = imread(“original image.jpg”, 0); //load the image as gray image (“0” indicates one channel loading) Mat label_img; //store the labeled image label_img.create(img.cols, img.rows, CV_8UC1); //make the label_img the same size as the img and have 1channel label_img.ptr(25)[30] = 0; //example to assign value to a particular pixel of the label_img label_img.ptr(25)[31] = 255; //example to assign value to a particular pixel of the label_img So you are only allowed to use the basic OpenCV APIs, such as accessing the image pixels as the examples shown above. You can also use the mathes or “Gaussian” related functions to compute the Gaussian distribution, variance, standard deviation, etc. But the built-in “k means” an “EM” of OpenCV APIs are not allowed to use. 2. Circle Recognition Based on your implemented EM on the original image, a binary clustered image “label_img” is obtained. You need to run Canny edge to extract all the strong edges from “label_img”, say the output of Canny() is “canny_img”. Then you apply Hough transformation to get the circle from the “canny_img”. You can draw a “red” circle on the final image indicating your circle detection result. Your submission: This time you are required to turn in a PDF file shows your four different image results as below: (1) The labeled image after K-means (2) The labeled image after EM (3) The edge image after Canny edge (4) The circled image after Hough circle detection Also, you need to submit the source code. To simplify the grading process, you are suggested to use a single file, e.g. “main.cpp”. So you implement all the code in one file, including as many functions or classes as you need in that file. If you prefer to implement it in multiple files, please provide the file structure in the “.PDF”. This will help the grader to grade it. Attention: (1) For K-means and EM, you need to implement them yourself. For Canny and Hough transformation, you can call the OpenCV API directly. (2) For all the parameters involved for Canny and Hough transformation, you can adjust them during the experiment. And choose the ones that can give an optimal results. only c code

Describe State Descriptions, Move Generators, Terminal Tests, Utility Functions And Evaluation Of Functions For

Describe state descriptions, move generators, terminal tests, utility functions and evaluation of functions for the game Monopoly.

Hi, I Am Learning C And Would Like To Write A Code That Flags

Hi, I am learning C and would like to write a code that flags a number in my output that is divisable by 2 however I can only print my output without flagging it. please advise void multiplier( void ) { int i, start, end, divis; start = 1; end = 50; divis = i / 2; for (i = start; i>=end; i ); scanf(“%s”,

Problem Description C The First Practical Is Intentionally Made Easy. The Main Objective Is

Problem Description C The first practical is intentionally made easy. The main objective is for you to get started on using SVN and the websubmission system. This practical will also test your knowledge of C-Strings, dynamic arrays, and pointers. This assignment deals with strings. You are encouraged to try different implementation methods (e.g., try both std::string and C-string). A phrase is called a Palindrome if it is the same once reversed. Reversing “Race fast, safe car.” gives us “.rac efas ,tsaf ecaR”, which is actually the same as the original phrase if we ignore non-alphabetical characters and cases. You are asked to create a Palindrome class that stores a phrase and supports three methods: removeNonLetters: remove all non-alphabetical characters from the phrase lowerCase: change all letters in the phrase into lower cases isPalindrome: return whether the phrase is a Palindrome You are asked to also create a main function. The main function takes as input a phrase (one line of characters, containing letters, spaces, digits, and punctuations). Hint: try getline() function and output whether the phrase is a Palindrome. Sample input 1: Race fast, safe car. Sample output 1: Yes Sample input 2: Bo1b Sample output 2: Yes Sample input 3: ADDS is fun Sample output 3: No Your submission should contain at least main.cpp Palindrome.cpp Palindrome.h design.pdf Your submission will be tested using the above sample test cases (as well as a few additional hidden test cases). Design (2 marks): create a pdf file and explain Diagram of central classes and explanation of core functions (1 mark) Details of your own test cases/schemes (1 mark)

1….What’s The Difference Between A Virtual Desktop Deployment And A Session Deployment? 2. By

1….What’s the difference between a Virtual Desktop deployment and a Session deployment? 2. by Open the Web Version of Remote Desktop How would you add the Notepad application into that list you just opened? 3. for Edit Group Policy for RDP Users What will happen when we replace the Authenticated users with your Standard user and only select the two servers?

II. What Is The Output. 1. Public Class Customer { Public Static Void Main(String

Get college assignment help at Smashing Essays II. what is the output. 1. public class customer { public static void main(String [] args) { customer st = new customer(); st.print(); } public static void print() { int x = 9; int y, z, calc; y= 3; z = 5; calc = x-y z; System.out.println(“Product: ” x*y); System.out.println(calc); } }

What Is The Output? Public Class Welcome { Public Static Void Main(String [] Args)

what is the output? public class welcome { public static void main(String [] args) { welcome d = new welcome(); d.display(); } public void display() {int count; for (count=6;count<=19;count=count 3) System.out.println(count);}}

What Is The Output? Class Sample { Public Static Void Main (String [ ]

what is the output? class sample { public static void main (String [ ] args) { sample r=new sample(); r.Quiz(18.0f,17.5f); r.cs(); double t =r.finalgrade(85.5, 100.0, 96.7); System.out.println(“You have secured: ” t); } public void Quiz (float Q1, float Q2) { double Q1Q2; Q1Q2 = 0.5 * Q1 Q2; System.out.println(“The average of 2 quizzes are ” Q1Q2); } public void cs() { float classstanding; classstanding = 9.5f; System.out.println(“Class standing is:” classstanding); } public double finalgrade (double t1, double t2, double f) { double grade; grade = (0.3*t1) (0.3* t2) (.4* f); return(grade); } }

What Is The Output? Public Class Game1 { Public Static Void Main(String [] Args)

what is the output? public class Game1 { public static void main(String [] args) { Game1 s = new Game1(); s.simula(); } public static void simula() { int x; x=3; do { System.out.println(“You are learning Methods!”); x=x 1; }while (x <1;}}

MATLAB. Can You Please Fix My Error? Thanks Question: Create A Function That Determines

MATLAB. Can you please fix my error? thanks Question: Create a function that determines the x and y position of an arrow given initial conditions and a time vector are provided as inputs. My attempt.. which is wrong

What Is The Output? Import Java.util.Scanner; Public Class BankBalance2 { Public Static Void Main(String[]

what is the output? import java.util.Scanner; public class BankBalance2 { public static void main(String[] args) { double balance; int response; int year = 1; final double INT_RATE = 0.03; Scanner keyboard = new Scanner(System.in); System.out.print(“Enter initial bank balance > “); balance = keyboard.nextDouble(); do { balance = balance balance * INT_RATE; System.out.println(“After year ” year ” at ” INT_RATE ” interest rate, balance is $” balance); year = year 1; System.out.println(“nDo you want to see the balance at the end of another year?”); System.out.println(“Enter 1 for yes”); System.out.print(” or any other number for no >> “); response = keyboard.nextInt(); } while(response == 1); } }

Write A For Loop That Simulates 50 Coin Flips And Prints The Result

Write a for loop that simulates 50 coin flips and prints the result of each one. So the for loop should repeat 50 times and each time it repeats it should “flip a coin” randomly and say whether the coin landed on heads or tails. HINT: use a random, heads can be represented by 0 and tails by 1 for example. You don’t have to write the whole program just the loop part, do NOT post an entire program just the loop. Remember it’s best effort just try your best if it doesn’t work say so and hopefully another student can help. B) What is the difference between a conditional loop and a counting loop? Which loops should be used for counting loops and which loops should be used for conditional loops. C) Write an input validation loop that asks the user to enter ‘y’ if they want delivery and ‘n’ if not. The loop should make sure they don’t enter anything but a ‘y’ or a ‘n’. Again just write the snippet of code you can assume the code already has a variable char delivery; to hold the user input for ‘y’ or ‘n’. Do not post the entire program just write the input and the validation loop. Again it doesn’t need to be perfect just try if you can’t get it another student can come help.

For Each Topic Provide At Least One Paragraph To Summarize What You Learned About

For each topic provide at least one paragraph to summarize what you learned about the topic and the importance the topic plays in information technology as a whole. 1. Edit Group Policy to limit access to programs in RDP 2. Add applications to Web Services 3. Edit DNS host record

What Is The Output? Int X = 1, Y = 7, Z = 5;

what is the output? int x = 1, y = 7, z = 5; for(int i=0;i 0) {                                     if (y 6) {                                     System.out.println(“message three”);                         }                         else {                                     System.out.println(“message four”);                         } } System.out.println(“message five”);

What Is The Output? Public Class Nesting { Int M, N; M=4; N=6; Public

what is the output? public class Nesting { int m, n; m=4; n=6; public int largest() { if (m > n) return(m); else return(n); } } public static void main(String[] args) { Nesting t=new Nesting(); int large= t.largest(); System.out.println(“Largest is ” large);

Correct The Mistakes Public Class Customer { Public Static Void Main(String[] Args) { D

Correct the mistakes public class customer { public static void main(String[] args) { D customer=new d(); d.employee(56,”ali”); d.department(7,8.6,9); } public void employee(String name, int age) { System.out.println(“Your name is” name); System.out.println(“Age is” age); } public int department(double d, double t, int a) { System.out.println(“I have java exam at 3:00”); Return(1.1); } } V. PROGRAMMING. Write a complete JAVA program to implement the following. 1. Create a class named Exponent. Its main() method accepts an integer value from a user at the keyboard, and in turn passes the value to a method that squares the number (multiplies it by itself) and to a method that cubes the number (multiplies it by itself twice). The main() method displays the results. Create the two methods that respectively square and cube an integer that is passed to them, returning the calculated value. Save the application as Exponent.java. 2. Create a class named Student. A student has fields for an ID number, name, course, number of credit hours earned, and number of points earned. Accept values to all fields. A student also has a field for grade point average. Include a method to compute a grade point average field by dividing points earned by credit hours earned. Write methods to display the values in each Student field. By declaring a student object from the class you created call all the methods in main method and display all results in your program.

The post Can You Please Define Project Scope? Can You Please Explain IP Addressing Table With appeared first on Smashing Essays.

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"