Explain how an off-site computer can be used to modify a drawing held at another computer location.

Answers

Answer 1

Answer:

Through a remote network shared by both computers


Related Questions

Write a program that asks the user to enter 2 words, then prints "Great!" if the two words are identical, "Close enough" if they are the same length and all but the last letter matches, and "Try again" otherwise.

java, desperate fr

Answers

Answer:

 System.out.println("Enter 2 strings:");

   Scanner scan = new Scanner(System.in);

   String a = scan.nextLine();

   String b = scan.nextLine();

   int c = a.length();

   int d = b.length();

   String e =  a.substring(0, a.length()-1);

   String f = b.substring(0, b.length()-1);

   if (a.equals(b)){

     System.out.println("Great!");

   }

   else if (c== d && e.equals(f)){

     System.out.println("Close enough");

   }

   else{

     System.out.println("Try again");

   }

 }

 

}

Explanation:

Following are the java program to comparing the words:

Program Explanation:

Import package.Defining the main class.Defining the main method.Inside the main method two string "f,s" is declared that uses input method to input value.After input value multiple conditional statement is declared that checks inputs value.In the if block, it checks first string value equal to second value, if it is true it will print a message "Great!".In the else if block it checks string value that has same length, for this it uses "l" variable that checks length value, and the print the message "Close enough".In the else block, it will print the message "Try again".

Program:

import java.util.*;//import package public class Main //defining a class {    public static void main(String[] ars) //defining main method    {        String f,s;//defining String variable        Scanner obc=new Scanner(System.in);//creating Scanner class object        System.out.print("Enter First word: ");//print message        f=obc.next();//input value        System.out.print("Enter Second word: ");//print message        s=obc.next();//input value        if(f.equals(s))//use if to check input string value are equal            System.out.println("Great!");//print message        else if(f.length()==s.length())//using else if block that checks string value has same length         {            int c=0;//defining integer variable             int l=f.length();//defining integer variable l that holds first string length value            for(int i=0;i<l;i++) //using for loop to compare string value            {                if(f.charAt(i)==s.charAt(i))//use if to compare string by using charAt method                    c++;//incrementing c value            }            if(c==l-1 && f.charAt(l-1)!=s.charAt(l-1)) //comparing string            {                System.out.println("Close enough");//print message            }        }        else //defining else        {            System.out.println("Try again");//print message        }    } }

Output:

Please find the attached file.

Learn more:

brainly.com/question/20875119

bvbmb

Mingji is working to transfer photos from her digital camera to her computer. While

reading her camera's user manual, she sees that she doesn't need to use a USB cord to

make the transfer. What type of digital camera does Minji have?

Answers

Answer:

digital camera with bluetooth

Explanation:

Bluetooth is defined as a wireless technology with the help of which data and information such any images, documents, files, etc can be send to other devices equipped with bluetooth technology over a short distance with the use of UHF radio waves.

Bluetooth technology help in exchanging data with out the use of a USB cable.

In the context, Minji is having a digital camera with bluetooth technology as she can transfer her photos from the camera to the computer with out the help of any USB chord.

What is output? Select all that apply. c = 0 while (c < 10): c = c + 5 print (c) 0 1 2 3 4 5 6 7 8 9 10

Answers

Answer:

5 10

Explanation:

that's the answer : 5 10

What’s 9- 4 x y + 44 - -8
and what is 77 - 1.3 + -22

Answers

Answer:

1. -4y + 61

2. 53.7

what is 38 - -93 + 2 x 4.6?
and what’s 9,220 - -2.3 x U

Answers

Answer:

the first equation is 140.2

what's the last eqaution U???

Explanation:

If you created a variable that contains letters AND numbers, what data type would that value be?
A. a float
B. a string
C. a Boolean
D. an integer

Answers

Answer:

its B: string

Explanation:

Answer:

String

Explanation:

The online underground is used___.
Select 3 options.

Answers

Answer:

I think its the 4th one but im not that sure tho sorry!

Explanation:

Answer:

1,3,4

Explanation:

By cybercriminals to sell ransom services,by cybercriminals to purchase malicious software,for networking by criminal organizations

Which of the following statements best describes the
location of the Options bar?
Select one:
At the top of the workspace window, home for
essential commands, adjustments and actions
Directly beneath the Menu bar, it displays available
options for the tool selected in the Tools Panel
At the left of the workspace window, it is a column
of icons for creating and editing
At the right of the workspace, the contains the
groups of controls for working with images

Answers

The statements that best describes the location of the Options bar is

Directly beneath the Menu bar, it displays available options for the tool selected in the Tools Panel.

What is option bar?

Option bar serves as a tool bar, where some functional tools can be gotten when running a program.

Therefore, option bar is located Directly beneath the Menu bar, it displays available options for the tool selected in the Tools Panel

Learn more about options bar at;

https://brainly.com/question/1360051

two devices that may be used for creating,storing,and transmitting documents input devices

Answers

Answer:

electronic notebook or a pc?

Explanation:

sorry if its wrong of doesnt help

What happens when you press the Enter key at the end of a line of bulleted text? A bullet-style change results. A new bullet point is added. The next line is demoted. The next line is promoted.

Answers

Answer:

a new bullet point is added

Explanation:

im not sure what class this would be for but here

Answer:

If you press enter at the end of a bulleted line you would be adding another bullet for another bulleted line.

Explanation:

see watch>

First bulleted line (press enter)See new bulleted line

This is for B.I.M (Business.Information.Management)

Hope that helps

Plz give brainlist

Choose the best type of loop for each situation.

1. You are finding the batting average of 13 baseball players.
a- for
b- while

2. You are asking your users for the names of all the stores where they shopped to find their friend's birthday
present. They will show they are done by entering the word "done."
a- for
b- while

Answers

Answer:

1. Option A: for loop is correct

2. Option B: while loop is correct

Explanation:

Two loops are used commonly. For and while

For is used when the number of iterations are already known and while is used when number of iterations is not known and the loop has to be terminated based on any condition.

1. You are finding the batting average of 13 baseball players.

For loop will be used as the number of iterations is already known. The score of 13 players has to be used to calculate the average so there will be 13 iterations. Hence, for loop will be used.

2. You are asking your users for the names of all the stores where they shopped to find their friend's birthday  present. They will show they are done by entering the word "done."

While loop will be used as the termination of loop depends on the input given by the user so the number of iterations are not already known.

Hence,

1. Option A: for loop is correct

2. Option B: while loop is correct

Answer: 1.for 2. while

Explanation: got it right on edgen

Which one of these is NOT a type of printer

-Laser

-Electric

-Photo

-Inkjet
Need answer soon, thanks!

Answers

Answer:

electric

Explanation:

eletric is not a print ouo

The electric should not be the type of printer.

The information regarding the printer is as follows:

A printer is a machine that should be connected to the computer for making the copies on paper that should be held by the computer.It could be laser, photo, and the inkjet, etc.Here the digital data should be transformed into the printed media.

Therefore we can conclude that the electric should not be the type of printer.

Learn more about the printer here: brainly.com/question/4455685

Using the drop-down menu, identify characteristics of IDEs.
IDE refers to
for writing computer programs.
IDEs are a coordinated
IDEs provide developers with

Answers

Answer:

An integrated development environment

Computer software program-writing package

Interactive programming tools

Explanation:just took it on edge

Answer:

An integrated development environment

Computer software program-writing package

Interactive programming tools

Explanation:

What are the letter that go under each note?

Answers

Answer:

A, B, C, D, E, F, G pls mark me brainliest see explanation below

Explanation:

those are the letters if you search up letters for music you can find them way easier than me explaining and you will also learn faster. please mark me brainliest

Answer:

a b c d e f g

Explanation:

I NEED A BIG BRAIN BOYO TO HELP ME
My friend Juan is a Ike main in smash and I’m a byleth main how and ever since 5th grade I’ve been trying to beat him at smash but I never do... how do I beat him

Answers

Yoooo whattt?? I don’t get this but idek

Check all of the file types that a Slides presentation can be downloaded as.

.JPEG
.doc
.xls
.PDF
.pptx
.bmp

Answers

Answer:

.JPEG

.PDF

.pptx

General Concepts:

Google

Slides has an option to download a wide multitude of formats

Explanation:

If we go into File, and then under Download, we should be able to see which file types that a Slides presentation can be downloaded as.

Attached below is an image of the options.

The answers are:
.JPEG
.PDF
.pptx

Hope this helped :D

__________ (10 letters) is space between lines of program code that makes the code easier to read and that the compiler ignores.

Answers

Answer:

Whitespace. I hope this helps

Select all that apply.
What features must be completed from the Master Page screen?
Inserting headers or footers
Inserting a watermark
changing the template
Inserting a table

Answers

Answer:

Inserting headers or footers Inserting a watermark

Explanation:

A Master Page is a page which can be used with the majority of the documents of your paper as a reference. Master pages may have visuals elements, such as headlines, footers, column headings, etc that occur on all publishing pages.

Why can a bank afford to pay an interest rate on a savings account?
A.
Because the bank is insured by the FDIC
B.
Because the Fed prints more currency when needed
C.
Because the bank puts the money into equity investments
D.
Because the bank lends that money out at a higher interest rate

Answers

Answer:

D

Explanation:

Because the bank lends that money out at a higher interest rate

KEEP IN TOUCH IF YOU NEED ANYTHING.

Which statement will remove 5:'softball' from the dictionary?

sports = {2:'football', 3:'soccer', 4:'volleyball', 5:'softball'}
sports.remove()

sports.pop()

sports.pop(5)

sports.remove('softball')

Answers

Answer:

sports.pop(5)

Explanation:

edg 2020

Answer:

sports.pop(5)

Explanation:

The length of time that a slide appears before automatically advancing to the next slide can be set in the

A. Timing group under the Transitions tab.
B. Transition to This Slide group under the Transitions tab.
C. Timing group in the Master Slide view.
D. Transition to This Slide group in the Master Slide view.

Answers

Answer:

A.

Explanation:

The transition time between slides can be specified in a presentation. The duration of transition can be set by going to the 'Transitions Tab' then in 'Timing Group/Section'. In the timing group, duration can be increased or decreased, as per the desire. The time is set in seconds in duration section.

So, the length of time between two slides can be changed by going to the 'Timing group' under the 'Transitions Tab'.

Therefore, option A is correct.

Answer:

A

Explanation:

What is net pay?
What is net pay?

Answers

Answer:

Net pay is an employee’s earnings after all deductions are taken out. Obligatory deductions such as the FICA mandated Social Security tax and Medicare are withheld automatically from an employee’s earnings. Other deductions come in the form of benefits, which may be optional. Health, dental and vision insurance, life insurance, or a retirement fund may be offered through an employer. These costs will come in the form of a deduction from the employee’s gross pay, or salary.

Net pay refers to the amount an employee takes home, not the amount it cost to employ them. Retirement plan contributions, employee benefits, and employer FICA taxes are deducted before an employee receives their net pay.
I hope this helps!! :))

Which of the following describes why graphical interfaces quickly became popular after their introduction to the mass market?

A.superior usability
B.form over function
C.strong ISO standards
D.contextual design analysis of a market demographic

Answers

A.superior usability

Mississippi law codes state that bullying and cyberbullying are against the law. A court can decide to incur ____________________ time or a_____________________ or both depending on the degree and the frequency of the infraction, and the age of the perpetrator.

Answers

Answer:

1) Imprisonment

2) Fine

Explanation:

By the 2013 Mississippi Code, on Cybercrimes and Identity Theft, it is against the law to make use of electronic mail or other forma of electronic communication to engage in cyber bullying, which involves the use of threatening language of inflicting arm or with an aim to extort money from another person

The punishment for cyber bullying, includes imprisonment time or a fine or both.

Therefore, for the question, we have; Mississippi law codes state that bullying and cyberbullying are against the law. A court can decide to incur imprisonment time or a fine or both depending on the degree and the frequency of the infraction, and the age of the perpetrator.

what animal is perry the platypus ​

Answers

Answer: Agent P or simply Perry

Explanation:

Answer:

A Platypus. Its in the name XDDD

Explanation:

In microsoft word, you can change the look of paragraphs by: select all that apply
a. changing page margins
b. organizing lists of information into bullets
c. changing text spacing
d. changing text alignment​

Answers

Answer:

Changing Text Alignment, D

Explanation:

Whats it worth in pets!

Answers

Answer:

yes it is a pet

Explanation:

Answer:

it is worth your love

Explanation:

bc pets are adorable

who loves wwe and which game of it

Answers

Answer:

Literality me

Explanation:

Answer:

i do :)

Explanation:

i like to watch the wwe monday night raws with my dad

Which tab on the Ribbon contains the command to show the slide show from the current slide?

A.Home

B.Slide Show

C.File

D.View

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is B: Slide Show.

You can use the Slide Show tab on the ribbon that contains commands to show the slide show from the current slide. As you click on the Slide Show tab on the ribbon, you see a group of commands name "Start Slide Show", in these group of command, there is an option to start slide show From Current Slide. when you will click this option the slide show will start from your current slide.

Other options are not correct because:

The home tab on the ribbon contains commands related to slide, font, paragraph, editing, etc. File tab contains commands related to opening new or existing presentation documents and saving them, etc. While the View tab on the ribbon has a group of commands related to presentation view, master, zoom, etc. These tabs are used to show the slide show from the current slide.  

do you ever just . . . . . . . . . . . . .

Answers

Answer:

sure? *confusion*

Explanation:

Answer:

Ok than taste in art is immaculent amazing wonderful

Other Questions
What best explains how they should complete the table?with Inside the nucleus, because the particle is a protonwith Inside the nucleus, because the particle is a neutronwith Outside the nucleus, because the particle is a protonwith Outside the nucleus, because the particle is an electron Diego measured the length of a pen to be 22 cm. The actual length of the pen is 23 cm. Which of these is closest to the percent increase or decrease for Diego's measurement? The triangles in the picture are congruent by which method Which number describes the National Census of Texas in 1850? A)135,000 B)158,356 C)212.592 D)604.215 a student is painting a room at a constant rate she is able to paint 2/5 of the room in 1/2 of an hour how long does it take to paint the whole room Was the man actually selling something? HELP ME PLEASE!Find the equation of the line. Use exact numbers. Which of the following types of models is most likely to be used to predict earthquakes?a.idea modelb.physical modelc.computer modeld.none of the abovePlease select the best answer from the choices providedABCD 1. Explain how the methods and styles used by Newton to share his discoveries aidedpeople's understanding of the science. How is this method similar to those used by theProtestant reformers of the 16th Century? why are colonial organisms not truly multicellular? To celebrate the first day of spring, Lin is putting stickers on some of the 100 lockers along one side of her middle school's hallway. She puts a skateboard sticker on every 4th locker (starting with locker 4), and a kite sticker on every 5th locker (starting with locker 5). Name three lockers that will get both stickers. After Lin makes her way down the hall, will the 30th locker have no stickers, 1 sticker, or 2 stickers? Explain how you know. HELP ME The Mayans were considered the first western ____________________. aAstronomers bWarriors cMathematicians dScientists If you have read Chapter 3 of animal farm can you plz help me with these questions.1. How is the work divided on the farm? Who does the most work? The least? Who are the leaders? 2. How does mollie react to the new way of governing on the farm? 3. How does Benjamin react to the new way of governing on the farm? 4.how does the cat react to the new way of governing on the farm? One particle has mass m and a second particle has mass 2m. The second particle is moving with speed v and the first with speed 2v. How do their kinetic energies compare? A Love for Fellowmen and FamilyA doctor entered the hospital in a hurry after being called for immediate operation. He answered the phone call ASAP and go directly to the operating room.He met the boys father waiting for him. On seeing him, the father says: Why did you take all this time to come? Dont you know that my sons life is in danger? Dont you have any sense of responsibility?The doctor was just calm and said: I am sorry, I wasnt in the hospital and I came as fast as I can after receiving the call And now, I hope youd calm down so that I can do my work. Calm down? What if your son was in this room right now, can you make it calm down? If your son dies now what will you do? said the father angrily.The doctor was just calm and smile at him saying: Doctors cannot prolong lives. Go and pray for your son and by Gods grace we will do our best.Then the father murmured Giving advice when were not concerned is so easy.Some hours after, the doctor went out from the surgery room and happily announce that Your son is safe!. Without waiting for the fathers response, he carried on his way while saying If you have questions, ask the nurses.And without waiting for the fathers response, he carried on his way running.You can ask the nurse if you have questionWhy is he so arrogant? He couldnt wait some minute so that I can ask about my sons state, commented the father when seeing the nurse minutes after the doctor left.The nurse said, with tears: Yesterday, his son died in a road accident, when we called him he for your sons condition he was at the funeral.Now that your sons life is saved, he left running to finish his sons funeral.Questions:1. In the story A Love for Fellowmen and Family, how do the two fathers show their love to each of their children?2. What evidence of care do the two fathers gave to their children?3. If this situation happens to you, how would you react?4. How would you respond to your parents if you were the child in this story? I WILL MARK YOU BRAINLIEST! IF YOU ARE GOOD WITH LINEAR EQUATIONS HELP ME PLEASE OR I WILL DIE!!!!!3 QUESTIONS PLEASE HELP!!The blue dot is at what value on the number line?Pictrure Below: help press the pic can you help (I'll give brainliest and extra points if u helpp me :) )Solve two and one third times four fifths.A) four sixthsB) twenty eight fifteenthsC) twenty seven fifteenthsD) twenty eight sixths(Here is an image if Needed) : How many water molecules are released in the synthesis of 10 maltose and 15 sucrose?