Answer:
✔️saves time spent manually creating multiple tasks
Explanation:
I did it on edge
Answer: ICT help banks improve the efficiency and effectiveness of services offered to customers, and enhances business processes, managerial decision making, and workgroup collaborations, which strengthens their competitive positions in rapidly changing and emerging economies.
Explanation: please give branliest I only need one more to make ace
Answer: True
Explanation:
Virtual memory is the secondary storage memory and this type of memory are addressed as main part of the memory.
When the virtual memory copying in the physical memory then, at that time the operating system divide the memory into the file page with the address and definite size number. Then, the each page are store in a disk.
When this page are required then, the operating system copy from disk to main memory and then, the virtual address are converted into the real address.
Answer:
void delete_record(student_record *arr, int &size, int age, string name, double gpa) {
int index = -1;
if (arr != NULL && size > 0) {
for (int i = 0; i < size; ++i) {
if (arr[i].age == age && arr[i].name == name && arr[i].gpa == gpa) {
index = i;
break;
}
}
}
if (index != -1) {
for (int i = index; i < size - 1; ++i) {
arr[i] = arr[i + 1];
}
size--;
}
}