Comptia (XK0-004) Exam Questions And Answers page 37
Which of the following best completes the sentence? The Architecture Repository ________.
is a categorisation mechanism for classifying architecture and solution artifacts
is a detailed model of architectural work products, including deliverables and artifacts
is an architecture of generic functions and services
is a set of resources to help establish an architecture capability within an organization
System Configuration and Management
Administrative Tasks
Which server offers encrypted tunnel SOCKS services?
Single Choice
Which of the following servers provides encrypted tunnel SOCKS services?
SNMP
VPN
CA
SSH
Networking Fundamentals
Security
A Linux administrator installed a new network adapter and temporarily disabled the network service from starting on boot. The partial output of chkconfig is as follows:
Which of the following commands BEST describes how the administrator should re-enable the network service?
Which of the following commands BEST describes how the administrator should re-enable the network service?
chkconfig --level 0 network on
chkconfig --level 0-6 network on
chkconfig --level 6 network on
chkconfig --level 12 network on
chkconfig --level 345 network on
Essential System Services
Networking Fundamentals
What is the objective of Phase A, Architecture Vision?
Single Choice
Which one of the following is an objective of Phase A, Architecture Vision?
Defining architecture principles
Defining relationships between management frameworks
Defining the enterprise
Evaluating the enterprise architecture maturity
Identifying stakeholders and their concerns
System Configuration and Management
Administrative Tasks
A systems administrator has scheduled a system update for a server. The update includes a resynchronization of the package database and updates to the current packages and the system distribution packages. Which of the following commands contains the proper order of this update?
apt-get upgrade, apt-get dist-upgrade, apt-get update
apt-get update, apt-get upgrade, apt-get dist-upgrade
apt-get dist-upgrade, apt-get upgrade, apt-get update
apt-get update, apt-get dist-upgrade, apt-get upgrade
Command Line Interface
Essential System Services
A server administrator notices that one of the servers cannot connect to its gateway, which has the IP 10.10.10.1.
Which of the following commands should the administrator execute to determine the default gateway of the server?
Which of the following commands should the administrator execute to determine the default gateway of the server?
route -n
ip a default-gw
ifconfig
nslookup
Networking Fundamentals
An analyst is trying to determine which public IP addresses are managed by Company A, but the script is not working correctly.
Which of the following explains what is wrong with the script?
Which of the following explains what is wrong with the script?
$(cat ip-list.txt) should be changed to `cat ip-list.txt` in the for statement.
The for should be changed to while in the loop.
The > should be changed to 2> in the do statement.
The -ne flag should be changed to -eq in the if statement.
Command Line Interface
Networking Fundamentals
What is Capability-Based Planning and how does it work?
Single Choice
Complete the sentence. Capability-Based Planning is a technique that____________________.
ensures timely solutions
identifies services to be shared
focuses on business outcomes
ensures business information is communicated to the right people at the right time
ensures the application of business best practices
System Configuration and Management
Administrative Tasks
The Apache web server was recently installed on a Debian/Ubuntu server. The web server fails and a review of log messages on another partition reveals the installation was not completed properly due to lack of disk space. After clearing the files, the systems administrator has requested the installation to be performed again.
Which of the following command lines will perform this task? (Choose two.)
Which of the following command lines will perform this task? (Choose two.)
apt-get install apache2
apt-get --purge remove acache2
apt-get --reinstall install apache2
apt-get --reinstall apache2
Command Line Interface
Devices, Linux Filesystems, and Filesystem Hierarchy Standard
A systems administrator must clean up all application files in the directory /var/log/app. However, the company s security policy requires the files to be kept on the backup server for one year. The Linux server has only the tar and bzip2 packages installed.
Which of the following commands will package and compress the files?
Which of the following commands will package and compress the files?
tar zcvf applicationfiles.tar.bz2 /var/log/app/*
tar jcvf applicationfiles.tar.bz2 /var/log/app/*
tar cvf applicationfiles.tar.bz2 /var/log/app/*
tar xvf applicationfiles.tar.bz2 /var/log/app/*
Scripting and Automation
Devices, Linux Filesystems, and Filesystem Hierarchy Standard
Comments