Procedure SumEvenOdd(stdin: array [0..100] of integer)
var
i, sum_even, sum_odd: integer;
begin
for i := 0 to 100 do begin
if stdin[i] < 0 then
break;
if stdin[i] mod 2 = 0 then //even number
sum_even := sum_even + stdin[i]
else
sum_odd := sum_odd + stdin[i];
ShowMessage('sum of even is ' + IntToStr(sum_even) + ' ' + 'sum of odd is' + IntToStr(sum_odd) ) ;
end;
end
Answer: Access control
Explanation:
Access control implements a security policy that specifies who or what may have access to each specific system resource and the type of access that is permitted in each instance.
A typical example of this is in ERPs where access controls defines what access codes a process owner has and what access a reviewer and an approval has. Where a personnel has access to carry out a transaction, review and approve the transaction, access controls are said to be deficient.
The right answer is Access control
Hope this helps!!
Arpa......................
Answer: (A) Computer science trends to deal with the data.
Explanation:
The computer science basically tend to deal with the big data and data science as it is the emerging technologies with the upcoming years.
As, with the large amount of the data and high transmission rate we can easily developed new computing technologies with low budget.
Data is basically defined as simple facts and figures and contain information that is very useful for developing the computing technology for study and processing the system.
Therefore, Option (A) is correct.
Answer: Options (I'm not 100% sure but I think its options.) Have a nice day!