when someone uses your personal information to pose as you this is

Answers

Answer 1

Answer: identity theft

Explanation: identity theft is when somebody poses as you, not to be confused with identity fraud, which is when somebody takes your personal information (such as a credit card) to do things in your name.


Related Questions

What is wrong with the following code? publicstatic char grade(int score) { if (score >= 9) { return 'A'; } else if (score >= 8) { return 'B'; } else if (score >= 6) { return 'C'; } else if (score > 4) { return 'D'; } else if (score < 4) { return 'F'; } }

Answers

Answer:

c) No return statement for all possible logic paths

what is the correct keyboard shortcut to cut a cell value

Answers

Answer:

Cntrl+X

Explanation:

Do it on your computer

The keyboard shortcut to cut a cell value is Ctrl +X.

What is Ctrl X?

Control x can be written as ctrl x

To cut a text means to remove the text from where it was initially and retain the ability to paste the cut text in a desired cell.To do this, we use the cut function which is ctrl x. This cuts the text while ctrl v would paste the text in the desired location.The shortcut ctrl x can be clearly described as the action removes the text or item and stores it in the clipboard, rather than copying it to the clipboard.

For example, you can cut a picture out of the beginning of a Word document and paste it further down within your document. Alternatively, you can cut a block of text out of Word and paste it onto a PowerPoint slide.

So, the keyboard shortcut to cut a cell value is Ctrl +X.

Learn more about ctrl x,

https://brainly.com/question/14447287

#SPJ6

Determine the lines that refer to specialty accommodation.

Budget travelers can stay in lodges or hostels. Couples on a honeymoon may prefer to stay in a resort. A student can probably only afford to stay in a hostel. Hostels are very different from hotels. In a hotel, guests tend to keep to themselves. In a hostel, customers may share accommodations. Guests have an opportunity to interact with others. Because the price of a hostel is much less, privacy may not be an option. Hotels may charge you a fair amount more, but basic amenities such as toiletries are provided. However, hostels are an excellent option for the budget traveller

Answers

The short passage largely describes two different types of speciality accommodations which are shelters which offers a certain range of personal space.

The specialty accomodations described are hostels and hotels where one seems to offer more than the other largely due to the cost involved.

Hotels offer more level of privacy than hostels which are in turn a cheaper alternative than the more expensive hotels.

Hence, all lines of the passage discusses the services offered by the specialty accomodations ; hostel and hotels.

Learn more :https://brainly.com/question/25140153

what are the advantage and disadvantage of super disk,in point???
urgently ​

Answers

Answer:look over this

Explanation:

https://en.wikipedia.org/wiki/SuperDisk

most computers have temporary holding areas called __________.

Answers

Answer:

Random Access Memory (RAM)

RAM (Random access memory)

how many levels of heading tags are allowed in html?

Answers

Answer:

six levels

Explanation:

HTML defines six levels of headings. A heading element implies all the font changes, paragraph breaks before and after, and any white space necessary to render the heading. The heading elements are H1, H2, H3, H4, H5, and H6 with H1 being the highest (or most important) level and H6 the least.

Answer:

six levels

Explanation:

state five benefits of digitizing data​

Answers

Answer:

Ahorro de espacio físico. ...

Protección de los datos. ...

Gestión del tiempo en la consulta de datos. ...

Mejora de la productividad. ...

Responsabilidad social corporativa. ...

Acceso a la información a través de distintos dispositivos tecnológicos.

Explanation:

Answer:

Save money.

Save time.

Enhance collaboration.

Explanation:

Please list 15 safety rules that you think should be practiced in the Computer Technology classroom/lab.

Answers

Answer:BE RESPECTFUL! Always treat the computer lab equipment AND your teacher and classmates the way that you would want your belongings and yourself to be treated.

No food or drinks near the computers. NO EXCEPTIONS.

Enter the computer lab quietly and work quietly. There are other groups and individuals who may be using the computer lab. Please be respectful.

Surf safely! Only visit assigned websites. Some web links can contain viruses or malware. Others may contain inapropriate content. If you are not certain that a website is SAFE, please ask a teacher or other adult.

Clean up your work area before you leave. All cords should be placed on the tables (not hanging off the sides). Headphones should be placed on the CPU/tower or monitor. Chair should be pushed under the tables. All trash, papers, and pencils should be picked up.

Do not change computer settings or backgrounds.

Ask permission before you print.

SAVE all unfinished work to a cloud drive or jump drive. Any work that is saved to the computer will be deleted when the computer is powered off or updated at the end of the day.

If you are the last class of the day, please POWER DOWN all computers and monitors.

Keep your files organized

Don’t let a student’s desktop become the digital version of his hectic book bag. Set aside a few minutes at the beginning or end of working on an assignment to ensure that students are saving unfinished work somewhere that they will be able to find it next time.

Log off

Logging off is like the digital version of cleaning up after yourself in the classroom. Students need to leave the computer ready for the next user. Logging off is also important to make sure that student work and accounts stay private.

Each person may only use one computer at a time

Computers and peripherals are not to be moved or reconfigured without approval of Lab and Classrooms staff.

Behavior and activities that disturb other users or disrupt the operations of the lab are not allowed. This includes, but is not limited to: physical activities such as "rough-housing," loud music, etc.

Children are only allowed in computer labs if they are well-behaved and supervised at all times. Children may not use the computers or occupy workstation areas. At no time are children to be left unattended.

.Explanation:

sorry about only 9 rules

how to prevent truncation of data when importing into sas studio

Answers

Answer:

Set the length BEFORE pulling the dataset. You cannot change the length of character variable after it has already been set. Then remove any format that might be attached to it. In fact why not just remove any formats attached to any of your character variables.

What is a process of adding details to a model to make it less abstract

Answers

Answer:

refinement

Explanation:

https://brainly.com/question/19274876

All of the following can provide source data except a. a scanning device at the grocery store b. a utility bill received in the mail c. a bar code reader d. software to process the source data​

Answers

Answer: A: a scanning device at the grocery store

Explanation:

this device enables connectivity between two lans or a lan and a larger network.

Answers

Answer:

I'm pretty sure it's a cable. A lan cable specifically.

Explanation:

Which formula would add the January and February profits?

Answers

The formula would be =SUM(B2 + B3)
The answer would be =SUM (B2 + B3)

Can someone help me code the statments in the picture?

Answers

Answer:

(In this section I will put the code with no comments and I'll put the code plus comments in the explanation below :)

public class Main

{

   public static void main(String[] args)

   {  

      double cost = ParkingSpot.getPrice(4);

      System.out.println(cost);

   }

}

//End OF Main class

//ParkingSpot class

public class ParkingSpot

{  

   public static double getPrice(int hours)

   {

   double cost = 4.25 * hours;

     

       if (cost < 7.00){

           cost = 7.00;

       }

       if (hours > 3){

           cost = cost * 0.25;

       }

       return cost;

 

   }

}

Explanation:

(Here I will add the comments so you better understand what is written and whats going on :)

public class Main

{

   public static void main(String[] args)

   {

    /* the code should be written in the ParkingSpot

      * class. You may use this main method to call

      * methods to test your code

      */

       

      /*We send an integer representing x amount of hours, also calling the

       method and displaying the result

      */

      double cost = ParkingSpot.getPrice(4);

      System.out.println(cost);

   }

}

//End OF Main class

//ParkingSpot class

public class ParkingSpot

{

   /* Finish the static class getPrice. The parameter hours indicates the time parked.

    */

   public static double getPrice(int hours)

   {

   //Here we set the rates

   /*

       It costs 4.25 per hour to park in the ParkingSpot

       If the total cost come in at less than 7.oo, the price should

           be adjusted UP to 7.00, the minimum Price Allowed

       If the number of hours is more than three hours,  

           a 25% discount should be appllied  

   */

   

   double cost = 4.25 * hours;

   

   //If the cost is less than 7.00 we set the price up to 7.00

       if (cost < 7.00){

           cost = 7.00;

       }

  /*If hours is more than 3 (meaning 4 or it would have said 3 and/or more),  

   a 25% discount will be appllied*/

       if (hours > 3){

           cost = cost * 0.25;

       }

   

   //Return cost of parking for x amount of hours

       return cost;

 

   }

}

what tv show inspired the term spam for junk email?

Answers

Answer:

a 1970s monty python's flying circus TV sketch

RAM is like a computers ___, while a hard drive is like a computers___



A. brain/ nervous
B. nervous system/ brain
C. long-term memory/ short-term memory
D. short-term memory/long-term memory

Answers

Answer:

D. short-term memory/long-term memory

Explanation:

RAM is like a computer's short-term memory, while a hard drive is like a computer's long-term memory. Then the correct option is D.

What are RAM and Hard drive?

Random Access Memory is referred to as RAM. RAM is referred to as Basic Memory or Main Memory. Each RAM memory location may be accessed at the same speed. The computer will slow down if RAM is low. RAM has a brief read/write (R/W) period. Transistors and other electronic components make up RAM, which has no moving mechanical elements.

Hard Disk Drive is referred to as HDD. Another name for HDD is supplementary memory. HDD has mechanical moving components like an arm, a pin, etc. HDD read/write times are faster. It could take longer or shorter to access different parts of the HDD. The impact of HDD on system speed is minimal.

A hard drive is comparable to a computer's long-term memory, whereas RAM is like short-term memory. D is the best choice in that case.

More about the RAM and Hard drive link is given below.

https://brainly.com/question/17944253

#SPJ2

Which type of basic building blocks (constructs) is the following algorithm?

Answers

Answer:

Sequence

Explanation:

what is the most popular game design engine today

Answers

Unreal Engine and Unity

Answer:

i think its an gamemaker

Explanation:

Discuss the multi-meter’s D’ Arsonval movement.​

Answers

Answer:

The D'Arsonval–Weston meter movement uses a moving coil which carries a pointer and rotates on pivots or a taut band ligament. ... It is easily adapted to read heavier currents by using shunts (resistances in parallel with the basic movement) or to read voltage using series resistances known as multipliers.

18. WHICH MENU WOULD MOST LIKELY ALLOW YOU TO ADJUST YOUR LINE SPACING? *

EDIT
FILE
F0RMAT
INSERT

Answers

Explanation:

FORMAT

because it is used for the general appearance of the page

write F id the following is formatting tags, H for heading tags, S for structural tags, and SC if it belongs to a seperator/container tags.

1. <div>
2. <h1>
3. <head>
4. <strong>
5. <p>
6. <html>
7. <hr>
8. <center>
9. <h3>
10. <em>​

Answers

Answer:

Here!

Hope this helps. Please mark brainliest!

hard disks use tracks, sectors, and cylinders to store and organize files. true or false?

Answers

Answer:

True!

Explanation:

Thats why if you drop a Hard Drive it might make a whirring noise when you plug it in again, its trying to move the "Arm" but you broke it.

However this does not apply to SSD (Solid State Drives) that use digital storage like a SD card for example

resolution of bitmap graphics is typically measured in

Answers

Answer:

Pixels

Explanation:

The resolution of bitmap graphics is said to be measured in DPI (dots per inch).

What is the measurement  about?

The unit of measurement is often used to tell more about  the resolution of images and it is known to be called DPI (dots per inch).

Therefore, in the above case, The resolution of bitmap graphics is said to be measured in DPI (dots per inch).

Learn more about bitmap from

https://brainly.com/question/21449716

#SPJ6

In your opinion., which Zelda character is the hottest? Be honest.

Answers

Answer:

link<3

Explanation:

please help me i give brainly

Answers

Answer:

I hope this is right, but it may not be so you might want to recheck your lesson, but i hope this helps you. Have a great day!

Explanation:

what do you think are the importance of making presentation to show your report summary

Answers

to show all the very cool information you learned.

a.1111+1011. b. 10111+11111 c. 1111*1011 d. 1110*1101 perform the binary calculations.​

Answers

Answer:

a.1111+1011=2,122

b.1011+1111=2,221

c.1111*1011=1111.1011

d.1110*1101=1011.1111

Explanation:

I think that the answer because this binary calculations it is a perform the solving the solution to the equation

Help me please please i need it tommorow​

Answers

Since brochures are for marketing purposes,

I'll choose to introduce an internet service provider(ISP).

1. My service is targeted to people in need of secure and fast internet connection. Thus, home owners, corporate companies, institutions or individuals.

2. My brochure is to highlight the service that I'll produce and explain the significance it'll have in people's daily lives.

3. The most important message to be conveyed by the brochure is that the ISP is highly reliable, safe, available, inexpensive and easy to use and access.

4. Here use Canva to format the brochure. (Let me try to create one and I'll add). Personally, my brochure will include an introduction, importance, impact and awareness of my service,and contacts.

5. Graphics I'll use are,

* High resolution photos(like 300 dpi to make sure it's clean during printing).

* Right font for the text.

* The right folds to allow easier folding after printing.

* Highly designed brand logo and name.

* Inviting color tone.

* White space must be used strategically to avoid information cluttering.

The String otherObjects() method relies on the ____________.

a) name.indexOf() method
b) name.equals() method
c) name.compareTo() method
d) name.length()

Answers

B name.equals() method

For any of you coding experts. I'm just beginning to take coding seriously and I want to know which coding language is the easiest for beginners. Any tips?​

Answers

Personally Python was the easiest for me. It truly is personal preference. Just keep dedicated, and motivated to learn! Once you know one language very well, you’ll understand the base of every language good luck bud
I believe HTML & MySQL are the easiest coding languages for beginners. If you are a starter you might prefer to take HTML which is comparatively really easy & understandable as well. HTML allows you to create webpages in no time with simple coding & there's no use of binary digits. Moving onto MySQL..this is also easy but it's advanced when compared to HTML. But, the work is more neat & good if you program it through SQL. After mastering both of them you can go for Python / Java, which are hard but it should be ok if you studied the first 2 languages. There's Xojo as well, lesser known but still good.

Other Questions
during the first few weeks of law school, students were observed to have stronger immune systems if they Q5. Arrange the sources of fresh water according to decreasing percentage distribution. Q6. Which among the sources of freshwater can be easily tapped for human use? Q7. Make a short reflection on the availability of freshwater to human use. Will there be enough water in the future? If you were to rotate ABCD 180 about the origin, what would the coordinate of A' be?-5 -5 -3 -5 -5 -3 -3 3 8.19 divided by 4.2 SHOW UR WORK DONT SAY DO CAUCULATIONS Which piece of evidence best supports the idea that the villagerswant their children to continue the lottery? info about mental health like what is it pls Evaluate for b50 = -1/3b + 20 What led to the rise of dictators in Europe and Asia? HELP HELP HELP HELP!!!!!!! How did the government of Rome develop into anempire? please answer all these .. spanish work pics included how deep should you push on the chest of an adult when you do hands-only cpr? Why was Philip the second a better ruler than alexander the great very detailed hii all of you can anyone give me answer for my question what is different types of ecosystem Helpppp PLS FAST I will mark as brainlist!How can air plants help us cobalt real life problems ? Which of these statements is false?A. Electrons have a negative chargeB. Electrons have a mass of 1 amuC. The nucleus of an atom is positively chargedD. The neutron is found in the nucleus of an atom help. What expression would you use- 1- when greeting a friend. 2- when introducing yourself. 3- to respond to someone's introduction. 4- when you have to leave. 5- to excuse yourself. Please help me in this: What can you schedule with online and mobile banking apps that can help you pay your bills on time and regularly? 1. Deposit notification and ATM indications 2. Automatic payments and alerts 3. Transfers between accounts and already 4. Bot notifications and transfer of funds How many molecules are present in 40g of c02