首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
解析R语言编程|讲解数据库SQL|讲解数据库SQL|讲解留学生Processing
项目预算:
开发周期:
发布时间:
要求地区:
Practical Questions
#include
#define STOP_NUMBER 100
int main(int argc, char *argv[]) {
int monkey = 1;
int i = 0;
while (i < STOP_NUMBER) {
monkey += i;
i++;
}
printf("Total is: %d\n", monkey);
}
Which of the following Code Style Issues are present in this code?
A: Inconsistent Indentation
B: Bad Variable name(s)
C: Overly Deep Nesting
D: Lack of use of constants
Enter the answer(s) in the file prac_mc.txt, after the [q2], inside the curly brackets.
This question can have more than one answer and a correct answer will identify all the issues in the code.
For example, if you think that A and C are the correct answers, your answer will be: AC
If you think that D alone is the correct answer, your answer will be: D
Short Answer Question 3 (1 mark)
The file part1_q3.c contains this C Code:
#include
#include
struct node {
int data;
struct node *next;
};
int main(void) {
struct node *head = malloc(
);
}
What code should replace
?
Enter as your answer as the exact text you would write in this program.
Enter this answer in the file prac_mc.txt, after the [q3], inside the curly brackets.
Do not enter any extra characters. Do not write \n for a newline character. Do not enter any explanation.
You can check your answers are in the correct format with 1091 autotest-pracexam prac_mc
You can submit the question with give dp1091 prac_mc prac_mc.txt
There will be 20 Short Answer questions in the exam. See the lab exercise for more information.
Question 1
Passing this question, or question 3, is sufficient to pass the Arrays Hurdle.
Your task is to add code to this function:
// Return the maximum sum of a row in the 2D array.
int max_row_sum(int array[TEST_ARRAY_SIZE][TEST_ARRAY_SIZE], int side_length) {
// PUT YOUR CODE HERE (you must change the next line!)
return 42;
}
Add code so that max_row_sum finds the row in the square two dimensional array with the highest sum, and returns that
value. You are guaranteed the array will only contain positive numbers.
For example if the array is a 3 height by 3 width array
6, 7, 8,
1, 1, 9,
3, 2, 8
Your function should return 21 because:
6 + 7 + 8 == 21
1 + 1 + 9 == 11
3 + 2 + 8 == 13
As you can see, the largest row sum is 21.
Testing
prac_q1.c also contains a simple main function which allows you to test your max_row_sum function.
Your max_row_sum function will be called directly in marking. The main function is only to let you test your max_row_sum
function
Assumptions/Restrictions/Clarifications.
max_row_sum should return a single integer.
max_row_sum should not change the array it is given.
max_row_sum should not call scanf (or getchar or fgets).
max_row_sum can assume the array contains at least one integer.
max_row_sum function should not print anything. It should not call printf.
Your submitted file may contain a main function. It will not be tested or marked.
You can autotest this code with 1091 autotest-pracexam prac_q1
You can submit this code with give dp1091 prac_q1 prac_q1.c
You can check your submission has been accepted with 1091 classrun -check prac_q1
You can see your previous autotests here
Question 2
Passing this question, or question 4, is sufficient to pass the Linked Lists Hurdle.
Note prac_q2.c uses the following familiar data type:
struct node {
struct node *next;
int data;
};
count_last is given one argument, head, which is the pointer to the first node in a linked list. You are guaranteed the list will
not be empty.
Add code to count_last so that its returns the number of values which are the same as the last value in the list.
For example if the linked list contains these 8 values:
16, 12, 8, 12, 13, 19, 21, 12
count_last should return 3, because 12 is the last value, and 12 occurs 3 times in the list (including the last number).
Testing
prac_q2.c also contains a main function which allows you to test your count_last function.
This main function:
Question 3
Passing this question, or question 1, is sufficient to pass the Arrays Hurdle.
converts the command-line arguments to a linked list
assigns a pointer to the first node in the linked list to head
calls count_last(head)
prints the result.
Do not change this main function. If you want to change it, you have misread the question.
Your count_last function will be called directly in marking. The main function is only to let you test your count_last function
Here is how you use main function allows you to test count_last:
$ cp -n prac_q2.c .
$ dcc prac_q2.c -o prac_q2
$ ./prac_q2 16 12 8 12 13 19 21 12
3
$ ./prac_q2 2 4 6 2 4 6
2
$ ./prac_q2 3 5 7 11 13 15 17 19 23 29
1
$ ./prac_q2 2 2 2 3 2
4
Assumptions/Restrictions/Clarifications.
count_last will never receive a linked list with no nodes. That is, the head will never be NULL
count_last should return a single integer.
count_last should not change the linked list it is given. Your function should not change the next or data fields of list nodes.
count_last should not use arrays.
count_last should not call malloc.
count_last should not call scanf (or getchar or fgets).
count_last should not print anything. It should not call printf.
Do not change the supplied main function. It will not be tested or marked.
You can autotest this code with 1091 autotest-pracexam prac_q2
You can submit this code with give dp1091 prac_q2 prac_q2.c
You can check your submission has been accepted with 1091 classrun -check prac_q2
You can see your previous autotests here
In the final exam, question 3 will be an arrays question, more difficult than question 1.
Question 4
Passing this question, or question 2, is sufficient to pass the Linked Lists Hurdle.
Note prac_q4.c uses the following familiar data type:
struct node {
struct node *next;
int data;
};
delete_last is given one argument, head, which is the pointer to the first node in a linked list.
Add code to delete_last so that it deletes the last node from list.
delete_last should return a pointer to the new list.
If the list is now empty delete_last should return NULL.
delete_last should call free to free the memory of the node it deletes.
For example if the linked list contains these 8 elements:
16, 7, 8, 12, 13, 19, 21, 12
Question 5
This question will not satisfy either hurdle.
Question 6
This question will not satisfy either hurdle.
Question 7
This question will not satisfy either hurdle.
Question 8
This question will not satisfy either hurdle.
delete_last should return a pointer to a list with these elements:
16, 7, 8, 12, 13, 19, 21
Testing
prac_q4.c also contains a main function which allows you to test your delete_last function.
This main function:
converts the command-line arguments to a linked list
assigns a pointer to the first node in the linked list to head
calls delete_last(head)
prints the result.
Do not change this main function. If you want to change it, you have misread the question.
Your delete_last function will be called directly in marking. The main function is only to let you test your delete_last function
cp -n prac_q4.c .
dcc prac_q4.c -o prac_q4
./prac_q4 16 7 8 12 13 19 21 12
[16, 7, 8, 12, 13, 19, 21]
./prac_q4 2 4 6 2 4 6
[2, 4, 6, 2, 4]
./prac_q4 42
[]
./prac_q4
[]
Assumptions/Restrictions/Clarifications.
delete_last should call free to free the memory for the node it deletes
delete_first should not change the data fields of list nodes.
delete_last should not use arrays.
delete_last should not call malloc.
delete_last should not call scanf (or getchar or fgets).
delete_last should not print anything. It should not call printf.
Do not change the supplied main function. It will not be tested or marked.
You can autotest this code with 1091 autotest-pracexam prac_q4
You can submit this code with give dp1091 prac_q4 prac_q4.c
You can check your submission has been accepted with 1091 classrun -check prac_q4
You can see your previous autotests here
In the final exam, question 5 will be an arrays question, more difficult than question 3.
In the final exam, question 6 will be a linked lists question, more difficult than question 4.
In the final exam, question 7 will be a challenging question.
In the final exam, question 8 will be a very challenging question.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!