Answer:
D
Explanation:
An application that runs the same way on multiple operating systems is called
"cross-platform application". For example we develop one application which we are able to execute on windows, Linux without any issues then it is a cross platform application. Our code should be like that it supports multiple Operating Systems
Answer:
void main(){
string name;
cout<<"Enter Name";
cin>>name;
cout<<"Greetings " ;
cout<<name;
}
Explanation:
in main function we declared a variable called "name" .using cin we are reading the value into name and we are printing that name using cout.
Answer: Lattice-based, non-discretionary
Explanation: Lattice-based access control is a form of non-discretionary access control in which users are assigned a matrix of authorizations for particular areas of access. Lattice-based access control are usually used to restrict or define the level of authorization granted to a subject which may be an individual, organization or group or the that given to the object which may include applications and computers.It utilizes a non-discretionary approach whereby the defined access is uniformly enforced across all subjects and objects within the confines of an information system.
Answer:
(A) IF (IsFound
(afternoonList, child))
{
APPEND (lunchList, child)
}
Hope this helps!