Answer:
different or difference between Dot-matrix and Daisy-wheel printer
Answer:Implicit Association Test (IAT)
Explanation:Implicit Association Test is the sort of test that is made for the analyzing the thoughts and beliefs of group of people . It is basically performed because of displaying the unknown facts or attitude which people don't want to display or don't want to report.
Implicit Association Test (IAT) is the test that helps in bringing out the hidden and unreported situations or facts about the people.
Answer:
Ventura Inc requires only System software's
Explanation:
The system software has three major functions which are:
1. File and disk management: this involve managing of files in the system, when user want to save, move, copy, delete and rename files, The system software will handle those task
2. Allocating system resources: The system resources such as time, memory, data input and output are allocated by the system software. The main memory is managed by the system software to avoid conflict among various task.
3. Monitoring system activities: The system security and system performance is also monitored by the system software.
The first two functionalities are the requirement of ventura inc
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int x=5,y=2,z=9;
int min;
// find the smallest value and assign to min
// if x is smallest
if(x < y && x < z)
// assign x to min
min=x;
// if y is smallest
else if(y < z)
// assign y to min
min=y;
// if z is smallest
else
// assign z to min
min=z;
// print the smallest
cout<<"smallest value is:"<<min<<endl;
return 0;
}
Explanation:
Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".
Output:
smallest value is:2