Answer:
Create a text file. And add this code in it:
@echo off
You are welcome to the batch programming!
And now save it with .bat file type. Give it any name you want.
And to run the bat file, double click the bat file. It will be running.
You can run it from command prompt as well. Type as below:
C:\folder\batch_name.bat.
Now, we can add as many commands in the file as we want, and we can do the batch programming.
Explanation:
Please check the answer section.
Answer:
#include <iostream>
using namespace std;
void MinMax(int x,int y,int z,int *max,int *min)
{
int big,small;
if((x>y)&&(x>z)) //to check for maximum value
big=x;
else if((y>x)&&(y>z))
big=y;
else
big=z;
if((x<y)&&(x<z)) //to check for minimum value
small=x;
else if((y<x)&&(y<z))
small=y;
else
small=z;
*max=big; //pointer pointing to maximum value
*min=small; //pointer pointing to minimum value
}
int main()
{
int big,small;
MinMax(43,29,100,&big,&small);
cout<<"Max is "<<big<<"\nMin is "<<small; //big and small variables will get value from method called
return 0;
}
OUTPUT :
Max is 100
Min is 29
Explanation:
When the method is called from first three integers maximum will be found using the conditions imposed and maximum value will be found and similarly will happen with the minimum value.
Answer:
A Phishing Attack
Explanation:
The term "phishing" comes from the combination of the English term "fishing", which means to fish, with the term "phreak", often used to name the first telephony hackers.
It is a type of scam that uses technological mechanisms, usually based on messages, to persuade and deceive people, with a specific objective, which varies from attack to attack.
For example, sending you an email message with a link like a popular social media platform which is meant to trick you into submitting your login details thereby hacking into your account from the hacker's remote location.
Answer:
Go to the File tab and click Options.
Click on the Mail menu at the left.
Click on the Signatures button to open the Signatures and Stationary window.
In the Email Signature tab, click New.
Type in a name for the New Signature such as Shared Mailbox Signature and click OK.
Explanation: