CSE466 Final Study Guide Flashcards Quizlet
CSE466 Final Study Guide Flashcards Quizlet
com/505356120/cse466-final-study-guide-flash-cards/
Deep learning typically solves the map and reduce principles using multiple
a computation-intensive layers.
problem based on
1 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
2 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
structured data.
By definition, poly-structured
unstructured data.
data include
semi-structured data.
3 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
What is the key difference The labels marking the drone movement are
between the data used for removed in the data used for flight path
training and for flight path recognition.
recognition in the flight data
collection and processing
system?
In a network traffic monitoring Comparing the current user behavior with the
system, when is the real-time normal traffic patterns.
big data processing needed
most?
What is a linear regression It assumes that the data distribute around a linear
classifier? function.
A difference between an RDF the key in a key-value pair is unique, while an RDF
triple and a key-value pair in triple does not have the requirement for any
big data stores is that element.
4 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
MapReduce computing in big N key-value pairs, and then Reduce computes the
data system takes a list of key- N sub-lists into a single list.
value pairs as input and
computes the results in two
phases: Map and Reduce.
Map will process the input list
and output
5 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
The way that "LINQ to XML" load the entire XML file into memory like DOM
processes XML files is to (Document Object Model).
6 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Given the piece of code below, what will All the course-elements in Courses.xml that has an
be in the result set?XElement result = attribute Code = "CSE310"
XElement.Load("Courses.xml");IEnumerable
course =from c in
myCourses.Elements("Course")where
(string)c.Attribute("Code") ==
"CSE310"select c;
7 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Are XQuery and XQL the In W3C definition, they mean the same, but in
same language? vendor implementations they may be different.
What are the problems of The transformation may end up with using many
transforming XML files into tables or a large table with many null columns.
tables? Select all that apply. The ordering information may get lost.
What does this LINQ Put n in the group with the key = n%5.
statement "group n by n % 5
into g" do?
What does a composite key Two or more properties are used for correlating
mean in the LINQ's join the elements of two collections.
operator?
8 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
How do you create a left Use join-cause and then call DefaultIfEmpty()
outer join in LINQ? method.
What does the first-class The function can be placed anywhere where its
object mean in functional return value is expected.
programming languages?
Using LINQ to SQL, the table defining an attribute and mark the object's
schema in SQL database and properties by [column] to associate them with the
the members (properties) of columns in the table.
an in memory object can be Double click the database in the project to open
associated through (Select all the item, Then, drag the object into the database.
that apply)
9 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
10 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
11 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
12 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
What statement best Three seconds after ctrl key is pressed, the
describes the function of the state.Status will change to "Opened" or to
following diagram? "Closed"
If you define an event output can still define another data output for the activity
for an activity, you and use both outputs in your application.
13 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Consider a VIPLE Custom Both Code Activity and Custom Activity can take
Activity and a VIPLE Code parameter values from the outside, e.g., from the
Activity. What statement is Main diagram.
correct?
What is the function of the It waits for all incoming data items to arrive.
basic activity "Join"?
For the following maze, which Greedy algorithm taking the first working solution
maze navigation algorithms Local best measuring the distances on the left and
CANNOT find the exit point? right
14 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
What are the operations Create and initialize a table with the matched
performed by adapter.Fill(ds, schema.
"titles") in the SqlDataAdapter Retrieve records and write into the table.
class? Select all that apply. Close the connection to the database.
15 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Devices Profile for Web implementing Web service interfaces for IoT
Services (DPWS) is an OASIS devices.
standard for
16 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Which statement about VIPLE Event and data have separate output ports.
event and data outputs are
correct?
17 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
In a messaging system, where Between the sender and the messaging service.
can the synchronous Between the receiver and the messaging service.
communication be
meaningfully used?
The correlations element in a set of shared business data fields that capture
BPEL is used for specifying the state of the interaction.
18 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
Oracle BPM Suite supports the execution of both BPMN and BPEL.
19 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
How do we use a Web service Use each operation of the Web service like a
in a workflow after the Web custom activity.
service is added into the
workflow project?
What is a persistent service in wait for the second part of service call
Workflow Foundation? It is a persistently.
service that can
Why do we need to use the Because not all the input data to the service are
finite state machine model for available at the first call to the service.
defining the image verifier?
20 of 21 26-Feb-22, 3:21 PM
CSE466 Final Study Guide Flashcards | Quizlet https://quizlet.com/505356120/cse466-final-study-guide-flash-cards/
How is the value of variable X <assign> <copy> <from> variable = "X" /> <to
assigned to variable Y in variable = "Y" /></copy></assign>
BPEL?
21 of 21 26-Feb-22, 3:21 PM