A web client sends one GET request to the test flow's HTTP Listener, which causes the test flow to call
the updateTemp flow After the test flow returns a response, the web client then sends a different
GET request to trie getTemp flow's HTTP Listener The test flow is not called a second time.
What response is returned from the request to the getTemp flow's HTTP Listener?
A)
B)
C)
D)
C
Answer A, return from database is array
Answer is C. The data is being store in Objectstore. The values are being written on same Key : "Temp", hence the last value will get stored in the Objectstore key. The last value is retrieved with value as 85.
For each is present so each value will be overided in object store. At last it will be remaining with 85. When we retrive from store it will be {temp : "85"}