Skip to content

Commit

Permalink
Remove stream question from practice exam 3
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-cs committed Nov 13, 2017
1 parent 764fe39 commit fd0d474
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Binary file modified cs1331-exam3-practice-answers.pdf
Binary file not shown.
Binary file modified cs1331-exam3-practice.pdf
Binary file not shown.
18 changes: 9 additions & 9 deletions cs1331-exam3-practice.tex
@@ -1,4 +1,4 @@
\documentclass[answers,addpoints,9pt]{exam}
\documentclass[addpoints,9pt]{exam}
\usepackage{verbatim, multicol, tabularx,graphicx}
\usepackage{amsmath,amsthm, amssymb, latexsym, listings}

Expand Down Expand Up @@ -428,15 +428,15 @@ \section*{Note} This is an object-oriented programming test. Java is the requir
\end{solution}


\part[5] Write a stream pipeline that does the same thing as in the previous part above.
%% \part[5] Write a stream pipeline that does the same thing as in the previous part above.

\begin{solution}[1.5in]
\begin{verbatim}
labels.stream()
.filter(e -> !isDisabled())
.forEach(e -> System.out.println(e.getText()))
\end{verbatim}
\end{solution}
%% \begin{solution}[1.5in]
%% \begin{verbatim}
%% labels.stream()
%% .filter(e -> !isDisabled())
%% .forEach(e -> System.out.println(e.getText()))
%% \end{verbatim}
%% \end{solution}



Expand Down

0 comments on commit fd0d474

Please sign in to comment.