Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Write a C code to add two polynomials having two numbers of unknown variables. 


Write a C code to delete all prime numbers present in a doubly linked list. For example, if

input: 5->6->11->4->12->16, then output 6->4->12->16.


Using Google meet platform as practical example, discuss how it would be categorized under this course and discuss it deferent components and their purposes


Write a general error handling class that has general functions that would take in a username and has the following conditions: Any sort of input from the user where we would expect them to make a mistake • the user can not enter numbers into their user name in username otherwise it would return an error • the user must enter atleast one cap character in the text field if not it returns an error • the user cannot enter special characters in the user name otherwise it would return invalid login.
Modify your program from Learning Journal Unit 7 to read dictionary items from a file and write the inverted dictionary to a file. You will need to decide on the following: How to format each dictionary item as a text string in the input file. How to covert each input string into a dictionary item. How to format each item of your inverted dictionary as a text string in the output file. Create an input file with your original three-or-more items and add at least three new items, for a total of at least six items. Include the following in your Learning Journal submission: The input file for your original dictionary (with at least six items). The Python program to read from a file, invert the dictionary, and write to a different file. The output file for your inverted dictionary. A description of how you chose to encode the original dictionary and the inverted dictionary in text files.
Describe how catching exceptions can help with file errors. Write three Python examples that actually generate file errors on your computer and catch the errors with try: except: blocks. Include the code and output for each example in your post. Describe how you might deal with each error if you were writing a large production program. These descriptions should be general ideas in English, not actual Python code.
Write a general error handling class that has general functions that would take in a string, which the main pages would get as an input and those functions can search for specific things. For example: any sort of input from the user where we would expect them to make a mistake • the user can not enter numbers into their user name in user login otherwise it would return an error • where the user must enter atleast one cap character in the text field if not it returns an error • the user cannot enter special characters in the user name otherwise it would return an error.

Given a number N, create a 2D arrays with n rows and n columns. Now inspect the matrix pattern below and come up with a formula to populate the array for any give NXN matrix.

5      4      3    2   1

10    8      6    4   2

15   12     9    6   3

20   16    12   8   4

25    20   15  10  5

Sample Run1                                               

         Enter a number (N): 5                                                                         

Output1:

5      4      3    2   1

10    8      6    4   2

15   12     9    6   3

20   16    12   8   4

25    20   15  10  5


Create a java program that initialize a two dimensional array with the continuous assessment marks used to determine the semester mark for PRG510S exam qualification, The system should also create an array of student names in correspondence to the marks (Note: the appropriate weights of each individual assessment are given under corresponding headings and both the marks and student names are read from the user input).

 

test1

 (Weight 20%)

test2

 (Weight 20%)

labs

 (Weight 20%)

in_class exercise

(Weight 10%)

assignment

 (Weight 30%)

John

50

60

79

89

63

Harry

41

52

68

56

40

Uushona

30

20

52

38

47

Sililo

23

33

45

19

27

                                                                                                        

Enter class size: 3

Enter student name:John

Enter John’s semester marks: 50 60 79 89 63

Enter student name:Harry

Enter Harry’s semester marks: 41 52 68 56 40

Enter student name:Uushona

 

Output1:

Student              Semester mark        Qualifies for Exam?

---------                -------------------                -----------------------

John             66                    YES

Harry                   50                    YES

Uushona             38                     NO




Write a python program to implement hash table with quadratic probing 1) insert item into hash table 2) remove item into hash table 3) check the size of hash table 4) Display Hash table
LATEST TUTORIALS
APPROVED BY CLIENTS