Answer: Cable Locks
Explanation:
- The cable locks is one of the type of secure device that helps in physically secure the various types of laptops and computer system.
- The cable lock helps the devices and the confidential information to prevent from theft and it is also known as the versatile security system.
- The cable lock is basically warp up in the form of metal cable and we usually insert the this cable lock into the laptop device slot in the system.
According to the given question, The cable lock is typically used in the laptop devices that protect and physically secure from the hacking purpose and it is used in the various types of deices such as printers, electronic devices and the laptops.
This is true. A person in debt could have everything from their home to vehicles to even boats and other possessions taken in order to make up for the money owed.
Answer:
Data bar
Explanation:
The answer to this question is data bar. Through the use of a day bar we are able to see trends in our data. They are very useful when it comes to visualization of values that are In a range of cells. Now if the bar is longer then the value we are visualizing is definitely higher. And if it is shorterr the value is lower. Several applications like excel has programmes that makes use of data bars especially for statistical purposes.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
string in;//string in for taking input...
cout<<"Do you want to continue ?"<<endl;
getline(cin,in);//taking input from the user...
if(in=="y"||in=="Y"||in=="yes"||in=="OK"||in=="Why not?")//conditions..
cout<<"OK"<<endl;
else if(in=="No")
cout<<"terminating"<<endl;
else
cout<<"Bad input"<<endl;
return 0;
}
Explanation:
I have taken a string in.
Then taking input from user.
Checking the conditions using if else if ladder.