-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexercise9.tex
66 lines (42 loc) · 1.05 KB
/
exercise9.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
\documentclass[11pt]{article}
\include{packages}
\begin{document}
% ========== Edit your name here
%\author{Your Name}
\title{\coursename~Quiz 9: Due by \DueDate{\coursedate}{79}}
\date{}
\maketitle
\medskip
% ========== Begin answering questions here
\section*{Exercises}
\begin{enumerate}
\item Components and actions (4 credits): \\
For the distributed computation following features are needed
\begin{itemize}
\item Serialization
\item Component
\item Actions
\item Plain actions
\end{itemize}
Please explain these features.
\end{enumerate}
\section*{Programming exercise}
\begin{itemize}
\item Components and Actions (6 credits): \\
Please extend the struct below to a component. Add a action for accessing the data and the size. In addition, add the struct \lstinline|struct data| for the client.
\begin{lstlisting}
struct data_server{
data_server(size_t size){
data = new double[size];
}
private:
double* data;
size_t size;
}
\end{lstlisting}
\end{itemize}
% ========== Continue adding items as needed
\doclicenseThis
\end{document}
\grid
\grid