Describe any four file attributes

1 Answer

Answer :

File attributes:

 Name: The symbolic file name is the only information kept in human readable form.

 Identifier: File system gives a unique tag or number that identifies file within file system and which is used to refer files internally.

 Type: This information is needed for those systems that support different types.

 Location: This information is a pointer to a device and to the location of the file on that device.

 Size: The current size of the file (in bytes, words or blocks) and possibly the maximum allowed size are included in this attribute.

 Protection: Access control information determines that who can do reading, writing, executing and so on.

 Time, Date and User Identification: This information may be kept for creation, Last modification and last use. These data can be useful for protection, security and usage monitoring.

Related questions

Description : Enlist different file allocation methods? Explain contiguous allocation method in detail.

Last Answer : From the user's point of view, a file is an abstract data type. It can be created, opened, written, read, closed and deleted without any real concern for its implementation. The implementation of a ... a times is difficult to estimate. 4. Compaction may be required and it can be very expensive.

Description : Write Unix command for following: i)create a folder OSY ii) create a file FIRST in OSY folder iii) List/display all files and directories. iv) Write command to clear the screen

Last Answer : i) create a folder OSY: $mkdir OSY ii)create a file FIRST in OSY folder: $cd OSY $cat>FIRST or $ touch FIRST iii) List/display all files and directories: $ls iv) to clear screen: $clear

Description : List free space management techniques? Describe any one in detail.

Last Answer : A file system is responsible to allocate the free blocks to the file therefore it has to keep track of all the free blocks present in the disk. There are mainly four approaches by using which, the free ... block. This block contains a pointer to the next free disk block, and so on.

Description : State and describe types of scheduler.

Last Answer : There are three types of scheduler: Long term scheduler Short term scheduler Medium term scheduler 1. Long term scheduler: It selects programs from job pool and loads them into the ... scheduler works in close communication with long term scheduler for loading process into the main memory. 

Description : Describe sequential and direct access method.

Last Answer : Sequential access: Information from the file is processed in order i.e. one record after another. It is commonly used access mode. For example, editors and compilers access files in sequence. A read ... prevent the user from accessing portions of the file system that may not be part of his file.

Description : Describe I/O Burst and CPU Burst cycle with neat diagram.

Last Answer : CPU burst cycle: It is a time period when process is busy with CPU.  I/O burst cycle: It is a time period when process is busy in working with I/O resources. A process execution consists ... cycle and so on. The final CPU burst cycle ends with a system request to terminate execution.

Description : List any four features of open source operating system.

Last Answer : 1. Open Source: open source OS code is freely available and it is community based development project. Multiple team's works in collaboration to enhance the capability of operating system and it is ... issuing a command in Linux Terminal or Shell. Linux can also run Windows applications if needed.

Description : Explain any four scheduling criteria.

Last Answer : 1. CPU utilization: In multiprogramming the main objective is to keep CPU as busy as possible. CPU utilization can range from 0 to 100 percent. 2.Throughput: It is the number of processes ... fairly early and can continue computing new results while previous results are being output to the user.

Description : Define real time operating system. List its any four applications of it.

Last Answer : Real time Operating System: A real time system has well defined fixed time constraints. Processing should be done within the defined constraints -Hard and Soft real time system. OR The ... Applications: 1. Flight Control System 2. Simulations 3. Industrial control 4. Military applications

Description : Explain LRU page replacement algorithm for following reference string. 7 0 1 2 0 3 0 4 2 3 0 3 2 1 2 0 1 7 0 1 Calculate the page fault.

Last Answer : LRU: The Least Recently Used (LRU) page replacement policy replaces the page that has not been used for the longest period of time. LRU replacement associates with each page the time of that page's last use. ... in question so assume frame size as 3 or 4) LRU: Assume frame size=3

Description : Explain multithreading model in detail.

Last Answer : Many systems provide support for both user and kernel threads, resulting in different multithreading models. Following are three multithreading model: Many-to-One Model The many-to- ... True concurrency cannot be achieved. Multiple threads of kernel is an overhead for operating system

Description : Enlist the operating system tools. Explain any two in detail.

Last Answer : Following are the operating tools: User Management Security policy Device Management Performance Monitor Task Scheduler A) User management: User management includes everything ... routing tables, interface statistics, masquerade connections, and multicast memberships. # netstat -tulpn

Description : Explain PCB with diagram.

Last Answer : Each process is represented as a process control block (PCB) in the operating system. It contains information associated with specific process. Process State: It indicates current state of a process. ... . Each PCB gives information about a particular process for which it is designed.

Description : Explain Round Robin algorithm with suitable example.

Last Answer : It is preemptive scheduling algorithm. A small unit of time known as a time quantum or time slice is used for pre-emption of a currently running process. Ready queue is implemented as a circular ... has received 1 time quantum, the CPU returns to process P1 for an additional time quantum. 

Description : What is purpose of system call? State two system calls with their functions.

Last Answer : System call provides an interface between a running program and operating system. It allows user to access services provided by operating system. This system calls are procedures written using C, ... send, receive messages transfer status information attach or detach remote devices. 

Description : Explain partitioning and its types.

Last Answer : An important operation of memory management is to bring programs into main memory for execution by the processor. Partitioning is a technique that divides a memory into multiple partitions. These partitions ... in memory. For example: Consider following table with process and memory space.

Description : Explain deadlock? What are necessary conditions for deadlock?

Last Answer : In multiprogramming environment, several processes may compete for a finite number of resources. A process requests resources and if the resources are not available then the process enters into the ... Each process is waiting for the resources held by other waiting processes in circular form.

Description : With neat diagram explain inter process communication model.

Last Answer : Inter-process communication: Cooperating processes require an Interprocess communication (IPC) mechanism that will allow them to exchange data and information. There are two models of IPC 1. ... a communication link between them. Between each pair of processes exactly one communication link.

Description : List components of OS. Explain process management in detail.

Last Answer : List of System Components: 1. Process management 2. Main memory management 3. File management 4. I/O system management 5. Secondary storage management Process Management: The operating ... synchronization. 4. A mechanism for process communication. 5. A mechanism for deadlock handling.

Description : Enlist types of operating system. Explain multiprogramming OS in detail.

Last Answer : Types of operating system 1.Batch Systems 2.Multiprogramming 3.Multitasking 4.Time-Sharing Systems 5.Desktop Systems 6.Distributed system 7.Clustered system 8.Real Time system: Multiprogramming ... multiprogramming: user can open word, excel, access and other applications in a system.

Description : Write syntax for following commands: i)Sleep ii)Kill

Last Answer : i)sleep Syntax: sleep NUMBER[SUFFIX]… sleep OPTION ii) kill Syntax: kill pid

Description : Define virtual memory

Last Answer : Virtual memory is a memory management capability of an operating system (OS) that uses hardware and software to allow a computer to compensate for physical memory shortages by temporarily transferring data ... can be placed in overlays, but can concentrate instead on the problem to be programmed. 

Description : Draw process state diagram.

Last Answer : process state diagram

Description : Explain any 4 services provided by OS.

Last Answer : 1.User Interface: All operating systems have a user interface that allows users to communicate with the system. Three types of user interfaces are available: a. Command line interface ( ... to system resources. Security is provided by user authentication such as password for accessing information.

Description : Python Pickle Load TypeError: file must have 'read' and 'readline' attributes -Web-Development

Last Answer : answer:

Description : The attributes of a file are. a. Name b. Identifier c. Types d. Location e. Size f. Protection g. Time, date and user identification h. Allof these

Last Answer : h. Allof these

Description : Group of attributes/field in a database is known as a: a) Data Entry b) Record c) File d) None of These

Last Answer : b) Record

Description : What are the four attributes to be present in any test problem?A. Statement, criteria, effect and cause B. Priority, fix, schedule and report C. Statement, fix effect and report D. None of the above.

Last Answer : A. Statement, criteria, effect and cause

Description : Consider the following database table having A, B, C and D as its four attributes and four possible candidate keys (I, II, III and IV) for this table: I: {B} II: {B, C} III: {A, D} IV: {C, D} If ... the database table? (A) I and III only (B) III and IV only (C) II only (D) I only

Last Answer : (C) II only

Description : Congratulations! You have been selected by your government's Chimera program, to enhance your inferior human body with non-human animal attributes. Which do you choose?

Last Answer : X-ray vision Ability to fly ESP or the ability to selectively capture other peoples’ thoughts.

Description : Can anyone recommend an Android music app that has the following attributes?

Last Answer : I’d say Plex seems likable enough to me, though I don’t know how to do the sleep timer thing.

Description : What are important attributes for you while buying a new car?

Last Answer : Not stolen, or written off. In a state that has high hail damage.

Description : What are the best features, traits, or attributes about liberalism and conservatism?

Last Answer : Most likely it will be a conservative who would say “It’s still a person in there in the womb, no matter how small she /he is.” Most likely it would be a liberal who would be against capital punishment.

Description : [First fluff hits the dust] What would be your attributes or features for the perfect laptop case or bag?

Last Answer : Water and emp proof.

Description : What would you say are your strongest attributes as an employee/worker, and what are your weakest areas (your disadvantages) as a worker?

Last Answer : answer:I work really well alone, and most times can get the job done. My weakest point is holding my temper when the boss is an idiot.

Description : Could physical attributes be genetically-linked to heritable health issues?

Last Answer : Genetics trump looks. It’s all in the DNA, and while physical attributes are hereditary as well it is going to be the underlying genetics that predispose one to certain conditions, not the physical appearance. I look more like my dad but inherited my mothers kidney condition.

Description : What physical attributes constitutes physical beauty or attractiveness?

Last Answer : Nope. I dislike the excessively emphasised cheek bones, the underbite, and especially the massively overdone makeup. God I hate that so much.

Description : Are there any websites like the Taxonomic Name Resolution Service, but for other plant attributes?

Last Answer : answer:I'm not sure I understand what you're trying to do do you want to enter plant names to find out what attributes they commonly share? I think it's unlikely you will find that, since most of these ... or the UK, for example). So it might help for you to look for keys to your region of study.

Description : I am drawing a creature to represent the spirit of Christmas. What attributes should it have to represent the season? (e.g the wings of a turkey ect)

Last Answer : I see a lot of doves getting used. Peace on earth, goodwill to all, etc.

Description : Why is it considered racist to express a physical attraction to people with a certain skin tone but perfectly acceptable to be attracted to someone based on other physical attributes?

Last Answer : I understand what your saying. Maybe because a certain skin tone is often associated with certain parts of the world, and a certain race of people, whereas the other physical attributes are not? I mean, ... said to me that he preferred dark skinned girls over light, I wouldn't see him as racist.

Description : How do I make a custom brush in Photoshop with the following attributes (details inside)?

Last Answer : answer:It's simpler to work in illustrator for this brush if you are averse to pen pressure. The reason for this is because the brushes in Photoshop are not mathematical, yet in illustrator ... the lines [everything actually] in Illustrator are mathematical. Hope this helps you understand the why .

Description : Generally speaking, what are the attributes which people who get fired tend to share?

Last Answer : I work in a call center and though I am not on the phones I do work with people are. Most people do a great job and have been there for sometime. However there are those who get fired and I would say the ... have to take it.. but if you snap back.. you are gone, I've seen it happen over 100 times.

Description : If you were to promote the town/city were you now reside, which attributes/attractions would you submit for consideration?

Last Answer : Tumbleweed cascading across the prairie.Ah well orphan status avoided, just.

Description : What attributes do you think fathers naturally teach their sons?

Last Answer : The ones they are least aware of and don’t give a moment’s though to. Those are the ones that are picked up every day, “naturally”.

Description : What human attributes were necessary to make it through natural selection?

Last Answer : Cute and stupid seems to be pro-survival. Lord knows there’s no shortage of them.

Description : Secondary code of the Opitz system is for_________ a.Design attributes b.Manufacturing attributes c.Production operation type & sequence d.Maintenance flow

Last Answer : c.Production operation type & sequence

Description : Supplementary code of the Opitz system is for_________ a.Design attributes b.Manufacturing attributes c.Production operation type & sequence d.Maintenance flow

Last Answer : b.Manufacturing attributes

Description : Form code of the Opitz system is for_________ a.Design attributes b.Manufacturing attributes c.Production operation type & sequence d.Maintenance flow

Last Answer : a.Design attributes

Description : Besides income, what can be the other attributes to compare economic development? -SST 10th

Last Answer : (1) Of course, for comparing economic development of countries, their income is considered to be one of the most important attributes. This is based on the understanding that more income means more of all ... at birth : It denotes average expected length of life of a person at the time of birth.

Description : According to Ernst Renan what are the attributes of a nation -SST 10th

Last Answer : In a lecture delivered at the University of Sorbonne in 1882, the French philosopher Ernst Renan (1823-92) outlined his understanding of what makes a nation. The lecture was subsequently published as a famous ... of liberty, which would be lost if the world had only one law and only one master.'