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
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