Discuss the advantages and disadvantages of supporting links to files that cross mount points (that is, the file link refers to a file that is stored in a different volume).

Answers

Answer 1

Advantage - greater transparency; user doesn't need to be aware of mount points / link creation

Disadvantage - file system containing the link may be mounted while the file system containing the target file may not be; resulting in a dead link


Related Questions

The extends keyword applies to: [Choose all that apply - there may be more than one correct answer] Group of answer choices a member variable a method of the class an expression a class inheriting from another class the overridden toString method

Answers

The extends keyword extends a class (indicates that a class is inherited from another class). In Java, it is possible to inherit attributes and methods from one class to another.

Some applications require that records be retrievable from anywhere in the file in an arbitrary sequence. These files are known as ___________.

Answers

Answer:

random access files

Explanation:

Some applications require that records be retrievable from anywhere in the file in an arbitrary sequence. These files are known as ___________.

✓ RANDOM ACCESS FILES

What does a file extension tell your computer?.

Answers

Extensions tell your computer which application created or can open the file and which icon to use for the file. For example, the docx extension tells your computer that Microsoft Word can open the file and to display a Word icon when you view it in File Explorer.

Write A Code In Python

Code should be able to
- Save Usernames and Passwords that are entered
- Be able to login to an account when username or password is entered
- Allow Only 3 Log In Attempts

Answers

Answer:

Here is my code below: username = 'Polly1220' password = 'Bob' userInput = input("What is your username?\ n") if userInput == username: a=input("Password?\ n") if a == password: print("Welcome!") else: print("That is the wrong password.") else: print("That is the wrong username.")

Answer:

print('Enter correct username and password combo to continue')

count=0

while count < 3:

   username = input('Enter username: ')

   password = input('Enter password: ')

   if password=='Hytu76E' and username=='bank_admin':

       print('Access granted')

       break

   else:

       print('Access denied. Try again.')

       count += 1

A command line above the worksheet where text, numbers, and formulas are entered into a worksheet. Question 18 options: Formula Formula Bar Worksheet Workbook

Answers

Formula bar is a command line above the worksheet where text, numbers, and formulas are entered into a worksheet.

What is the formula bar?

Formula bar is the white strip like space in above the worksheet, where what we write in the sheet, the text and formula are displayed. It is a place where you can edit the text and formula.

Thus, Formula bar is a command line above the worksheet where text, numbers, and formulas are entered into a worksheet.

Learn more about formula bar

https://brainly.com/question/14694227

#SPJ1

Susan performs a full backup of her server every Sunday at 1:00 a.m. and differential backups on Mondays through Fridays at 1:00 a.m. Her server fails at 9:00 a.m. on Wednesday. How many backups does Susan need to restore

Answers

The number of files Susan needs to restore is three because she has full backup and the three files have crashed.

What is differential backup?

The most recent, previous complete data backup is used to create a differential backup. Only the data that has changed since the last full backup is captured in a differential backup. The basis of the differential is the full backup that a differential backup is based on.

Susan performs a full backup of her server every Sunday at 1:00 a.m. and differential backups on Mondays through Fridays at 1:00 a.m.

The server crashed on Wednesday at 9:00 am.

Since the Susan has full backup of her data which she did on Sunday at 1:00 am

Differential backups on Monday through Fridays at 1:00 a.m

So the number of files Susan needs to back up is three because the backup file which is taken on Wednesday at 1:00 am has also failed.

Thus, the number of files Susan needs to restore is three because she has full backup and the three files have crashed.

Learn more about the differential backup here:

https://brainly.com/question/14017082

#SPJ1

A site has been issued the IP address of 192. 168. 10. 0/24. The largest network contained 25 hosts and was given the lowest numbered network number possible. What network number and mask will be assigned

Answers

Answer:

Explanation: The first thing to calculate is what IP addresses are used by the largest LAN. Because the LAN has 100 hosts, 7 bits must be left for host bits.

Explanation:

Explanation: The first thing to calculate is what IP addresses are used by the largest LAN. Because the LAN has 100 hosts, 7 bits must be left for host bits.

A form of wireless transmission called _____ is very popular for short-distance wireless communication that does not require high power

Answers

Answer: Wi-Fi

Wi-Fi doesn’t use that much power and is very popular form of wireless communication. But this could also be Bluetooth because it is also a tarnsmission that occurs wirelessly.

should every presentation have a beggening middle and end​

Answers

Answer:

yes every presentation should have a beginning middle & end.

Explanation:

you should include these 5 parts

- introduction

- objective

- overview

- presentation

- summary/conclusion

Next
Submit Test
Web Design and Development Tools: Mastery Test
Drag each tile to the correct box
Match the DHTML component to its description

scripting language
markup language
document object model
text stylesheet language

HTML
JavaScript
CSS
DOM

Answers

Answer:

script=java

makeup=Html

css=text

dom=document

Explanation:

Answer:  

greatness0003- is correct

I hope this helps

BTW Plato

(proof)

A programmable machine can:

Answers

Answer:

Either be an embedded system, or a general purpose system.

The ownership of digtal assets in the emerging metaverse is being driven by what technology that enable the ownership of digital assets, such as gucci digital sneaker?.

Answers

The ownership of digital assets in the emerging metaverse is being driven by Blockchain.

What are digital assets?

Digital asset is known to be any item that can be saved digitally and its  specifically recognized  that firm that can use or realize its value. Examples are documents, audio, etc.

Conclusively, The ownership of digital assets in the emerging metaverse is being driven by Blockchain as it helps to save plenty of its data.

Learn more about digital assets from

https://brainly.com/question/5679893

#SPJ1

If you aren’t familiar with the idea of a leap year, read “Why Is There a Leap Day?” before continuing with the lab.

Your friend is writing a program that will allow the user to input a year and then print “LEAP!” if that year is a leap year or print “not a leap year” if it is not. However, the program isn’t working properly, and your friend asked you for help in debugging.

Before you take a look at the program, you should know these rules for leap years:

A year is a leap year if it can be divided by 400 without a remainder.
A year is a leap year if it can be divided by 4 without a remainder, unless it can also be divided by 100 without a remainder; if that is the case, it is not a leap year.
All other years are not leap years.
Here is your friend’s code:

year=int(input()
if year%400=0:
print("LEAP!")
else:
print(not a leap year")
elseif year%4==0 and year%100!=0
print(“not a leap year")
Note: You may not have seen the % symbol used this way before. It calculates the remainder of the number to the left of it when it is divided by the number to the right of it. So, 10%3 is 1, because when you divide 10 by 3, the remainder is 1.

Answers

The correct debugged code is attached below

What is a leap year

A leap year is a year with 366 days and this year occurs once every 4 years. The debugged code line of code of the program written, is as attached below. because the line of code in the question lacks some functions and symbols

Hence we can conclude that the correct debugged code is attached below.

Learn more about Python coding : https://brainly.com/question/16397886

#SPJ1

A section with information that prints at the bottom of every page of a report is called a page [ ] section.

Answers

Answer:

Foot pager section

Explanation:

Please give brainliest please and good luck :)

a variable can be __ inside a program

Answers

Answer:

A function is a group of statements that exist within a program for the purpose of performing a specific task.

Explanation:

Which programming paradigm focuses on abstraction to the level of math and the elimination of side-effects and state based programming

Answers

Answer:

The functional programming paradigms has its roots in mathematics and it is language independent.

Explanation:

The key principle of this paradigms is the execution of series of mathematical functions. The central model for the abstraction is the function which are meant for some specific computation and not the data structure.

From the ITAdmin workstation, use the tracert command to identify the devices in the path between ITAdmin and a remote computer on the internet that has an IP address of 206.8.28.127. How many routers are in the path between ITAdmin and the remote computer

Answers

Answer:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

Explanation:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

An IP address is an application programming interface connected to a computer network. There are six routers in the path between IT admin and remote computer.

What is a router?

A router is a device that brings the internet service to your linked devices. It is used to forward the data packets on the network channel and also, maintain the traffic of the data on the server.

The default gateway is the IP of the local router that is not routed somewhere else but can be used to manage the router. The default gateway serves as the forwarding host.

Therefore, six routers are placed between the IT admin and the remote computer.

Learn more about IP address here:

https://brainly.com/question/20372171

#SPJ1

This is an example of what type of formula?

=(D1-D17)

Question 3 options:

ADDITION


SUBTRACTION


RANGE


AVERAGE

Answers

The type of formula that is represented by the given example =(D1+D17) in excel is known as; The SUM Formula function

What are functions in excel?

There are different types of formula functions in excel such as;

SUM

COUNT

COUNTA

IF

TRIM

MAX & MIN

Now, in this question, the formula we are given is =(D1+D17) and the example it represents is the SUM formula function.

Create a class called payroll. instance variables are the name of the employee, the hours person worked and the hourly rate. make sure to include try-catch for the constructor, getter, setter methods. when creating an object, the name cannot be empty string, hours worked cannot be negative and cannot be greater than 56 hours. the hourly rate cannot be negative. also include a method called raise that increase the employee hourly rate. the raise cannot be negative. must use try catch

Answers

So creating code a class called payroll. and complementing with the information given in the edict, found that it will be:

Writing code in JAVA:

import java.util.Scanner;

public class payroll

{

   String name;

   double salary;

   double da;

   double hra;

   double pf;

   double grossSal;

   double netSal;    

   public Pay(String n, double s) {

       name = n;

       salary = s;

       da = 0;

       hra = 0;

       pf = 0;

       grossSal = 0;

       netSal = 0;

   }    

   void calculate() {

       da = salary * 15.0 / 100;

       hra = salary * 10.0 / 100;

       pf = salary * 12.0 / 100;

       grossSal = salary + da + hra;

       netSal = grossSal - pf;

   }    

   void display() {

       System.out.println("Employee Name: " + name);

       System.out.println("Salary: " + salary);

       System.out.println("Dearness Allowance: " + da);

       System.out.println("House Rent Allowance: " + hra);

       System.out.println("Provident Fund: " + pf);

       System.out.println("Gross Salary: " + grossSal);

       System.out.println("Net Salary: " + netSal);

   }    

   public static void main(String args[]) {

       Scanner in = new Scanner(System.in);

       System.out.print("Enter Employee Name: ");

       String empName = in.nextLine();

       System.out.print("Enter Salary: ");

       double empSal = in.nextDouble();        

      payroll = new Pay(empName, empSal);

       obj.calculate();

       obj.display();

   }

}

See more about JAVA code at brainly.com/question/12975450

#SPJ1

Question 1 of 1
What are some of the things your employer should do to prevent worker falls and
accidents using portable ladders at the workplace?

Answers

Answer:

Ladders are not moved, shifted, or extended while a worker is on them.

Explanation:

It's the most logical answer out of the others.

D). Name the piece of hardware found in a tablet computer that is both an Input and output device?​

Answers

It’s an SD card that can be found in both

Design, implement and test a Java class that processes a series of triangles. The triangle specification will be identical to that in Programming Assignment #2 (part A). As in that assignment, you will read in the three sides of the triangle, check the input for errors (and handle them if found), classify the triangle and compute its area. For this assignment, triangle data will be read from an input file and the program’s output will be written to another file. The output file will also include a summary of the data processed. You must use at least one dialog box in this program.


The data for each triangle will be on a separate line of the input file, with the input data echoed and the results referred to by the line number (see example).

Some things to note:

• All input data lines must be processed.

• A new line with triangle data always starts with the ‘#’ marker.

• If an error is encountered on a given line, it must be handled. Afterwards, the program will continue on the next line without processing the triangle. An example of such an error is a non-integer appearing in the first three values of a given line.

• Extraneous data must be discarded. This is data that appears after the first three triangle sides are found, but before a new triangle marker is found.

• If the end of file (EOF) is found, a message should be printed out

• There shall be no unhandled file related exceptions and an end-of-file exception must be avoided.


On initialization, the program will prompt the user for both an input and an output file. If a non-existent input file is specified, the appropriate exception must be handled, resulting in an error message. For the exception case, re-prompt the user for the correct input file [Extra credit if you implement a JFileChooser type dialog box]. Once the I/O file is specified, the program will read in and process all the entries in the file. The output of the program will be written to the specified output file and echoed to the console.


The program will evaluate each line and determine the validity of the triangle. If valid, the program will output summary line for the triangle calculation (see Programming Assignment #2A). If invalid, the program will output a description of the error found in the entry. Your program must be robust and handle situations where all the triangle inputs are not proper and/or present.


Once all the entries are processed, a summary will be generated providing the following information:

• Pathname of the input file

• Number of lines processed

• Number of valid triangles

• Number of invalid triangles



You should be able to reuse much of your Programming Assignment #2A code for this project. However, strongly recommend that you rewrite your code and put this functionality in separate method(s). Likewise, any residual problems from #2A should be fixed in this version. The main features you will be adding are:


• Multiple methods

• Exception handing

• File I/O

• Dialog box

Answers

public class GeometricObject {

   private String color = " white ";

   private boolean filled;

   private java.util.Date dateCreated;

   public GeometricObject() {

       dateCreated = new java.util.Date();

   }

   public GeometricObject(String color, boolean filled) {

       dateCreated = new java.util.Date();

       this.color = color;

       this.filled = filled;  

   }

   public String getColor() {

       return color;

   }

   public void setColor(String color) {

       this.color = color;

   }

   public boolean isFilled() {

       return filled;

   }

   public void setFilled(boolean filled) {

       this.filled = filled;

   }

   public java.util.Date getDateCreated() {

       return dateCreated;

   }

   public String toString() {

       return "Created on " + dateCreated + "\n color: " + color + " and filled ";                

   }  

}

Difference between misinformation and disinformation.

Answers

Both are false information but misinformation is without the intent to harm or deceive

If an array is sorted from lowest to highest, then the smallest item will always display in the first element of the list / array and the largest item will display in the last element of the array.

A. True
B. False

Answers

It will be ascending, so it is true

When you are trying to anticipate user errors, which do you think is better to use—an if else statement or a try except statement? Why? Can you think of a rule that you could follow to determine which you should use?

Answers

Answer:

try except

Explanation:

You shouldn't use an if else statement for anticipating user errors since try-except was made for executing statements until encountering an error, while if-else is checking for a condition and if its not met, it will do an else.

________ are not used for querying and analyzing data stored in data warehouses. Group of answer choices Word processing programs OLAP tools MOLAP tools Dashboard tools

Answers

Answer:

Word processing programs

Explanation:

Q:

________ are not used for querying and analyzing data stored in data warehouses.

A:

Word processing programs

API defines ____ for applications written in a procedural programming language and _____ for applications in object-oriented languages.

Answers

API defines procedure calls for applications written in a procedural programming language and classes for applications in object-oriented languages.

What is API?

API is known to be the short form of  Application Programming Interface. This is known to be a software that acts as an intermediary.

Note that it helps two applications to communicate to one other and as such, API state out procedure calls for applications written in a procedural programming language and classes for applications in object-oriented languages.

Learn more about API from

https://brainly.com/question/12987441

#SPJ1

Who is responsible for managing a website? Check all of the boxes that apply.
website supervisor
website host
web designer
webmaster

Answers

Answer:

website host web designer webmaster

Explanation:

Q:

Who is responsible for managing a website? Check all of the boxes that apply.

A:

website host web designer webmaster

The people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

What is a website?

A website may be defined as a collection of World Wide Web pages that usually contain links to each other and are made available online by an individual, company, or organization. It includes a collection of files and related resources accessible through the World Wide Web and organized under a particular domain name.

According to the context of this question, except for the website supervisor, all are responsible for managing a website. This is because it usually supervises and regulates websites that are managed by other people like website hosts, web designers, and webmasters.

Therefore, the people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

To learn more about Websites, refer to the link:

https://brainly.com/question/28431103

#SPJ2

The for loop is a count-controlled loop and is used to execute a loop body a predictable number of times.

A. True
B. False

Answers

Answer:

True

Explanation:

For loops:

//This is Java code

for (int i = 0; i < 10; i++)

{

System.out.println("hi");

}

They let you specify the number of times the code inside the loop will execute. Above, it would print "hi" 10 times.

Answer:

true

Explanation:

have a nice day and hope it helps

(Python coding)4.3 Code Practice: Question 2
instructions:
Write a program that uses a while loop to calculate and print the multiples of 3 from 3 to 21. Your program should print each number on a separate line.

Expected Output:
3
6
9
12
15
18
21

Answers

Answer:

i = 3

while i <= 21:

   print(i)

   i+=3

Explanation:

First, we will declare i as 3 because otherwise Python will yell at you and say there is no variable with i, we set it to 3 because we will print then increment in the while loop instead of increment then print

Next the while loop, it will go until i is less than or equal to 21 to print from 3 to 21

Then we will print i as an output. The print command will print each number on a separate line

After that we will increment i by 3 to find the next multiple of 3

This solution will print the following:

3

6

9

12

15

18

21

Other Questions
Thomas is taking out a business loan of $20,000 over 5 years. He is given an APR of 6.12% he would like his monthly payments to not exceed $350 a month. Looking at the first few rows of the amortization table below, will his monthly payment be below $350 ? How much over/ under will hi actual payments be from his goal of $350? How much over/ under will his actual payments be from his goal of $350 per month? If y varies jointly with x and z, and y = 200 when x = 8 and z = 10, what is x when y = 165 and z = 11? what is the value of k? 250 160 5.2 2.5 GeometryA cylinder has a diameter of 14centimeters and a volume of 11211cubic centimeters. What is the height,in centimeters, of the cylinder? What is the cell reaction for the voltaic cell cr(s) | cr3 (aq) || cl(aq) | cl2(g) | pt? I need to figure out on how to do this, please help me I need a answer quick! Choose the best translation:footyardalitrotazapie Why does okita include this description of the speaker? to emphasize the cultural differences between japanese americans and other americans to accentuate the social injustice of japanese americans being interned to highlight the fact that the speaker is no different from any other average american girl to call attention to the tear in the narrators relationship with her best friend How did the services provided by the National Council of La Raza improve the lives of Hispanics in the 1970s and 1980s?A. The Mexican-American Unity Council was formed.B. Farmworkers organized into a union and received better pay.C. Family members of immigrants could settle in the United States.D. High school graduation rates and college attendance increased. Read the outline for a narrative essay. I. The characters and setting are described.Three young people are sitting in a coffee shop soon after World War II.II. The characters encounter a problem.They notice a veteran in the street.He seems to be wounded and is asking people for money.III. The characters consider the issue.The group asks the veteran to join them, and they listen to his story.The former soldier describes the challenges he has faced since the war.IV. The characters deal with the issue.The group offers to take him to a hospital for veterans.The veteran does not want to go to the hospital because he worries it will cost too much money.V. The characters reflect on the issue.At the hospital, the veteran thanks the young people for their help.Which plot element belongs in the fourth paragraph of this outline?the expositionthe conclusionthe rising actionthe conflict resolution what is the difference between a seal and a sea lion what is 56x3/4please help In the following narrative passage, which line is most like an aside in a dramatic work?I was walking with Kira in the evening, and that was when she asked me the question I was avoiding. "Hey," she said, "do you want to go to that new superhero movie?" There were cricketsand a deafening silence. Oh, how do I tell her Ive already seen it with the guys without hurting her feelings! "Well, Kira, Ive heard its not as good as the reviews make it out to be." I was relieved to see she bought that reason. can you please help? What war preceded the start of the second red scare?. what was the major message of the monroe doctrineA. americans could no longer move westwardB. All trade between europe and Asia had to pass through the americas.C. Spain and Great Britain had to completely withdraw from North America.D. The American continentswere closed to European colonization. determine (algebraically) if the given function is EVEN or ODD show your work.f(x)= -13x^2+15 A rectangle portrait is 6 feet wide and 4 feet high. What is its perimeter? A rabbits cells include many carbon-based molecules, such as DNA and proteins. Which statement best explains how a rabbit obtains the carbon that it incorporates into its cells?Choose one answer(Choice A)AThe rabbit eats grass, which contains carbon within its sugar molecules.(Choice B)BThe rabbit breathes air, which contains carbon in the form of carbon dioxide.(Choice C)CThe rabbit lives in a burrow in the soil, which contains various sources of carbon. Pls help max Point + brainliestDetermine which set has the greatest Radius. Several cylinders are separated into 4 sets. The cylinders with the same radius are in the same set. The graph of the equations represents the volume of each set of cylinders as they are being filled with water.o Set 1o Set 2o Set 3o Set 4