A technician reinstalled a legacy line-of-business application on a Windows 10 Pro workstation, but the application still fails to start with an error stating that a specific ActiveX control (.ocx file) is missing or not registered. The technician has confirmed that the .ocx file exists in the C:\Windows\SysWOW64 folder. Which command should the technician run from an elevated command prompt to register this component?
Answer choices
Why each option matters
Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.
Best answer
regsvr32 C:\Windows\SysWOW64\filename.ocx
This command uses regsvr32 to register the OCX file in the Windows Registry, which is the proper method for ActiveX controls.
Distractor review
regsvr32 /u C:\Windows\SysWOW64\filename.ocx
The /u switch is used to unregister a component, not to register it.
Distractor review
regedit C:\Windows\SysWOW64\filename.ocx
Registry Editor (regedit) opens the registry database, not a file; it cannot register an OCX or DLL.
Distractor review
sfc /scannow
System File Checker (sfc) scans protected system files for corruption, it does not register OCX files.
Common exam trap
Common exam trap: authentication is not authorization
Logging in proves the user can authenticate. It does not automatically mean the user is allowed to enter privileged or configuration mode. Watch for AAA authorization, privilege level and command authorization details.
Technical deep dive
How to think about this question
This kind of question is testing the difference between identity and permission. A user may successfully log in to a router because authentication is working, but still fail to enter configuration mode because authorization is missing, misconfigured or mapped to a lower privilege level.
KKey Concepts to Remember
- Authentication checks who the user is.
- Authorization controls what the user is allowed to do after login.
- Privilege levels affect access to EXEC and configuration commands.
- AAA, TACACS+ and RADIUS can separate login success from command access.
TExam Day Tips
- Do not assume successful login means full administrative access.
- Look for words such as cannot enter configuration mode, privilege level, authorization or command access.
- Separate login problems from permission problems before choosing the answer.
Related practice questions
Related 220-1101 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
CompTIA A+ hardware practice questions
Practise 220-1101 questions linked to CompTIA A+ hardware.
CompTIA A+ mobile devices practice questions
Practise 220-1101 questions linked to CompTIA A+ mobile devices.
CompTIA A+ networking practice questions
Practise 220-1101 questions linked to CompTIA A+ networking.
CompTIA A+ operating systems practice questions
Practise 220-1101 questions linked to CompTIA A+ operating systems.
CompTIA A+ security practice questions
Practise 220-1101 questions linked to CompTIA A+ security.
CompTIA A+ software troubleshooting questions
Practise 220-1101 questions linked to CompTIA A+ software troubleshooting questions.
CompTIA A+ operational procedures questions
Practise 220-1101 questions linked to CompTIA A+ operational procedures questions.
More questions from this exam
Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.
Question 1
A user reports intermittent network connectivity on a desktop computer. The technician observes that the Ethernet link light on the NIC turns off for a few seconds and then turns back on. The cable passes a wiremap test, the switch port is verified good with another device, and the NIC driver is updated. The issue occurs more frequently when the computer's case fan runs at high speed. Which of the following is the MOST likely cause?
Question 2
A workstation is unable to connect to the internet. The technician runs the 'ipconfig' command and sees the IPv4 address is 169.254.15.200 with a subnet mask of 255.255.0.0. The workstation can ping other devices on the local subnet but cannot ping the default gateway or any external addresses. Which TWO actions should the technician take to resolve this issue? (Select two.)
Question 3
A workstation is connected to a managed switch. It obtains a valid IP address (192.168.10.50) from the DHCP server, but it cannot ping the default gateway (192.168.10.1). The link light on both the workstation NIC and the switch port are solid green. Other workstations on the same switch CAN ping the default gateway successfully. The technician accesses the switch management interface and finds that the workstation's port is configured as an access port on VLAN 10. The default gateway is located on VLAN 20. An inter-VLAN router is configured but not explicitly allowing VLAN 10 access to VLAN 20. Which of the following is the MOST likely cause of the problem?
Question 4
A company develops a web application that relies on a custom library available only for a specific Linux distribution. They want to deploy the application in the cloud with minimal administrative overhead, but they need full control over the software stack, including the ability to install the custom library and configure the web server. Which cloud service model BEST meets these requirements?
Question 5
A company has a legacy virtual machine running on a deprecated hypervisor (Hyper-V). They want to migrate this VM to a new hypervisor (VMware vSphere) hosted in a private cloud while preserving the VM's configuration, installed applications, and data. The migration must be performed with minimal downtime. Which of the following methods is MOST appropriate?
Question 6
A company hosts a critical database on a virtual machine in a public cloud. The database requires persistent storage that must be retained even if the VM is terminated. The storage must also be accessible from multiple VMs simultaneously for a future high-availability configuration. Which type of cloud storage BEST meets these requirements?
FAQ
Questions learners often ask
What does this 220-1101 question test?
Authentication checks who the user is.
What is the correct answer to this question?
The correct answer is: regsvr32 C:\Windows\SysWOW64\filename.ocx — The regsvr32.exe utility is used to register and unregister DLLs and ActiveX controls (OCX files) in the Windows Registry. To register an OCX file, the technician must run regsvr32 followed by the full path to the file from an elevated (Run as administrator) command prompt, because registering components often requires administrative privileges. For 32-bit components on a 64-bit Windows, they reside in SysWOW64. The correct command is: regsvr32 C:\Windows\SysWOW64\filename.ocx. Option A (regsvr32 /s) includes the silent mode switch but still registers the file; it is also correct but the /s switch is optional. However, the question asks 'Which command should the technician run' and the core purpose is registration, so a simple regsvr32 command without switches is the standard answer. Option B (regsvr32 /u) is for unregistering. Option C (regedit) is for editing the registry directly, not for registering controls. Option D (sfc /scannow) checks system file integrity, not component registration.
What should I do if I get this 220-1101 question wrong?
Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.
Discussion
Sign in to join the discussion.