Follow Quotesrain
  • Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • English APP
  • login
  • Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • Walkins
    • Corporate Job Exam
    • Government Job Exam
    • Entrance Exam
  • Training
    • Internship
  • Placement Questions
  • /
  • Operating System

Operating System interview questions and answers for freshers

Operating System Select Another Category Select Another Topic

Programming and Technical

  • Android 118
  • ASP.NET 60
  • C 459
  • C++ 448
  • DATA STRUCTURE 66
  • DBMS 77
  • ELECTRONICS 39
  • Java 260
  • OOPs Concepts 117
  • Operating Syst 103
  • RDBMS 109
  • UNIX 70

Operating System Question Topics

    Category (1)

    HR Interview (1)

  • Interview (1)
  • Logical Reasoning (6)

  • Coding Decoding (3)
  • Cryptography (2)
  • Decision Making and Problem Solving (1)
  • Numerical Ability (1)

  • Age Problem (1)
  • Programming (11)

  • Arrays (1)
  • Basics (1)
  • Database (1)
  • Program (2)
  • Technical (6)
  • Verbal Ability (1)

  • Antonyms (1)
Keep an EYE (0)
Solved Question (0) UnSolved Question (103)
Pages: 11123456789NextLast
Advertisements

(#M40167108) OPERATING SYSTEM QUESTION Application Software question Keep an EYE Keep an eye puzzle Keep an eye puzzle

Which of the given options is NOT an application software?

A. DOS
B. Microsoft Word
C. VLC media player
D. MySQL

Asked In Operating System Jax (1 year ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (71)   (17) Submit Your Solution Basics

(#M40153633) OPERATING SYSTEM QUESTION scheduling Keep an EYE Keep an eye puzzle Keep an eye puzzle

a computer memory is composed of 16k words of 8 bits

Asked In Operating System kowsalya (7 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (13)   (5) Submit Your Solution undefined
Advertisements

(#M40153632) OPERATING SYSTEM QUESTION scheduling Keep an EYE Keep an eye puzzle Keep an eye puzzle

a computer memory is composed of 16k words of 8bits

Asked In Operating System kowsalya (7 years ago)
Unsolved
Is this Puzzle helpful?   (2)   (0) Submit Your Solution

(#M40152806) OPERATING SYSTEM QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

No. of pages are given and using LRU algorithm we have to find the number of page faults.
a) 2 b) 6 c) 5 d)7

Asked In Operating System Nakshatra Mukhopadhyay (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (5)   (3) Submit Your Solution Program

(#M40029508) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. What is a FIFO?

A. FIFO are otherwise called as 'named pipes'. FIFO (first-in-first-out) is a special file which is said to be data transient. Once data is read from named pipe, it cannot be read again. Also, data can be read only in the order written. It is used in interprocess communication where a process writes to one end of the pipe (producer) and the other reads from the other end (consumer).

Asked In Operating System MAN (9 years ago)
Unsolved
Is this Puzzle helpful?   (6)   (1) Submit Your Solution Decision Making and Problem Solving

(#M40029507) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. What are links and symbolic links in UNIX file system?

A. A link is a second name (not a file) for a file. Links can be used to assign more than one name to a file, but cannot be used to assign a directory more than one name or link filenames on different computers.
Symbolic link 'is' a file that only contains the name of another file.Operation on the symbolic link is directed to the file pointed by the it.Both the limitations of links are eliminated in symbolic links.
Commands for linking files are:
Link ln filename1 filename2
Symbolic link ln -s filename1 filename2

Asked In Operating System MAN (9 years ago)
Unsolved
Is this Puzzle helpful?   (3)   (0) Submit Your Solution

(#M40029506) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. How do you change File Access Permissions?

A. Every file has following attributes:
owner's user ID ( 16 bit integer )
owner's group ID ( 16 bit integer )
File access mode word
'r w x -r w x- r w x'
(user permission-group permission-others permission)
r-read, w-write, x-execute
To change the access mode, we use chmod(filename,mode).
Example 1:
To change mode of myfile to 'rw-rw-r--' (ie. read, write permission for user - read,write permission for group - only read permission for others) we give the args as:
chmod(myfile,0664) .
Each operation is represented by discrete values
'r' is 4
'w' is 2 'x' is 1
Therefore, for 'rw' the value is 6(4+2).
Example 2:
To change mode of myfile to 'rwxr--r--' we give the args as:
chmod(myfile,0744).

Asked In Operating System MAN (9 years ago)
Unsolved
Is this Puzzle helpful?   (1)   (2) Submit Your Solution

(#M40029505) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

What are the Unix system calls for I/O?

Asked In Operating System MAN (9 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (0)   (1) Submit Your Solution

(#M40029504) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. Brief about the directory representation in UNIX.

A. A Unix directory is a file containing a correspondence between filenames and inodes. A directory is a special file that the kernel maintains. Only kernel modifies directories, but processes can read directories. The contents of a directory are a list of filename and inode number pairs. When new directories are created, kernel makes two entries named '.' (refers to the directory itself) and '..' (refers to parent directory).
System call for creating directory is mkdir (pathname, mode).

Asked In Operating System MAN (9 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (0) Submit Your Solution

(#M40029503) OPERATING SYSTEM QUESTION operating system Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. What is 'inode'?

A. All UNIX files have its description stored in a structure called 'inode'. The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode. In addition to descriptions about the file, the inode contains pointers to the data blocks of the file. If the file is large, inode has indirect pointer to a block of pointers to additional data blocks (this further aggregates for larger files). A block is typically 8k.
Inode consists of the following fields:
File owner identifier
File type
File access permissions
File access times
Number of links
File size
Location of the file data

Asked In Operating System MAN (9 years ago)
Unsolved
Is this Puzzle helpful?   (2)   (0) Submit Your Solution
Keep an EYE (0)
Solved Question (0) UnSolved Question (103)
Pages: 11123456789NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

no image
Dimple
India
Punjab
Time: 00:01:33
Points
19

Maths Quotes

If you think dogs can't count, try putting three dog biscuits in your pocket and then giving tommy only two of them.

Phil Pastoret

A man has one hundred dollars and you leave him with two dollars. That's subtraction.

Mae West

Placed User Comments

M4Math helped me a lot.

Vipul Chavan 2 years ago

Thanks m4 maths for helping to get placed in several companies.
I must recommend this website for placement preparations.

yash mittal 3 years ago
  • 2476K+Registerd user
  • 1734K+Engineers
  • 742K+MBA Asprirant
  • 3K+Enginnering College
  • 250+Company Exam
  • 150K+Interview Questions
  • Site Links
  • Home
  • Result
  • Today's Puzzle
  • Discussion Board
  • Maths Tricks
  • Advertise with us
  • Contact Us
  • Useful Info
  • Maths Quotes
  • Previous Puzzles
  • Prize
  • Privacy Policy
  • Disclaimer and Copyright
  • Terms and Conditions
  • Sitemap
  • Placement papers
  • TCS Placement Paper
  • HCL Placement Paper
  • INFOSYS Placement Paper
  • IBM Placement Paper
  • SYNTEL Placement Paper
  • TECHNICAL Interview
  • HR Interview
All rights are reserved to @m4maths.com