<h2>Dead lock is possible in Bank Transactions</h2>
Explanation:
Let us understand the term "Dead lock"
A deadlock is a situation where whole set of process is locked, since each of the process is waiting or holding the resource of another process. Each process will be interdependent and waiting for the same resource.
Deadlock is possible during bank transaction in the following situation:
A & B are two accounts where A tries to transfer funds to B and B tries to transfer fund to A.
When both tries to transfer funds at the same time, deadlock occurs.
A deadlock can be avoided by any one of the four methods.
They are: Mutual exclusion, No preemption, circular wait, hold and wait.
Answer:
#include <iostream>
using namespace std;
int main()
{
int exam1 = 70;
int exam2 = 85;
int examAverage;
examAverage = (exam1+exam2)/2;
cout <<"The Average of Exam1 and Exam2 is: "<<examAverage<<endl;
return 0;
}
Explanation:
Using the C++, we declare the three variables all of type
exam1
exam2 and
examAverage
We assign initial values of 70 and 85 to exam1 and exam2 respectively
Answer:
Rules that apply to all situations and accasions in the music room
Explanation:
I hope this helps
A. yield to the car on your right
AI-driven attacks caused sandbox technology to automate and introduce artificial intelligence learning. AI and machine learning can be used to fight against malware attacks.
<h3>
Artificial intelligence, machine learning, and malware</h3>
Artificial intelligence (AI) refers to the ability of a PC to perform tasks done by humans due to the requirement of discernment.
Machine learning is a subdivision of (AI) based on the use of data and algorithms to mimic human learning.
Malware is malicious software generated by cybercriminals, which are capable of stealing unauthorized information.
Learn more about malware here:
brainly.com/question/399317