-
General Knowledge
-
General Topics
- Abbreviations
- Books and Authors
- Famous Academies and Institutes
- First in India (Man)
- First in India (Women)
- Important Dates
- Famous Personalities
- Public Administration Science
- Astronomy
- Biology
- Botany
- Chemistry
- Physics
- Zoology
- Inventions and Scientists Geography
- Geographical Epithets India
- Geographical Epithets World
- Places Associated with Industries in India
- National Parks and Sanctuaries
- Towns on River Banks History
- Indian History and Culture
- Indian National Movement
- Indian Polity and Constitution
- Ancient Period in Indian History
- World History
- Governor General of India Culture
- Languages
- Indian Dance and Music
- Classical Dances of India
- Folk Dances in India and Tribal Dances in India
- Famous Dancers, Instrumentalists, Vocalists in India World
- First in the World
- Parliament Names
- United Nation Organizations (UNO)
- World's Famous News Agencies
- World Industries
- National Emblems
- Countries and Alternative Names
- Countries and Capitals
- View More topics...
- General Aptitude
- Problems on Ages
- Alligation and Mixture
- Area
- Arithmetic Progression
- Average
- Banker's Discount
- Boats and Streams
- Calendar
- Chain Rule
- Clock
- Compound Interest
- Decimal Fraction
- Height and Distance
- Logarithms
- Mensurations
- Numbers
- Odd Man Out and Series
- Partnership and Share
- Percentage
- Permutation and Combination
- Pipes and Cisterns
- Probability
- Problems on H.C.F and L.C.M
- Problems on Numbers
- Problems on Trains
- Profit and Loss
- Races and Games
- Ratio and Proportion
- Simple Interest
- Simplification
- Stocks and Shares
- Surds and Indices
- Time and Distance
- Time and Work
- True Discount
- Volume & Surface Areas
- General English
- Antonyms
- Synonyms
- Vocabulary Test
- One Word Substitution
- Sentence Completion
- Sentence Improvement
- Idioms & Phrases
- Homonyms
- Word Formation
- Active & Passive Voice
- Direct and Indirect Speech
- Spotting Errors
- Double Synonyms
- Choose the Appropriate Filter
- Spelling Test
- Transformation
- Reconstruction of Sentence
- Chooose the Correct or Incorrect Sentence
- Networking
- Interview Questions
-
Programming
- .NET
- Java
- ASP.NET
- C++
- Perl
- Python
- Ruby and Rails
- Struts
- Core Java
- Hibernate Database
- DB2
- MS SQL Server
- MySQL
- Oracle
- SQL
- DBMS
- Data Warehousing
- Data structures and Algorithms Cisco
- CCNA
- CCNP Routing
- CCNP Switching
- Internetworking
- Border Gateway Protocol Windows
- MCSE
- Exchange Server
- Windows Server 2008
- DNS & Active Directory
- Firewall Questions Linux
- Unix
- Linux Server Administrator
- Linux System Administrator
- Linux File Manipulation
- Database
- Home
- Server Administration
- RHCSA Online Test
Instructions
- Total Questions 20
- Each question carry 1 mark
- Must answer all the questions (otherwise report card will not be generated)
- If you dont want to take a test, simply click the check answers button and view all the answers with explanations
- Do Not Refresh the Page
- No Time Limit
- Good Luck :)
You Scored % - /
Correct Answers :
[B, D]
Explanation :
There are two different types of processes that each request a different management approach. These are shell jobs and daemons. A cron job and a thread are subdivisions of these generic categories.
Correct Answers :
[B]
Explanation :
The Ctrl+Z command temporarily freezes a current job, after which the bg command can be used to resume that job in the background.
Correct Answers :
[A]
Explanation :
The Ctrl+C command cancels the current job. Ctrl+D sends the EOF character to the current job, which can result in a stop if this allows the job to complete properly. The difference with Ctrl+C is that when using Ctrl+C the job is canceled with no regard to what it was doing. The Ctrl+Z keystroke freezes the job.
Correct Answers :
[A, B]
Explanation :
Individual threads cannot be managed by an administrator. Using threads makes working in a multi-CPU environment more efficient because one process cannot be running on multiple CPUs simultaneously, unless the process is using threads.
Correct Answers :
[A]
Explanation :
The ps ef command shows all processes, including the exact command that was used to start them.
Correct Answers :
[B]
Explanation :
KVM virtual machines run directly on top of the KVM hypervisor module and are not depended on the availability of the management program.
Correct Answers :
[B]
Explanation :
The libvirtd process provides the management interface to access KVM virtual machines.
Correct Answers :
[A]
Explanation :
Hardware virtualization support needs to be present in your computer hardware. If it is not you cannot use KVM virtualization. On some computers, the feature is available, but not switched on by default. Switch it on through your computer BIOS setup.
Correct Answers :
[C, D]
Explanation :
Look for the vmx flag in /proc/cpuinfo to verify the availability of hardware virtualization support or for the svm flag (for AMD cpus). The lscpu command shows the hypervisor mode a host is offering, and if used on a virtual machine it shows which type of virtualization platform this machine is used on.
Correct Answers :
[A]
Explanation :
The modprobe kvm command loads the KVM kernel module and all its dependencies. Do not use insmod kvm ; that command will not load the kernel module dependencies as well.
Correct Answers :
[C]
Explanation :
The --scripts option checks whether there are scripts in an RPM package. If you want to query the package file and not the database of installed RPMs, you need to add the -p option to the -q option, which is used to perform RPM queries.
Correct Answers :
[C]
Explanation :
Use the rpm -qf command to find which RPM package a specific file comes from.
Correct Answers :
[A]
Explanation :
The yum install command installs individually downloaded RPM files while looking for package dependencies in the current repositories. This is better than using rpm -ivh , which does not consider the yum repositories. In earlier versions of RHEL, the yum localinstall command was used to install packages that were downloaded to the local file system, but this command is now deprecated.
Correct Answers :
[D]
Explanation :
The yum history command reads the /var/log/yum.log file and shows recent yum history. In this list, every event is marked with a history number that can be used with the yum history undo command.
Correct Answers :
[C]
Explanation :
The yum list all command shows installed packages and packages that are available in the repositories. The question was how to show installed packages (not all packages), which is why answer C is the correct answer.
Correct Answers :
[B]
Explanation :
The systemctl command on RHEL 7 is used to manage services. If used with the status option, the current state of the service is checked, and recent log messages about the service are displayed as well.
Correct Answers :
[C]
Explanation :
The fields in cron timing are minute, hour, day of month, month, and day of week. Answer C matches this pattern to run the task on the seventh day of the week at 11 a.m.
Correct Answers :
[A]
Explanation :
To launch a job from Monday through Friday, you should use 1-5 in the last part of the time indicator. The minute indicator */5 will launch the job every 5 minutes.
Correct Answers :
[A, D]
Explanation :
You cannot modify user cron files directly, but have to go through the crontab editor. This editor is started with the crontab -e command.
Correct Answers :
[B]
Explanation :
The /etc/cron.d directory is used to store cron files for individual services that need tasks to be executed through cron. This directory is mostly filled by installing RPM files that contain cron jobs.
|
|
||||||||||||||||||||||||||||