What are the constraints for designing small and large files and how these are resolved in different file system

Answers

Answer 1

Answer:

space management and buffering speed.

Explanation:

There are different types of file management systems in a computer system, examples of which are NTFS, FAT, WAFL, etc, and are governed by protocols like NFS, TFTP, FTP, etc.

These file systems are used in storages like the hard disk drive, CD and DVD, solid-state drive, etc, to organize or manage the files from boot setup, device drivers to permission-seasoned user files.

Files in storage range from small to large files, for which the schema of the file system must adjust to manage and allocate free space to other files in the future. The file system is also able to index the location of a file for retrieval to a cache memory, making buffering faster.


Related Questions

what are three ways to add receipts to quick books on line receipt capture?

Answers

Answer:

1) Forward the receipt by email to a special receipt capture email

2) You can scan, or take a picture of the receipt and upload it using the QuickBooks mobile app.

3) You can also drag and drop the image, or upload it into QuickBooks Online receipt center.

Explanation:

1) Th first process is simply done using the email address

2) On the app, tap the Menu bar with icon ≡.  Next, tap Receipt snap., and then

tap on the Receipt Camera. Yo can then snap a photo of your receipt, and tap on 'Use this photo.' Tap on done.

3) This method can be done by simply navigating on the company's website.

Consider the following Stack operations:

push(d), push(h), pop(), push(f), push(s), pop(), pop(), push(m).

Assume the stack is initially empty, what is the sequence of popped values, and what is the final state of the stack? (Identify which end is the top of the stack.)

Answers

Answer:

Sequence of popped values: h,s,f.

State of stack (from top to bottom): m, d

Explanation:

Assuming that stack is  initially empty. Suppose that p contains the popped values. The state of the stack is where the top and bottom are pointing to in the stack. The top of the stack is that end of the stack where the new value is entered and existing values is removed. The sequence works as following:

push(d) -> enters d to the Stack

Stack:  

d ->top

push(h) -> enters h to the Stack

Stack:

h ->top

d ->bottom

pop() -> removes h from the Stack:

Stack:

d ->top

p: Suppose p contains popped values so first popped value entered to p is h

p = h

push(f) -> enters f to the Stack

Stack:

f ->top

d ->bottom

push(s) -> enters s to the Stack

Stack:

s ->top

f

d ->bottom

pop() -> removes s from the Stack:

Stack:

f ->top

d -> bottom

p = h, s

pop() -> removes f from the Stack:

Stack:

d ->top

p = h, s, f

push(m) -> enters m to the Stack:

Stack:

m ->top

d ->bottom

So looking at p the sequence of popped values is:

h, s, f

the final state of the stack:

m, d

end that is the top of the stack:

m

Cloud computing gives you the ability to expand and reduce resources according to your specific service requirement.

a. True
b. False

Answers

Answer:

a. True

Explanation:

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.

Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.

In Computer science, one of the most essential characteristics or advantages of cloud computing is rapid elasticity.

By rapid elasticity, it simply means that cloud computing gives you the ability to expand and reduce resources according to your specific service requirement because resources such as servers can be used to execute a particular task and after completion, these resources can then be released or reduced.

Some of the examples of cloud computing are Google Slides, Google Drive, Dropbox, OneDrive etc.

A machine on a 10 Mbps network is regulated by a token bucket algorithm with a fill rate of 3 Mbps. The bucket is initially filled to capacity at 3MB. How long can the machine transmit at the full 10 Mbps capacity

Answers

2+4= this gbhfchgcjdxbhdch is correct

Write an INSERT statement that adds this row to the Categories table:

CategoryName: Brass
Code the INSERT statement so SQL Server automatically generates the value for the CategoryID column.

Answers

Answer:

INSERT INTO categories (CategoryName)

VALUES ('Brass Code');

Explanation:

The SQL refers to the Structured Query Language in which the data is to be designed and maintained that occurred in the relational database management system i.e it is to be used for maintaining and query the database

Now the INSERT statement should be written as follows

INSERT INTO categories (CategoryName)

VALUES ('Brass Code');


​what are the morals and ethics of computer

Answers

Answer:

Computer ethics is a part of practical philosophy concerned with how computing professionals should make decisions regarding professional and social conduct. Margaret Anne Pierce, a professor in the Department of Mathematics and Computers at Georgia Southern University has categorized the ethical decisions related to computer technology and usage into three primary influences:

The individual's own personal code.

Any informal code of ethical conduct that exists in the work place.

Exposure to formal codes of ethics.

Explanation:

Consider the following calling sequences and assuming that dynamic scoping is used, what variables are visible during execution of the last function called? Include with each visible variable the name of the function in which it was defined.a. Main calls fun1; fun1 calls fun2; fun2 calls fun3b. Main calls fun1; fun1 calls fun3c. Main calls fun2; fun2 calls fun3; fun3 calls fun1d. Main calls fun3; fun3 calls fun1e. Main calls fun1; fun1 calls fun3; fun3 calls fun2f. Main calls fun3; fun3 calls fun2; fun2 calls fun1void fun1(void);void fun2(void);void fun3(void);void main() {Int a,b,c;…}void fun1(void){Int b,c,d;…}void fun2(void){Int c,d,e;…}void fun3(void){Int d,e,f;…}

Answers

Answer:

In dynamic scoping the current block is searched by the compiler and then all calling functions consecutively e.g. if a function a() calls a separately defined function b() then b() does have access to the local variables of a(). The visible variables with the name of the function in which it was defined are given below.

Explanation:

In main() function three integer type variables are declared: a,b,c

In fun1() three int type variables are declared/defined: b,c,d

In fun2() three int type variables are declared/defined: c,d,e

In fun3() three int type variables are declared/defined: d,e,f

a. Main calls fun1; fun1 calls fun2; fun2 calls fun3

Here the main() calls fun1() which calls fun2() and fun2() calls func3() . This means first the func3() executes, then fun2(), then fun1() and last main()

Visible Variable:  d, e, f        Defined in: fun3

Visible Variable: c                 Defined in: fun2 (the variables d and e of fun2  

                                                                                                     are not visible)

Visible Variable: b                  Defined in: fun1 ( c and d of func1 are hidden)

Visible Variable: a                 Defined in: main (b,c are hidden)

b. Main calls fun1; fun1 calls fun3

Here the main() calls fun1, fun1 calls fun3. This means the body of fun3 executes first, then of fun1 and then in last, of main()

Visible Variable: d, e, f           Defined in: fun3

Visible Variable:  b, c              Defined in: fun1 (d not visible)

Visible Variable:  a                  Defined in: main ( b and c not visible)

c. Main calls fun2; fun2 calls fun3; fun3 calls fun1

Here the main() calls fun2, fun2 calls fun3 and fun3 calls fun1. This means the body of fun1 executes first, then of fun3, then fun2 and in last, of main()

Visible Variable:  b, c, d        Defined in: fun1

Visible Variable:  e, f             Defined in: fun3 ( d not visible)

Visible Variable:  a                Defined in: main ( b and c not visible)

Here variables c, d and e of fun2 are not visible

d. Main calls fun3; fun3 calls fun1

Here the main() calls fun3, fun3 calls fun1. This means the body of fun1 executes first, then of fun3 and then in last, of main()

Visible Variable: b, c, d     Defined in: fun1  

Visible Variable:   e, f        Defined in:  fun3   ( d not visible )

Visible Variable:    a          Defined in: main (b and c not visible)

e. Main calls fun1; fun1 calls fun3; fun3 calls fun2

Here the main() calls fun1, fun1 calls fun3 and fun3 calls fun2. This means the body of fun2 executes first, then of fun3, then of fun1 and then in last, of main()

Visible Variable: c, d, e        Defined in: fun2

Visible Variable:  f               Defined in: fun3 ( d and e not visible)

Visible Variable:  b               Defined in:  fun1 ( c and d not visible)

Visible Variable: a                Defined in: main ( b and c not visible)

f. Main calls fun3; fun3 calls fun2; fun2 calls fun1

Here the main() calls fun3, fun3 calls fun2 and fun2 calls fun1. This means the body of fun1 executes first, then of fun2, then of fun3 and then in last, of main()

Visible Variable: b, c, d       Defined in: fun1  

Visible Variable: e               Defined in: fun2  

Visible Variable: f                Defined in: fun3  

Visible Variable: a               Defined in: main

Other Questions
Fiona wrote the linear equation y = y equals StartFraction 2 over 5 EndFraction x minus 5.x 5. When Henry wrote his equation, they discovered that his equation had all the same solutions as Fionas. Which equation could be Henrys? x x minus StartFraction 5 over 4 EndFraction y equals StartFraction 25 over 4 EndFraction.y = x x minus StartFraction 5 over 2 EndFraction y equals StartFraction 25 over 4 EndFraction.y = x x minus StartFraction 5 over 4 EndFraction y equals StartFraction 25 over 2 EndFraction.y = x x minus StartFraction 5 over 2 EndFraction y equals StartFraction 25 over 2 EndFraction.y = 1. Noor Patel has had a busy year! She decided to take a cross-country adventure. Along the way, she won a new car on "The Price Is Right" (valued at $15,500) and won $500 on a scratch-off lottery ticket (the first time she ever played). She also signed up for a credit card to start the trip and was given a sign-up bonus of $100. How much will she have to include in her federal taxable income?2A. What is the amount of taxes for a head of house hold with a taxable income of $57,500 with a rate of 25%?B. What is the amount of taxes for a single person with a taxable income of $35,000 with a rate of 15%?C. What is the amount of taxes for a married couple filling jointly with a taxable income of $70,700 with a rate of 15%? Find the missing factor D that makes the equality true -15y^4=(D)(3y^2) A small helium-neon laser emits red visible light with a power of 5.40 mW in a beam of diameter 2.30 mm.Required:a. What is the amplitude of the electric field of the light? Express your answer with the appropriate units.b. What is the amplitude of the magnetic field of the light?c. What is the average energy density associated with the electric field? Express your answer with the appropriate units.d. What is the average energy density associated with the magnetic field? Express your answer with the appropriate units.E) What is the total energy contained in a 1.00-m length of the beam? Express your answer with the appropriate units. Which of the following is the correct set notation for the set of perfect squares between 1 and 100 (including 1 and 100)?Select the correct answer below:{p2p and 1p10}{p2p and 1{p2p and 1p10}{p2p and 1 Is 3+(-4) the same as -4+3 ? Explain HELP PLEASE ASAP I REALLY DONT KNOW HOW TO DO THIS What is the slope of a line perpendicular to the line containing the points $(-1,2)$ and $(1,-2)$? Express your answer as a common fraction. Enter your answer If a cell has 24 pairs of chromosomes in its diploid state, how manychromosomes will it have after Meiosis 2?A. 12B. 24C.48D. 6 (Pls Help) The study of such concepts as motion, force,y energy, matter, heat, sound, light, and the components of atoms is:- Physics- Biology- Earth Science- Astronomy What is the solution to -5 + z = -12 A. z = -17 B. z = -7 C. z = 7 D. z = 17 please help which phrase best completes the diagram? Nine and one-half less than four and one-half times a number is greater than 62.5. Which of the following represents the solution set of this problem?(16, positive infinity)(Negative 16, positive infinity)(Negative infinity, 16)(Negative infinity, Negative 16) Two numbers are in ratio 3 by 2 and their difference is 5 find numbers whats a negative times a positive times a negative? Burke's Corner currently sells blue jeans and T-shirts. Management is considering adding fleece tops to its inventory to provide a cooler weather option. The tops would sell for $53 each with expected sales of 4,300 tops annually. By adding the fleece tops, management feels the firm will sell an additional 285 pairs of jeans at $65 a pair and 420 fewer T-shirts at $26 each. The variable cost per unit is $36 on the jeans, $16 on the T-shirts, and $31 on the fleece tops. With the new item, the depreciation expense is $33,000 a year and the fixed costs are $76,000 annually. The tax rate is 35 percent. What is the project's operating cash flow? plz help asap i have limited time i will give brainliest What is the area of a parallelogram if the coordinates of its vertices are (0, -2), (3,2), (8,2), and (5, -2)? A portfolio to the right of the market portfolio on the CML is: Group of answer choices a lending portfolio. an inefficient portfolio. a borrowing portfolio. Find the midpoints of the points (-3,-2) and (1,-4) Question is on the picture. Answers: A. 0.1 J/g*C B. 0.2 J/g*C C. 0.4 J/g*C D. 4 J/g*C