Answer:
please give me brainlist and follow
Explanation:
There are various phishing techniques used by attackers:
Installing a Trojan via a malicious email attachment or ad which will allow the intruder to exploit loopholes and obtain sensitive information. Spoofing the sender address in an email to appear as a reputable source and request sensitive information
Plunger is a disc or cylinder that moves in the body of a syringe, a pump or the cylinder of a steam engine, an explosion engine.
<h3>The substance in the cylinder</h3>
The substance that you think is in the cylinder that you cannot see and that prevents the plunger from going all the way in, even when you push the plunger hard, it may be substance that is too viscous or dense, but it is not possible to determine substance.
With this information, we can conclude that the plunger is a disc or cylinder that moves in the body of a syringe, but the substance to be determined can be viscous or dense.
Learn more about plunger in brainly.com/question/4190018
You just ask a question and lots of people are nice enough to help out!
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// variable to read row and column of 2-d array
int r,c;
cout<<"enter the number of row:";
// read number of row
cin>>r;
cout<<"enter the number of column:";
// read number of column
cin>>c;
// create an array of size rxc
int arr[r][c];
cout<<"enter the elements of the array:"<<endl;
// read the elements of 2-d array
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
cin>>arr[i][j];
}
}
cout<<"numbers which are greater than 10 in 2-d array"<<endl;
for(int i=0;i<r;i++)
{
for(int j=0;j<c;j++)
{
// if element is greater than 10, print it
if(arr[i][j]>10)
cout<<arr[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
Explanation:
Read the size of 2-d array i.e row and column.Create a 2-d array of size rxc of integer type.Read the elements of the array. Then traverse the array and if an element if greater than 10 then print that element.
Output:
enter the number of row:3
enter the number of column:3
enter the elements of the array:
23 45 53 78 1 9 6 8 77
numbers which are greater than 10 in 2-d array
23 45 53
78
77
Answer:
C. is Full
Explanation:
In an array list the time complexity of the remove function is identical to the time complexity of the ''isFull'' function.