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

C # Question For Loop Change KPH To MPH You Have Just Imported An

C # question for loop change KPH to MPH You have just imported an American car, Chevy Impala. The car’s speedometer works in miles per hour (mph). As you do not wish to obtain a speeding ticket for exceeding the speed limit, you decide to write a program which will display a table of speeds in kilometres per hour (kph) with the corresponding speed in mph. (1 KPH = 0.62137 MPH) The table will show the speed in kph with the corresponding speed in mph similar to the table below: KPH MPH 10 6.21 20 12.43 30 18.64 … 100 62.14 110 68.35 Write a program to produce this table using a for loop, where the loops index variable will be kph value starting at 10, ending at 110. This program can be written as straight line code within Main. This program will not require any input from the user.

Information System Question (Microsoft Access – SQL) ———————————————————————- Please Fix The Code Below To

Information System Question (Microsoft Access – SQL) ———————————————————————- Please fix the code below to resolve the error. ————————————————————————– Insert a new restaurant into the Restaurants table, with the following information: RestaurantID: R0021, Address: 1234 Pico, City: Santa Monica, State: CA, Squarefootage: 1700, TypeOfService: Table

The Purpose Of This Assignment Is To Practice OOP Programming Covering Inheritance Using Java.

The purpose of this assignment is to practice OOP programming covering Inheritance using java. design an online shopping system for a local supermarket (e.g., Europa Foods Supermarket or Wang Long Oriental Supermarket) and is mostly concentrated on the product registration system. Design and draw a UML diagram, and write the code for the following classes: The first product category is a fresh product, it contains the following attributes. – ID: The identification number must start with 1 and follows with 6 numbers, e.g., “1123456”. – Description, e.g. “Banana” – Recommended Price per unit, e.g. 5.54. Note that this is the suggested price, it is not the actual price in the online shopping system. – Unit (by default is 1) – Weight (in gram) – Unit Type, e.g. “Each, Kilogram, Bunch, Box and Pack” – The packing or baking date (it should include the date, month, year and time), this information is not required for some product, hence, it default may be set to 1/1/1900. – The expiry date is (it should include the date, month, year) The purpose of this class is to maintain the general information of fresh or daily product such as meat, seafood, bread, milk and vegetable. The second product category is a packaged product such as can, source, snack, etc. It contains the following attributes. – ID: The identification number must start with 2 and follows with 6 numbers, e.g., “2123456”. – Description, e.g. “Corn cream can” – Recommended Price per unit, e.g. 5.54. – Unit (by default is 1) – Weight (in gram) – The dimension of the package (including height, width, deep). If a product doesn’t provide this information, then it set to (0, 0, 0) as a default value. – Nutrition Information o Quantityper100gor100mlo Energy/kilojoules o Protein o Fat o Sugars(mg) o Sodium/salt(mg) – Unit Type for this class is limited to only “Box, Bottle and Pack” – Packing or manufacturing date (it should include the date, month, year and time), this information is not required for some product, hence, it default may be set to 1/1/1900. – Expire date is (it should include the date, month, year), its default may be set to 1/1/3000 for the product that doesn’t have an expiry date. The purpose of this class is to maintain the general information of package product such as can, sauce, instant noodle, flour and snack. Noted that all classes should override and implement the toString methods to transform the information of the object into the string variable. The third product category is the equipment and household product, it contains the following attributes. – ID: The identification number must start with 3 and follows with 6 numbers, e.g., “3123456”. – Description, e.g. “Toothbrush” – Recommended Price per unit, e.g. 5.54. Note that this is the suggested price, it is not the actual price in the online shopping system. – Unit (by default is 1) – The dimension of the package (including height, width, deep). If a product doesn’t provide this information, then it set to (0, 0, 0) as a default value. – Weight (in gram) – Unit Type, e.g. “Bag, Bottle, Box and Pack” – The packing or baking date (it should include the date, month, year and time), this information is not required for some product, hence, it default may be set to 1/1/1000. – The expiry date is (it should include the date, month, year). its default may be set to 1/1/3000 for the product that doesn’t have an expiry date. – The purpose of this class is to maintain the general information of fresh or daily product such as kitchenware, stationery and household. Task 1: Class design (Code and UML). Design and write the java code for the above two categories. Design 2 subclass with 2 additional attributes for each category. Task 2: Your classes should be able to provide methods allowing one to (verifyUnitType) Check whether the input arguments (a unit type) passed to the method matches with the user type stored in the object or not. (getAttributeDescriptionForSavingTofile) output the description of all attributes to a String format that can be used to save it to a CVS format file directly, e.g. “ID, Description, …. , Expire date”. (getInformationForSavingToFile) Take all attributes in the object and output them to a String format that can be used to save it to a CVS format file directly, e.g. “1222344, Corn Cream,…. , 20/11/2019”. Choose the appropriate input or/and output type for each method. Test Code: write the test code (a separate class/file called “TestCode” with the Main method in it), create the object of each class, and create an ArrayList to keep all the above classes. For each object, call methods in Task 2 to check whether the method works properly. Display the output of the methods to the console. Finally, display information of all the object in the ArrayList to the console. Task 3 for the third product: Your classes should be able to provide methods allowing one to (comparePrice) Compare the price whether more than or less than or equal to the given number. (verifyExpireProduct) Check whether the product is expired or not when it compares to the giving date. (getVolumn) Calculate the volume from the dimension of the product in cubic centimetres. (editProductInformation) Edit the product’s main information that shares among all class such as ID, Description, etc. Choose the appropriate input or/and output type for each method. Overload the constructor of all classes such that an object can be created with a default value for some attributes specified in the above requirement. 7. (Astaticmethodnamed“findProductFromDescription”)Takeanarraylistofproductobjectsanda string as an input, and output objects (a new array list of product objects) that description contains the input string. 8. (Astaticmethodnamed“sortByPrice”)Takeanarraylistofproductobjectsandsortthemandreturn a new sorted array list. (A static method named “allProductToString”) Taking an input of an array list and output a string that contains the information of all products in the array list. (Noted that you can use the output to string method in the core level to complete this method and each product should separate by a new line.) Write the test code (a separate class/file with the Main method) to test all methods in each classes

#include Using Namespace Std; Void Merge(int Arr[], Int Start1, Int End1, Int Start2, Int

#include using namespace std; void merge(int arr[], int start1, int end1, int start2, int end2) { int total = (end2 – start1 1); int * combined = new int[total]; int left = start1; int right = start2; for(int = 0; i < total: i ){ //if(left is invalid) // place item from arr[right] into combined[i], move over right //else if(right is invalid) // place item from arr[left] into combined[i], move over left //else if(arr[left] is smaller than arr[right) // place item from arr[left] into combined[i], move over left //else // place item from arr[right] into combined[i], move over right    } //combined has the orginal in sorted order //copy them back into the original array at the right starting index for(int i = 0; i end) { } else { mergeSort(arr, start, m); mergeSort(arr, m 1, end); merge(arr, start, m, m 1, end); } } void fill(int arr[], int count) { for (int i = 0; i < count; i ) { cout <> arr[i]; } } void display(int arr[], int count) { for (int i = 0; i < count; i ) { cout << arr[i] << endl; } } int main() { cout <> count; int * arr = new int[count]; fill(arr, count); mergeSort(arr, 0, count – 1); display(arr, count); }

In The Information Technology Field, Professional Certifications Help To Demonstrate Expertise To Potential Employers

In the Information Technology field, professional certifications help to demonstrate expertise to potential employers or clients. A certification helps testify that you have attained a certain level of mastery in the concerned area. For this Discussion, investigate several certifications in the computer networking field. In particular look at what content each includes and what level of expertise is required. Post by Day 3 the names of two networking certifications that you think would be valuable for your career goals. One of these should be an initial certification, which you could attain within the next 2 years. Explain how each of these certifications would be valuable to you. Also, explain how you plan to work toward obtaining these certifications.

You Have A Data File With 2 Columns Of Data (One Control And One

You have a data file with 2 columns of data (One control and One experimental). One column of data has 62 data points. The other column of data has 60 data points. You wish to do a t test on this data set in R. You successfully upload the data set into R but you find that R gives you an error when you try and do a simple t test on the data. What is the problem with this data set? a. Too many data points b. Uneven amount of data points c. Can’t do a t test with one control and one experimental (You need more groups) d. Data was uploaded incorrectly

#include Using Namespace Std; Int * Merge(int Arr1[], Int Arr2[], Int Arr1_size, Int Arr2_size){

#include using namespace std; int * merge(int arr1[], int arr2[], int arr1_size, int arr2_size){ int * combined = new int[arr1_size arr2_size]; //your code here       return combined; } //Ignore the content below: Do not edit void fill(int arr[], int count){ for(int i = 0; i < count; i ){ cout <> arr[i]; } } void display(int arr[], int count){ for(int i = 0; i < count; i ){ cout << arr[i] << endl; } } int main() { cout <> count1;    int * arr1 = new int[count1]; fill(arr1, count1); cout <> count2;    int * arr2 = new int[count2]; fill(arr2, count2);    int * arr3 = merge(arr1, arr2, count1, count2); int count3 = count1 count2;    display(arr3, count3); }

#include Using Namespace Std; Int Main() { Int Array_size; //ask The User How Many

#include using namespace std; int main() { int array_size;    //ask the user how many things they would like in the array cout <> array_size;    //make a dynamic array that big int * arr = new int[array_size];    for(int i=0; i < array_size; i ){ cout << "Enter Number "<< i 1 <> arr[i];    }    //your code goes below          return 0; }

#include Using Namespace Std; Void Swap(int Arr[], Int Pos_x, Int Pos_y){ } Int FindSmallest(int

#include using namespace std; void swap(int arr[], int pos_x, int pos_y){    } int findSmallest(int arr[], int start, int end){    } void sort(int arr[], int start, int end){    } void displayAll(int arr[], int array_size){    } int main() { int array_size;    //ask the user how many things they would like in the array cout <> array_size;    //make a dynamic array that big int * arr = new int[array_size];    for(int i=0; i < array_size; i ){ cout << "Enter Number "<< i 1 <> arr[i];    }    //your code goes below          return 0; }

Choose A Specific Topic In Information Systems Management, Identify A Critical Issue, Propose Solutions,

choose a specific topic in Information Systems Management, identify a critical issue, propose solutions, and develop a strategy for their solution Requirements The students will be required to fulfil the requirements as follows. Investigate the business (data management in google play store) Identify a topic and the gap to be addressed in the business. Identify the best IS technique to introduce in order to address the topic’s gap(name and explain the IS techniques) Familiarise with current techniques used Introduce a good strategy for the business solution (Must find a strategy and explain)

Python 3 Using The Code Provided You Will Build A Networked Connect Four Game,

Python 3 Using the code provided you will build a networked Connect Four game, which enables gameplay between two users, using console user interfaces, on a networked connection. While doing this, you will implement your own protocol to define how the client and server are to “talk” to one another. -There should be a file named server.py which contains the console UI for printing out the board object and a server object for network communications -There should be a file named client.py which contains the console UI for interacting with the user and printing out the board object. It will construct a “game client “object which uses sockets for communicating with the server -You shouldn’t need to call any functions manually to make your program run -client, game_client, and your Connect Four module must have mutually exclusive functionality client: Prints and inputs only, no socket communication, no game logic game_client: Socket communication only, no prints or inputs, no game logic Connect Four: Game logic only, no prints or inputs, no socket communication Connect Four Game class connectFour(object): def __init__(self): self.player = ‘R’ gboard=[[‘.’,’.’,’.’,’.’,’.’,’.’,’.’],[‘.’,’.’,’.’,’.’,’.’,’.’,’.’],[‘.’,’.’,’.’,’.’,’.’,’.’,’.’],[‘.’,’.’,’.’,’.’,’.’,’.’,’.’],[‘.’,’.’,’.’,’.’,’.’,’.’,’.’],[‘.’,’.’,’.’,’.’,’.’,’.’,’.’]] self.board = gboard def __str__(self): a = ” ” r2= a.join(self.board[5]) r3= a.join(self.board[4]) r4= a.join(self.board[3]) r5= a.join(self.board[2]) r6= a.join(self.board[1]) r7= a.join(self.board[0]) return ” 1 2 3 4 5 6 7n %sn %sn %sn %sn %sn %sn” % (r7, r6, r5, r4, r3, r2) def __new__(self): return object.__new__(self) def player_getBoard(self): return self.board def gameOver(self, player): board = connectFour.player_getBoard(self) for c in range(4): for r in range(6): if board[r][c] == player and board[r][c 1] == player and board[r][c 2] == player and board[r][c 3] == player: return True for c in range(6): for r in range(3): if board[r][c] == player and board[r 1][c] == player and board[r 2][c] == player and board[r 3][c] == player: return True for c in range(4): for r in range(3): if board[r][c] == player and board[r 1][c 1] == player and board[r 2][c 2] == player and board[r 3][c 3] == player: return True for c in range(4): for r in range(3, 6): if board[r][c] == player and board[r-1][c 1] == player and board[r-2][c 2] == player and board[r-3][c 3] == player: return True counter=0 for c in range(len(self.board)): for r in self.board[c]: if r == ‘.’: counter =1 if counter==0: return True def playerTurn(self, player): if connectFour.gameOver(self, player): self.player = “Winner is player {}”.format(player) return self.player elif player == ‘R’: self.player = ‘Y’ return self.player else: self.player = ‘R’ return self.player def playerMove(self, player, col): row = 5 while True: try: if self.board[row][col] == ‘.’: self.board[row][col] = player return “success” else: row -= 1 except IndexError: return “Error” except TypeError: return “Error” return self.board Console from connectFour import connectFour if __name__ == ‘__main__’:       player = ‘R’ game = connectFour() print(“Game start”) while True and player == “R” or player == “Y”: try:    print(“Player”, player, “Enter column between 1 and 7):”)    move = int(input()) if game.playerMove(player, move-1) == ‘success’: print(game) player = game.playerTurn(player) else: print(‘Error’) except ValueError: print(‘Make another move’) print(player)

Question About Cleanroom Software Engineering Process: Q: Was The Process Used For The Development

Question about Cleanroom Software Engineering Process: Q: Was the process used for the development of industrial-strength software systems? What were the results?

Write A Program Which, Given A Four Digit Whole Number, Calculates The Digital Root

Write a program which, given a four digit whole number, calculates the digital root of the number by first calculating the sum of the four digits of the number and then totalling the digits in the result of that calculation (a single digit whole number – 1 to 9 inclusive).   For example, given the four digit number 3498: The beginning number is 3498 The sum its digits is 3 4 9 8 = 24 The number is now 24 The sum of its digits is 2 4 = 6 The resulting digital root of 3498 is 6. The program prints a single line of output: the string ‘The number: ‘, followed by the starting four digit number, followed by the string ‘ The digit total: ‘ and finally, the single digit total.   The first line of the program initialises the numbervariable, e.g., number = 3498 Note: you will only need to add the digits of the number twice because you are always starting with a two digit number and the maximum sum of four single digits is 36 (for the initial four digit number 9999). Hint: when doing the second sum of the digits you need to make sure that the number always has two digits:  convert the number into a string, concatenate a “0” to the string. Your program must give the correct output in the same format as the outputs in the examples below. If number is assigned the four digit number 9999, the output of your program should be: The number: 9999 The digit total: 9 If number is assigned the four digit number 1000, the output of your program should be: The number: 1000 The digit total: 1 The first line of code initialising the variable, number, is given and you should NOT type the statement which initialises the number variable as part of your answer.

Dream Real Estate Is A Leading Agency In Australian Market. Dream Agency Work Closely

Dream Real Estate is a leading agency in Australian market. Dream Agency work closely with customer to buy and sell units, houses and townhouses across Sydney regions. Dream agency shares information with different organisation, partners, stockholders and government department in order to ensure the efficiency of work. You are hired by Dream Agency to design their database…Good Luck! • A unique identifier is used to identify the detail of houses and units. The detail of each house includes ID, Address, building size and land area. While the detail of each unit includes ID, Address, building size, number of rooms, and strata fees. • A unique identifier is used to identify the detail for each suburb including suburb ID, suburb name, and suburb area. • A unique identifier is used to identify the detail for each council including: council number, council name, council region and council population. • A unique identifier is used to identify the detail for each customer, the detail includes ID, name, address and DoB. • A unique identifier is used to identify the detail of an agent including ID, name, address, DoB, years of experience and work area. • Any house or unit is located in one suburb, while any suburb may have many houses and units. Note: What about if a council is a new one? • One council may have many suburbs. • Any customer may have one or many houses or units, while any house or unit should belong to only one customer. • When there is a new customer registered, one agent is allocated to that customer, the date of job allocation should be recorded. • One of the agents is selected to supervise the other agents. D 1.1 [4 marks] You have been provided with the business rules for a number of entities. Based on the business rules, you are expected to construct an Entity-Relationship (ER) diagram. The ER diagram should include entities, attributes (if there are less than three specified in the business statements, please add some extra attributes), identifiers and corresponding data types, the relationships among entities with cardinality, constraints and associative entities. Please note that in relationships, if cardinalities or constraints are not clearly stated in assignment specification, you may make reasonable assumptions 1.2 [4 marks] You are required to add extra 4-6 entities in the final ERD. Each entity should have at least 3 attributes. These entities should have relationships with the other given entities in the given business rules. The added entities should include at least TWO of the following: A) A unary relationship B) A ternary relationship C) An associative entity D) Entities that could be generalised/specialised Task 2: EER Diagram (CDM) (2.5 Marks) In a separate diagram, extend the final task 1 (including both 1.1 and 1.2) to apply generalization/specialization technique (Inheritance) to construct an Enhanced-ER (EER) diagram. The EER diagram should specify the complete (total) and disjoint (mutually exclusive) constraints on the generalization/specialization. Task 3: LDM Diagram (1.5 Marks) Generate an individual Logical Data Model (LDM) for the following entities, you need to clearly show PK and FK: 1. Unit and Suburb 2. House and Customer 3. TWO ENTITIES OF YOUR EXTRA ENTITIES

Write A Program Which, Given A Day Number, A Month Number And A Year,

Write a program which, given a day number, a month number and a year, displays the date in two different formats: Standard format and New Zealand format.  The first three lines of the program initialise the three variables, e.g., day = 6 month = 7 year = 1976 The Standard format  is the format “yyyy-mm-dd”. The New Zealand format  is the format “dd/mm/yyyy”. Note: any single digit day or month number should ALWAYS has a “0” in front of it.    Hint: to make sure a number always has exactly two digits: convert the number into a string, concatenate a “0” in front of the number (string) and slice the last two characters of the string. Your program must give the correct output in the same format as the outputs in the examples below. If the three variables are assigned: day = 6 month = 7 year = 1976 the output is: Standard format: 1976-07-06 New Zealand format: 06/07/1976 If the three variables are assigned: day = 23 month = 5 year = 1999 the output is: Standard format: 1999-05-23 New Zealand format: 23/05/1999 The first three lines of code initialising the variables, day, month and year, are given and you should NOT type the statement which initialises these three  variables as part of your answer.

Create A Complete ERD In Crow’s Foot Notation That Can Be Implemented In The

Create a complete ERD in Crow’s Foot notation that can be implemented in the relational model using the following description of operations. Hot Water(HW) is a small start-up company that sells spas. HW does not carry any stock. A few spas are set up in a simple warehouse so customers can see some of the models available, but any products sold must be ordered at the time of the sale. · HW can get spas from several different manufacturers. · Each manufacturer produces one or more different brands of spas. · Each and every brand is produced by only one manufacturer. · Every brand has one or more models. · Every model is produced as part of a brand. For example, Iguana Bay Spas is a manufacturer that produces Big Blue Iguana spas, a premium-level brand, and Lazy Lizard spas, an entry-level brand. The Big Blue Iguana brand offers several models, including the BBI-6, an 81-jet spa with two 6-hp motors, and the BBI-10, a 102-jet spa with three 6-hp motors. · Every manufacturer is identified by a manufacturer code. The company name, address, area code, phone number, and account number are kept in the system for every manufacturer. · For each brand, the brand name and brand level (premium, mid-level, or entry-level) are kept in the system. · For each model, the model number, number of jets, number of motors, number of horsepower per motor, suggested retail price, HW retail price, dry weight, water capacity, and seating capacity must be kept in the system. Your task Create an ERD for each of the above statements that describe the current business rules for HW. For each new statement being the business rule. Use Crows Foot notations and include all of the following in each part: All entities with Primary key and any foreign key attributes; (3 marks) The relationships between entities; (2 marks) The cardinality and optionality of each relationship; (3 Marks) Any M:N relationships are be resolved to 1:M relationships and ERD description is clear; (2 Marks) Include your Student ID and Full Name under the ERD (in Draw.io) then copy the whole ERD as an image to your Word Document. **Additional 1 mark is given when following all the above correctly and producing a neat ERD with correct notations. NOTE: Use https://www.draw.io to create your ERD Include the PKs where appropriate Manually drawing the ERD is NOT acceptable. NOTE: For guidance on how to draw an ERD based on business rules, watch this YouTube video: https://www.youtube.com/watch?v=YvJ4t9_2SWk Rationale back to top Subject learning outcomes This assessment task will assess the following learning outcome/s: be able to model complex business rules using Entity Relationship Diagrams (ERDs). be able to research a recent development in the field of database technology. The marking criteria for this assignment are: PART A: Criteria HD DI CR PS be able to research a development in the field of database technology. Demonstrates an excellent ability at researching recent developments in the field of database technology with all the responses supported by examples and use correct terminology. Demonstrates a good ability at researching recent developments in the field of database technology with most responses supported by examples and use correct terminology. Makes a genuine attempt at researching recent developments in the field of database technology with some responses supported by examples and use correct terminology. Limited knowledge of the implementation considerations and a basic explanation of the security issues. PART B: Criteria HD DI CR PS be able to model complex business rules using Entity Relationship Diagrams (ERDs). Model identifies all PKs, attributes and relationships. Model accurately represents all four business rules and includes all entities, PKs, attributes, relationships, associative entities (if applicable), cardinalities and optionalities. Model identifies PKs, attributes and relationships with minor omissions. Model accurately represents the business rules and includes the identified entities, PKs, attributes, relationships, associative entities (if applicable), cardinalities and optionalities. Model identifies key PKs, attributes and relationships. Model represents key business rules and includes the related entities, PKs, attributes, relationships, associative entities (if applicable), cardinalities and optionalities. Model represents key business rules and draws out the key relationships. It includes the related entities, PKs, attributes, relationships, cardinalities and optionalities with minor errors. Presentation back to top Use Crows Foot notations and visit https://www.draw.io to create your ERD. Requirements back to top Submit as a Word document: Add table of contents indicating part A and Part B. Embed your ERD as an image/object (use screenshot or snipping tools) into the Word document. Don’t use any other file formats Don’t submit your file in XML

Explore History Of Database Systems And Discuss The Three Most Important Developments In Database

Explore history of database systems and discuss the three most important developments in database development history to date. (1.25 marks each) Note: Use proper references in the APA style. Your research report must be well presented using proper content organization. (1.25 marks)

Prepare A PowerPoint Briefing For The VideoDev Board. Your Briefing Should: Explain The Cloud

Prepare a PowerPoint briefing for the VideoDev board. Your briefing should: Explain the Cloud Computing to the Board: What are the main cloud computing concepts that the Board should understand before committing to move to the Cloud? (10 marks) and, Why you think that a move to the Cloud could be good for VideoDev (10 marks); Explain how you think that VideoDev could move their video processing to the cloud. You will need to discuss: Explain the differences between the service models IaaS and PaaS (10 marks) What type of service model you would recommend? (10 marks) What are the advantages of, and the issues with, the service model that you recommended for VideoDev’s video processing? (10 marks) What other types of architectural patterns could be used in this deployment? (20 marks) How that move would assist in removing backlogs? (10 marks) Which would provide the best SDOE for VideoDev – Amazon WorkSpaces or Windows Virtual Desktop? Briefly discuss the advantages and disadvantages of each possible SDOE (10 marks) Briefly discuss how the SDOE could be delivered to a staff members laptop (10 marks). Your presentation is to be completed in either PowerPoint or Google slides. Your presentation must not exceed 30 slides of content. The presentation should be a maximum of 30 slides, including introduction, conclusions and recommendations. You are required to record your presentation as a Voice over Presentation (VoP) with your commentary on each slide. Each slide should have speaking notes in the Notes section which expand on the information in the slide. Images and quotations used in slides must be referenced on that slide. The slide deck does require a reference list. References are to be included on a Reference list slide(s), but these are not counted as part of the slide deck limit. Your presentation should highlight the significant points of your argument, but you should include the detail in the speaking notes section of your slides.

Note: Create A Console Application Program (unless Otherwise Specified In The Problem) And Do

Note: Create a console application program (unless otherwise specified in the problem) and do not use the String.Format() method in formatting numbers for each of the following problems. The number 138 is called well-ordered because the digits in the number (1 3 8) increase from left to right (1 < 3 < 8). The number 365 is not well-ordered because 6 is larger than 5. Write a C# program that given a number (10 -9999) determine if it is well-ordered or not. Output "X is a well-ordered number" or "X is not a well-ordered number" where X is the number entered from the keyboard. Error check input. Use a user-defined method to calculate the answer. Output should be user friendly.

Note: Create A Console Application Program (unless Otherwise Specified In The Problem) And Do

Note: Create a console application program (unless otherwise specified in the problem) and do not use the String.Format() method in formatting numbers for each of the following problems. IRS informants are paid cash awards based on the value of the money recovered. If the information was specific enough to lead to a recovery, the informant receives 10 percent of the first $75,000, 5 percent of the next $25,000, and 1 percent of the remainder, up to a maximum award of $50,000. Write a C# program the requests the amount of the recovery as input and displays the award. Finally, the program should ask if the user wants to input another amount or quit. Check case. Format the result to two decimal places. Refer to the sample output below. Sample Run: Enter amount recovered: 125000 Reward amount: $9,000.00 Run again (Y/N): n

Note: Create A Console Application Program (unless Otherwise Specified In The Problem) And Do

Note: Create a console application program (unless otherwise specified in the problem) and do not use the String.Format() method in formatting numbers for each of the following problems. Write a C# program that asks the user to input a sentence (one line) and then displays the sentence with all occurrences of the letter r or R removed. Must create a user-defined function for the calculation. Refer to the sample output below. Sample Run: Enter the sentence: Park the car in Harvard Yard. Pak the ca in Havad Yad.

The post C # Question For Loop Change KPH To MPH You Have Just Imported An appeared first on Smashing Essays.

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