Answer:
#include <stdio.h>
typedef struct TimeHrMin_struct //struct
{
int hours;
int minutes;
} TimeHrMin;
struct TimeHrMin_struct SetTime(int hoursVal,int minutesVal) //SetTime function
{
struct TimeHrMin_struct str;
str.hours=hoursVal; //assigning the values
str.minutes=minutesVal;
return str; //returning the struct
}
int main(void)
{
TimeHrMin studentLateness;
int hours;
int minutes;
scanf("%d %d", &hours, &minutes);
studentLateness = SetTime(hours, minutes); //calling the function
printf("The student is %d hours and %d minutes late.\n", studentLateness.hours, studentLateness.minutes);
return 0;
}
Explanation:
The answer is B; Draw a text box and enter text
By default, we add text to a PowerPoint slide by typing it directly into a placeholder. However, you can use a text box to enter text into a blank slide or outside the placeholders. To add text on a blank slide click on the insert menu and select the Text box option. Click and hold down your mouse button while you drag the mouse. You will then clink inside the text box and starting typing.
Answer:
Click at the pic above and the ans will appear.
Hope it helps :)
Answer:
The answer is "Least recently used policy".
Explanation:
It is the page replacement policy, which uses a less frequent substitute. It adds a registry from each frame that includes the last time the program, that views within the frame, and use a "logical clock" for each of the data references, that made to change by a tick.
This replacement strategy is often used to substitute its least currently utilized cache line or page, and it is realistic and best implemented among the substitution policies.