Consider the following code segment, where num is an integer variable.int[][] arr = {{11, 13, 14 ,15},{12, 18, 17, 26},{13, 21,
Setler79 [48]
Answer:
c. 16 17
Explanation:
Given

The above code segment
Required
The output
In the code segment, we have the following iterations:
for (int j = 0; j < arr.length; j++) and for (int k = 0; k < arr[0].length; k++)
The above iterates through all the elements of the array.
The if condition is true, only on two occasions
(i) When i = 0; j = 2
(ii) When i = 3; j = 0
i.e.
arr[0][2] = 14
arr[3[0] = 14
So, the result of the print statement is: j + k + arr[j][k]
(i) When i = 0; j = 2
j + k + arr[j][k] = 0 + 2 + 14 = 16
(ii) When i = 3; j = 0
j + k + arr[j][k] = 3 + 0 + 14 = 17
<em>Hence, (c) 16 17 is true</em>
Answer:
Feed tracking and use customs objects record fields and post them as an update. Feed tracking detects that user follows record and update their view of What follow.
Explanation:
Feed tracking is available in Sales Group, Professional, Enterprise, and Developer.
Custom Object is a set of records that allow you to store additional data in an account record and link the data to contact.
Create a custom object in Salesforce
- Login in sandbox
- click the new Custom Object. select create custom Object
- Enter Book for label
- Enter Book for plural label
- Click Save
// Created Custom Object and Custom Filed
- Click new Select Number for datatype and click Next
- Enter in the filed label
- Enter 2 in decimal places
- Click Next for filed-level security
- Click Save