Courseiva

CCNA Workload Migration Questions

51 questions · Workload Migration topic · All types, answers revealed

1
MCQmedium

You are migrating a custom web application from an on-premises Linux server to OCI Compute. The application is packaged as a standard Docker container. Your management wants to avoid managing underlying operating systems, kernel patching, and VM scaling. Which OCI service should you select for this containerized workload migration?

A.OCI Container Instances
B.OCI Functions
C.Oracle Container Engine for Kubernetes (OKE)
D.OCI Compute Standard virtual machine instances
AnswerA

OCI Container Instances is a serverless container service that allows running containers instantly without managing VMs or Kubernetes.

Why this answer

OCI Container Instances is a serverless compute service that enables users to run containers directly on OCI without managing underlying virtual machines or servers, perfect for simple containerized deployments without Kubernetes overhead.

2
Multi-Selecteasy

When planning a workload migration to OCI, what are TWO primary benefits of conducting a comprehensive discovery and assessment phase using tools like OCI Migration? (Choose two.)

Select 2 answers
A.Accurately right-sizing OCI compute and storage resources based on historical utilization metrics
B.Automatically rewriting legacy COBOL source code into modern Python applications
C.Physically replacing hard drives in on-premises servers before shipping them
D.Instantly upgrading on-premises cooling systems without cloud involvement
E.Identifying application dependencies and grouping servers into logical migration waves
AnswersA, E

Assessment tools analyze CPU and memory usage to recommend cost-effective OCI shapes avoiding over-provisioning.

Why this answer

Discovery and assessment helps identify workload dependencies, right-size compute shapes, and estimate costs accurately before migration execution.

3
MCQmedium

You are planning the network cutover for a large-scale migration to OCI. The on-premises data center is connected to OCI via an OCI FastConnect circuit configured with private virtual circuits. During cutover, DNS records must be updated so that client traffic resolves to OCI load balancers. Which OCI service should you use to manage internal and external DNS authoritative resolution smoothly?

A.OCI API Gateway
B.OCI Traffic Management Steering
C.OCI Network Firewall
D.OCI DNS (Public and Private Zones)
AnswerD

OCI DNS supports highly scalable public and private zones to manage DNS record cutovers for migrated applications.

Why this answer

OCI DNS provides robust public and private DNS zone management, enabling seamless management of records, traffic steering, and integration with VCNs.

4
MCQmedium

Your company is executing a lift-and-shift migration of 50 physical servers running Red Hat Enterprise Linux (RHEL) to OCI. You want to ensure that the operating systems remain supported, patched, and entitled to Oracle Linux Premier Support without having to rebuild the servers. What conversion utility should you use?

A.VMware HCX OS conversion engine
B.OCI Database Migration service
C.OCI Instance Export/Import wizard
D.Oracle Linux Upgrade and Conversion tool (using the `leapp` utility and Oracle Linux yum repositories)
AnswerD

The `leapp` utility combined with Oracle support packages allows seamless in-place conversion from RHEL/CentOS to Oracle Linux.

Why this answer

OCI provides the 'Canonical' or 'OS Management Hub' tools, and specifically the 'Linux Migration' utility or 'Leapp' framework supported by Oracle to convert RHEL or CentOS instances running in OCI to Oracle Linux in-place, retaining binary compatibility and gaining Oracle support.

5
Multi-Selecthard

You are designing a high-performance computing (HPC) workload migration to OCI. The application consists of tightly coupled MPI (Message Passing Interface) jobs that require extreme low latency and high throughput. Which THREE OCI architecture components must you deploy to satisfy these HPC requirements? (Choose three.)

Select 3 answers
A.Standard OCI Archive Storage for runtime application data files
B.OCI Shared micro-tenant burstable VM instances connected via public internet gateways
C.OCI Cluster Networks with RDMA (Remote Direct Memory Access) capable bare metal compute shapes
D.OCI Compute Placement Groups configured with cluster strategy
E.High-performance local NVMe storage attached directly to the bare metal compute instances
AnswersC, D, E

RDMA cluster networks provide sub-microsecond latency and high bandwidth required for MPI workloads.

Why this answer

OCI HPC deployments require Cluster Networks with RDMA (Remote Direct Memory Access) over RoCE, high-performance NVMe storage, and Compute Placement Groups to guarantee ultra-low latency.

6
MCQhard

Your engineering team is troubleshooting an issue where migrated Linux virtual machines in OCI are experiencing severe disk I/O performance bottlenecks. The instances were migrated using raw block-level cloning from on-premises SAN storage. The volumes in OCI are provisioned as Lower Cost (Balanced) block volumes. What action should you take to resolve the performance bottleneck while maintaining data integrity?

A.Format the attached block volumes with ext3 file systems instead of ext4.
B.Recreate the virtual machines using denser AMD compute shapes with local NVMe storage.
C.Modify the OCI block volume performance tier or increase the assigned Volume Performance Units (VPUs) per GB.
D.Attach an OCI File Storage Service (FSS) mount target as the primary root volume.
AnswerC

Increasing VPUs or changing performance tiers dynamically scales IOPS and throughput to match workload requirements.

Why this answer

OCI Block Volume service offers different performance tiers: Balanced, Higher Performance, and Ultra High Performance, alongside customizable VPU (Volume Performance Units) scaling. Upgrading the VPUs or switching the volume performance tier directly increases IOPS and throughput without requiring data re-migration.

7
Multi-Selecteasy

During the post-migration validation phase of an application migration to OCI, your team needs to verify security compliance and resource configuration posture. Which TWO OCI services should you use to assess security posture and detect misconfigurations? (Choose two.)

Select 2 answers
A.OCI Vulnerability Scanning Service
B.OCI Cost Estimator
C.OCI Streaming Service
D.OCI Cloud Guard
E.OCI Resource Manager
AnswersA, D

Vulnerability Scanning checks host operating systems and container images for software flaws and security issues.

Why this answer

OCI Cloud Guard and OCI Vulnerability Scanning Service are the primary native tools used to monitor security posture, detect misconfigurations, and scan compute instances for vulnerabilities.

8
MCQmedium

You are migrating a multi-tier web application to OCI. The web tier consists of Apache HTTP servers that need to be auto-scaled based on CPU utilization. Which combination of OCI services should you configure to achieve automated horizontal scaling?

A.OCI Resource Manager and Terraform apply schedules
B.OCI Events Service and OCI Notifications triggered by Object Storage uploads
C.OCI Instance Pools and OCI Auto-Scaling Configurations
D.OCI Cloud Guard and OCI Vulnerability Scanning
AnswerC

Instance pools manage a group of similar compute instances, while auto-scaling configurations scale the pool based on metric thresholds.

Why this answer

OCI Compute Auto-Scaling configurations integrated with Instance Pools allow you to automatically provision or terminate compute instances based on metrics such as CPU or memory utilization, sitting behind an OCI Load Balancer.

9
MCQhard

Your company is migrating a large PostgreSQL database from AWS RDS to OCI Database with PostgreSQL. The database is 4 TB in size, and write operations continue 24/7. To ensure zero data loss and minimal downtime during cutover, which migration strategy should you employ?

A.Establish AWS Direct Connect to OCI FastConnect and mount an AWS EBS volume directly to an OCI VM running PostgreSQL.
B.Take an AWS RDS snapshot, download the snapshot files via AWS CLI, and restore them onto an OCI Compute instance running PostgreSQL.
C.Stop the application writes, take a pg_dump file, transfer it via SCP, and restore it into OCI during a scheduled 12-hour outage window.
D.Configure PostgreSQL logical replication (or use OCI GoldenGate / DMS equivalents) to stream ongoing transaction logs after performing an initial consistent dump and restore.
AnswerD

Logical replication synchronizes initial state and continuously streams WAL (Write-Ahead Logs) changes until the final switchover.

Why this answer

For heterogenous or cloud-to-cloud PostgreSQL migrations with ongoing writes, logical replication (using tools like AWS DMS or native PostgreSQL logical decoding with pg_logical / OCI GoldenGate) allows initial data snapshot loading followed by continuous change data capture (CDC).

10
MCQmedium

You are migrating an Oracle Database 19c on-premises to OCI Exadata Database Service on Dedicated Infrastructure using Oracle Zero Downtime Migration (ZDM) in offline mode. The target database is already provisioned. Which ZDM migration phase configures the target database and initiates the data transfer via Oracle Data Pump?

A.DEPLOY
B.MIGRATE
C.POST-MIGRATE
D.PRE-MIGRATE
AnswerB

The MIGRATE phase performs the actual data movement and configuration of the target database.

Why this answer

The ZDM workflow relies on distinct phases. The 'MIGRATE' phase is responsible for executing the database migration workflow, including configuring the target database and invoking Data Pump to move the data.

11
Multi-Selecthard

An enterprise is executing a large-scale database migration to OCI using Oracle Data Pump. To ensure optimal performance and minimize the duration of the data load phase, which THREE best practices should the database administrator implement? (Choose three.)

Select 3 answers
A.Disable secondary indexes, foreign key constraints, and database triggers on target tables before import, and rebuild them afterward.
B.Use high-performance OCI Block Volume performance tiers (such as Higher Performance) or temporary NVMe scratch space for the database staging directories.
C.Configure the PARALLEL parameter in Data Pump to utilize multiple worker processes simultaneously.
D.Route all Data Pump network links strictly through the public internet without compression to maximize packet inspection.
E.Set the database compatibility parameter to a legacy version from 10g to disable modern optimizer features.
AnswersA, B, C

Disabling constraints and indexes during bulk data loads reduces overhead and speeds up row insertions.

Why this answer

To optimize Data Pump performance during migration, administrators should increase parallel execution workers, disable indexes and triggers on the target table during load (or use table transforms), and utilize high-performance OCI Block Volume tiers or NVMe-backed storage.

12
MCQhard

Your organization is performing a zero-downtime database migration from an Oracle Database on-premises to OCI Exadata Database Service using Oracle Zero Downtime Migration (ZDM). During the migration job execution, the workflow pauses during the dataguard broker configuration step. Reviewing the ZDM logs, you find a network timeout error communicating between the ZDM service host and the OCI database listener. What is the most likely cause?

A.OCI Object Storage bucket policies prevent ZDM from reading temporary backup files.
B.OCI VCN Security Lists or Network Security Groups block incoming TCP port 1521 or SSH port 22 from the ZDM client subnet.
C.The Exadata database service requires Autonomous Database credentials to establish connection.
D.OCI IAM quotas restrict the creation of more than 10 Data Guard associations per tenancy.
AnswerB

ZDM requires bidirectional communication over SSH (22) and SQL*Net (1521) for orchestration and Data Guard setup.

Why this answer

ZDM orchestrates migrations by communicating over SSH and Oracle SQL*Net (port 1521) between the ZDM service host, the on-premises database, and the OCI database. Security lists, network security groups, or firewalls blocking port 1521 or SSH will cause communication timeouts.

13
Multi-Selectmedium

Your enterprise is migrating several mission-critical applications to OCI and requires high availability and disaster recovery across multiple regions. Which THREE OCI architectural components should you configure to meet these requirements? (Choose three.)

Select 3 answers
A.Attaching a single Block Volume across two distinct OCI regions simultaneously over standard iSCSI
B.Cross-region Database Data Guard or OCI GoldenGate replication
C.OCI Object Storage automatic cross-region replication buckets
D.Routing all regional traffic through a single legacy on-premises firewall in a third country
E.OCI Dynamic Routing Gateway (DRG) with Remote Peering Connections between regions
AnswersB, C, E

Database replication ensures near-zero RPO and RTO for database tiers across regions.

Why this answer

Cross-region HA/DR in OCI relies on Inter-Region DRG Remote Peering, Object Storage replication across regions, and Database Data Guard or GoldenGate replication.

14
Multi-Selectmedium

Your organization is planning a phased workload migration to OCI. To minimize risk, you decide to use a canary deployment and traffic splitting strategy for web applications. Which TWO OCI services or features can assist in routing fractional traffic percentages between on-premises and OCI environments during migration? (Choose two.)

Select 2 answers
A.OCI Vault master encryption keys
B.OCI Load Balancer backend set weight configurations
C.OCI IAM dynamic groups
D.OCI Block Volume backup policies
E.OCI Traffic Management Steering (Weighted or Load Limiting traffic steering policies)
AnswersB, E

Backend weights allow distributing incoming traffic proportionally between different backend server pools.

Why this answer

OCI Traffic Management Steering (specifically weighted round robin or failover steering policies) and OCI Load Balancer weighted backend sets allow fractional traffic splitting between old and new environments.

15
MCQmedium

You are executing a lift-and-shift migration of a multi-tier application where subnet IP addressing must remain identical to the on-premises environment due to hardcoded IP configurations in legacy software. How should you configure the OCI Virtual Cloud Network (VCN) to accommodate this requirement?

A.Use OCI Flexible Load Balancers configured in Layer 2 bridging mode.
B.Configure the OCI VCN and subnets with the exact same CIDR block ranges as the on-premises network.
C.Design the OCI VCN with disjoint RFC 1918 address space and use OCI NAT gateways to rewrite hardcoded IP addresses dynamically.
D.Deploy an OCI API Gateway in front of each virtual machine to proxy internal IP traffic.
AnswerB

Matching the VCN and subnet CIDR blocks allows migrated instances to retain their original private IP addresses.

Why this answer

OCI VCNs and subnets support bringing your own IP (BYOIP) or matching CIDR blocks. By provisioning an OCI VCN with the exact same CIDR block range as the on-premises subnet, hardcoded IPs can be preserved.

16
MCQeasy

An enterprise is planning to migrate a large monolithic .NET application from on-premises VMware to Oracle Cloud Infrastructure (OCI). The database is Microsoft SQL Server Enterprise Edition, and the virtual machines require persistent shared block storage using NFS. Which combination of OCI services provides the most native and seamless lift-and-shift architecture?

A.Oracle Container Engine for Kubernetes (OKE), Autonomous Database, and OCI Object Storage
B.OCI Compute, OCI Database with Microsoft SQL Server, and OCI File Storage Service (FSS)
C.Oracle Zero Downtime Migration, OCI Exadata Database Service, and OCI Archive Storage
D.OCI Functions, MySQL HeatWave, and OCI Block Volume Service
AnswerB

This combination natively fulfills the compute, database, and shared NFS storage requirements for a lift-and-shift migration.

Why this answer

OCI Compute provides the virtual machine hosting, OCI Database with Microsoft SQL Server supports the backend database requirements, and OCI File Storage Service (FSS) provides enterprise-grade NFS-based shared storage.

17
Multi-Selecthard

You are tasked with migrating a large enterprise database to OCI Exadata Database Service. To ensure minimal downtime and high reliability during cutover, which TWO Oracle migration tools or features are specifically designed for this purpose? (Choose two.)

Select 2 answers
A.Windows Robocopy utility
B.OCI File Storage CLI upload utility
C.Oracle Zero Downtime Migration (ZDM)
D.OCI Streaming Service Kafka producer APIs
E.Oracle Data Guard
AnswersC, E

ZDM automates end-to-end database migrations to OCI Exadata with minimal downtime using Data Guard and RMAN.

Why this answer

Oracle Zero Downtime Migration (ZDM) and Oracle Data Guard / GoldenGate are the primary tools used for migrating databases to Exadata Database Service with minimal or zero downtime.

18
MCQhard

You are migrating a 50 TB Oracle Database from an on-premises Sun Solaris SPARC server to OCI Exadata Database Service on X9M hardware (Linux x86-64 architecture). Because the source and target platforms have different endianness and operating system architectures, standard RMAN backup restoration is not possible. Which migration strategy should you implement?

A.Perform a cold OS-level tar/gzip copy of the Oracle home and data directories from Solaris to Linux.
B.Use OCI Zero Downtime Migration (ZDM) physical offline migration mode without endian conversion parameters.
C.Take an RMAN incremental backup on Solaris SPARC, copy the backup pieces to OCI Object Storage, and restore them directly onto the Exadata target.
D.Use Transportable Tablespaces with RMAN `CONVERT DATAFILE` or Oracle Data Pump to transfer and convert data between different endian architectures.
AnswerD

RMAN `CONVERT DATAFILE` converts datafiles between big-endian and little-endian formats during migration.

Why this answer

Migrating across different endian formats (Solaris SPARC is big-endian, Linux x86-64 is little-endian) requires conversion methods such as Oracle Data Pump, Transportable Tablespaces with RMAN CONVERT DATAFILE, or OCI GoldenGate.

19
MCQeasy

Your organization is designing a disaster recovery strategy as part of a workload migration project to OCI. The business requirement states that in the event of a regional outage in OCI region A, workloads must fail over to OCI region B with a Recovery Point Objective (RPO) of zero and a Recovery Time Objective (RTO) of less than 15 minutes. Which OCI networking feature should you deploy to interconnect the two regions for database replication?

A.OCI Local Peering Gateway (LPG)
B.OCI Dynamic Routing Gateway (DRG) with Remote Peering Connection (RPC)
C.OCI Service Gateway
D.OCI Internet Gateway with IPsec VPN tunnels over the public internet
AnswerB

DRG with RPC enables secure, high-bandwidth peering of VCNs across different OCI regions over Oracle's backbone network.

Why this answer

To connect VCNs across different OCI regions with low latency and high security for database replication (such as Data Guard), you should use OCI Remote Peering across Local Peering Gateways or Remote Peering Connections (RPC) through Dynamic Routing Gateways (DRGs).

20
MCQhard

You are leading a multi-cloud migration project where 200 virtual machines from an on-premises data center are being assessed for migration to OCI. You have deployed the OCI Migration discovery agent, but some Linux VMs are failing inventory collection due to SSH authentication failures and lack of root privileges. How should you resolve this issue without compromising security?

A.Grant root access directly to the default 'opc' user across all on-premises enterprise Linux servers via group policy objects.
B.Disable password authentication globally on all target VMs and configure the OCI Migration appliance with the root password in plain text.
C.Create a dedicated migration user account on each Linux VM, grant passwordless sudo access for the specific discovery commands, and distribute the OCI Migration SSH key pair to that user.
D.Switch the OCI Migration discovery mechanism from agent-based SSH to agentless SNMPv1 polling across the internal firewall.
AnswerC

Using a dedicated service account with granular sudoers permissions adheres to the principle of least privilege while enabling successful data collection.

Why this answer

OCI Migration requires a secure SSH connection with appropriate permissions (sudo/privilege escalation) to execute discovery commands. You must provision an authorized SSH key on the target VMs and configure a sudoers file allowing the OCI Migration agent service account to run necessary inventory scripts.

21
MCQmedium

You are planning the final cutover for a critical production database migrating from an on-premises Oracle Real Application Clusters (RAC) database to OCI Base Database Service using Oracle Data Guard for replication. To minimize application downtime during the cutover window, which sequence of steps must be executed?

A.Stop source application, shut down source database immediately, open standby database in read-write mode, and update DNS.
B.Delete the source database home, re-run ZDM pre-migration checks, and deploy a fresh Autonomous Database instance.
C.Take an offline Data Pump export on premises, ship the dump via FastConnect, import it into OCI, and keep the source running indefinitely.
D.Ensure zero data lag on the Data Guard standby, perform a switchover/failover to promote the OCI standby database to primary, and update application connection strings to point to the new OCI primary listener.
AnswerD

This ensures all transactions are synchronized, eliminates data loss, and cleanly promotes the cloud database with minimal cutover time.

Why this answer

To achieve minimal downtime with Data Guard, you instantiate the standby, let it catch up, perform a final log switch, apply all remaining redo, transition the role to primary, and then redirect application connection strings.

22
MCQeasy

An administrator needs to transfer 80 TB of unstructured file backup data from an on-premises Network Attached Storage (NAS) device to OCI Object Storage. The available internet bandwidth is only 50 Mbps, which would take months to upload. Which OCI service should be utilized to complete this physical migration efficiently?

A.OCI Data Transfer Service using physical Data Transfer Appliances.
B.OCI FastConnect with a dedicated 1 Gbps partner circuit.
C.OCI Storage Gateway deployed on an edge server compressing and streaming over the 50 Mbps line.
D.Parallelized multi-part uploads using the OCI CLI over public internet connections.
AnswerA

OCI Data Transfer Service allows customers to securely copy data to high-capacity storage appliances provided by Oracle and ship them to an OCI data center.

Why this answer

Data Transfer Appliance or Data Transfer Disk is designed for large-scale offline data migration where network bandwidth is insufficient to transfer data within a reasonable timeframe.

23
Multi-Selecthard

You are tasked with migrating a mission-critical three-tier enterprise application from an on-premises environment to OCI. The database tier uses Oracle RAC, and the application tier consists of stateless Java applications running on JBoss. Which TWO strategies or tools should be incorporated into the migration plan to ensure high availability and minimal downtime during cutover? (Choose two.)

Select 2 answers
A.Utilize Oracle Zero Downtime Migration (ZDM) to automate the database migration from on-premises RAC to OCI Exadata Database Service.
B.Rely exclusively on manual Oracle SQL*Plus scripts to perform a cold backup and restore across all tiers simultaneously.
C.Configure an OCI Load Balancer in front of the stateless application tier instances deployed across multiple fault domains to allow seamless traffic redirection during cutover.
D.Migrate the application tier using physical block-level cloning of the running JBoss server memory states.
E.Convert the database architecture immediately to MySQL HeatWave during the cutover window without schema validation.
AnswersA, C

ZDM streamlines complex database migrations including RAC-to-Exadata transformations with minimal downtime.

Why this answer

For Oracle RAC databases migrating to OCI, Oracle Zero Downtime Migration (ZDM) provides automated workflows. For stateless application tiers, deploying behind an OCI Load Balancer allows seamless shifting of traffic during cutover without session disruption.

24
MCQmedium

You are migrating a mission-critical multi-tier application from an on-premises data center to OCI. During the migration assessment phase, you identify that the application relies heavily on low-latency network communication (< 1ms round trip time) between the web tier and database tier. Which OCI architectural feature should you implement to satisfy this latency requirement?

A.Use OCI Local Peering Gateways (LPGs) to connect different Virtual Cloud Networks (VCNs) containing the tiers.
B.Utilize OCI Compute Placement Groups with a 'Cluster' strategy or deploy instances within the same Fault Domain with a strict locality policy.
C.Deploy the instances across different Availability Domains within the same OCI region.
D.Utilize OCI Compute Placement Groups with a 'Spread' strategy.
AnswerB

Cluster placement groups or strict proximity rules in placement groups place instances physically close together on the same underlying network fabric to achieve ultra-low latency.

Why this answer

OCI Compute Instances can be grouped into Compute Clusters (using Cluster Networks for HPC or Placement Groups for low latency) to ensure instances are physically close to each other within the data center, minimizing network latency.

25
Multi-Selectmedium

Your organization is preparing to migrate several large Oracle databases to OCI using Oracle Data Pump. Which THREE best practices should you follow to optimize the export and import performance over network connections? (Choose three.)

Select 3 answers
A.Use the `PARALLEL` parameter during both export and import operations to utilize multiple worker processes.
B.Execute all Data Pump jobs from a local laptop connected via public Wi-Fi without compression.
C.Enable data compression using the `COMPRESS` parameter to minimize network transfer times.
D.Disable database undo tablespaces entirely during the Data Pump import phase.
E.Use network-linked Data Pump (`NETWORK_LINK`) to stream data directly from source to target database without generating intermediate dump files on disk.
AnswersA, C, E

Parallelism drastically reduces total export and import time for large databases by running multiple threads concurrently.

Why this answer

Data Pump performance can be significantly improved by using parallel execution (PARALLEL parameter), compressing dump files, and staging files on high-performance storage or directly streaming via network links.

26
MCQeasy

Your company is migrating static web assets and user-uploaded media files from an on-premises web server to OCI. The web application requires high durability, low latency, and global content delivery. Which OCI service should you use to store and serve these assets?

A.OCI Archive Storage
B.OCI File Storage Service
C.OCI Block Volume service
D.OCI Object Storage (Standard Tier)
AnswerD

Object Storage Standard tier provides durable, highly accessible storage for web assets and media.

Why this answer

OCI Object Storage provides highly durable, scalable cloud storage for unstructured data, and can be integrated with OCI Edge Services / Content Delivery Network (CDN) partners for rapid global delivery.

27
MCQmedium

You are migrating an enterprise application that requires strict compliance and regulatory isolation. The application must run on dedicated physical hardware where no other customer's virtual instances can reside. Which OCI compute provisioning model should you choose?

A.OCI Dedicated VM Hosts
B.OCI Standard Multi-Tenant Compute Instances with high-density shapes
C.OCI Burstable Instances
D.OCI Container Instances
AnswerA

Dedicated VM Hosts provide physical server instances dedicated solely to your organization, meeting strict isolation and compliance requirements.

Why this answer

OCI Dedicated Virtual Host or Dedicated Compute Instances (Bare Metal or Dedicated VM Hosts) provide single-tenant hardware isolation where all VMs running on the host belong exclusively to a single tenant.

28
MCQhard

An architect is designing a database migration from an on-premises Oracle Database (Non-CDB structure) to an OCI Autonomous Database (Serverless). Which migration method is mandatory because of the architectural constraints of Autonomous Database?

A.Logical migration using Oracle Data Pump or Oracle Zero Downtime Migration (logical workflow)
B.Direct block-level storage snapshot replication using OCI Block Volume replication
C.RMAN transportable tablespaces with physical file conversion
D.Physical standby database via Oracle Data Guard broker
AnswerA

Because Autonomous Database is a managed cloud service with strict security and architectural bounds, logical migration via Data Pump or ZDM logical mode is required.

Why this answer

OCI Autonomous Database restricts direct low-level OS access and traditional physical database structures, requiring logical migration methods such as Oracle Data Pump, SQL Developer, or Zero Downtime Migration using logical transport mechanisms.

29
MCQmedium

Your organization requires the migration of 300 TB of backup archives from an on-premises data center to OCI Object Storage. The local internet connection is limited to 100 Mbps, and corporate compliance mandates that data cannot traverse the public internet unencrypted. Which solution should you select to meet these constraints?

A.Order an OCI Data Transfer Appliance, load the encrypted backup data locally, and ship the appliance to the designated Oracle data center.
B.Deploy an OCI Storage Gateway on-premises and cache all 300 TB locally while syncing in real-time.
C.Use Oracle GoldenGate to replicate backup files block-by-block to Object Storage.
D.Stream the backups continuously over a secure IPsec VPN tunnel using rclone.
AnswerA

The OCI Data Transfer Service is designed precisely for petabyte-scale offline data migrations when network bandwidth is a bottleneck.

Why this answer

Given the massive dataset size and limited internet bandwidth, physical offline migration using the OCI Data Transfer Portal and Data Transfer Appliance is the most efficient and compliant path. Furthermore, data is encrypted prior to export.

30
Multi-Selecteasy

An architect is designing a lift-and-shift migration strategy for an enterprise running diverse workloads on-premises. Which TWO of the following factors should be evaluated when deciding whether to choose a lift-and-shift (rehost) approach versus a re-architect approach? (Choose two.)

Select 2 answers
A.Migration timeline urgency and available project budget
B.Whether the on-premises facility uses carpeted floors
C.The physical color of the server bezels in the on-premises rack
D.The brand of office coffee machine currently installed in the data center
E.Availability of source application source code and developer resources
AnswersA, E

Lift-and-shift is faster and cheaper upfront compared to rewriting code for cloud-native services.

Why this answer

Lift-and-shift is fast and preserves application compatibility but may not take advantage of cloud-native elasticity or cost-saving PaaS features. Re-architecting takes longer and costs more upfront but optimizes for cloud efficiency.

31
MCQhard

An enterprise is migrating a legacy Java application that requires sticky sessions and complex path-based routing rules to OCI. The migration plan requires zero dropped connections during backend server updates. Which OCI Load Balancer configuration feature should you implement?

A.Enable IP Hash load balancing policy without health checks.
B.Use OCI Web Application Firewall (WAF) rate limiting rules to drop incoming traffic during maintenance.
C.Configure backend server draining with a specified timeout period in the backend set.
D.Configure a Layer 4 TCP Network Load Balancer with TCP session persistence disabled.
AnswerC

Backend draining ensures active client requests finish processing before a server is taken out of rotation during deployments or cutovers.

Why this answer

OCI Load Balancer supports backend set draining (draining timeout), which allows existing established connections to complete gracefully while new connections are routed to updated backend servers.

32
Multi-Selecthard

You are migrating a tiered enterprise application suite to OCI. Certain legacy components require specific static MAC addresses and direct layer 2 broadcast communication, which standard OCI virtual cloud networks (VCNs) do not support by default. Which THREE OCI architectural approaches or features can you utilize to solve this requirement? (Choose three.)

Select 3 answers
A.Deploy Oracle Cloud VMware Solution (OCVS), which provides a fully dedicated VMware SDDC environment supporting standard VLANs and layer 2 guest networking.
B.Use OCI Bare Metal compute instances that support SR-IOV (Single Root I/O Virtualization) for direct hardware network access and custom MAC configurations.
C.Enable OCI Load Balancer TCP termination without backend health checks.
D.Configure OCI VCN VNICs with customized MAC addresses where supported or utilize secondary private IPs with IP aliasing.
E.Rely on standard OCI Internet Gateways to bridge layer 2 broadcast domains across the public internet.
AnswersA, B, D

OCVS supports VMware NSX and standard VLANs, preserving layer 2 networking requirements.

Why this answer

Standard VCN virtual network interfaces (VNICs) have dynamic MAC addresses and do not support layer 2 broadcasts. To support L2 networking or custom MAC requirements, architects can utilize Oracle Cloud VMware Solution (OCVS), Bare Metal instances with SR-IOV, or OCI Flexible Virtual NIC options with spoof checking disabled.

33
MCQhard

Your team is executing a cutover plan for migrating a production Microsoft SQL Server database from an on-premises environment to OCI Compute running Windows Server. To ensure data integrity, you decide to use Always On Availability Groups with the on-premises primary and the OCI replica. After completing the initial seed and syncing the databases, you perform the failover. However, application servers in OCI cannot connect to the new primary database. What is the most likely root cause?

A.OCI VCN Security Lists or Network Security Groups block TCP port 1433 or the Availability Group listener port between the application tier subnet and the database subnet.
B.SQL Server Enterprise Edition requires an active Azure ExpressRoute connection to validate cluster heartbeat packets.
C.OCI Compute instances running Windows do not support Windows Server Failover Clustering (WSFC).
D.OCI block volumes do not support Microsoft NTFS file systems, causing the database files to corrupt upon failover.
AnswerA

Default VCN security rules or OS firewalls often block database listener ports unless explicitly opened.

Why this answer

When failing over an Always On Availability Group in a cloud environment like OCI, the listener requires specific network configurations such as an Internal Load Balancer or floating IP configuration, and VCN security lists or Windows Firewall rules must allow traffic on port 1433 and listener ports.

34
MCQmedium

You are designing a hybrid cloud architecture during a phased workload migration to OCI. On-premises applications must securely communicate with migrated OCI workloads over a private, dedicated connection with high throughput and encryption. Which OCI networking service combination provides this capability?

A.OCI Local Peering Gateway with public IP addressing
B.OCI NAT Gateway combined with Service Gateway
C.OCI Internet Gateway with SSL/TLS certificates
D.OCI FastConnect with MACsec encryption or an IPsec VPN tunnel over FastConnect
AnswerD

FastConnect provides dedicated private bandwidth, and adding MACsec or IPsec encryption secures the transit data.

Why this answer

An OCI FastConnect circuit combined with an IPsec VPN tunnel running over FastConnect provides dedicated, high-speed, private, and encrypted connectivity between on-premises data centers and OCI VCNs.

35
MCQeasy

Your team is planning to migrate virtual machines from an on-premises hypervisor to OCI Compute. You want to generate an automated report detailing resource utilization (CPU, memory, storage IOPS) over the past 30 days to right-size the target OCI instance shapes. Which OCI tool supports this discovery phase?

A.OCI Migration Discovery and Assessment
B.OCI Cost Estimator
C.OCI Logging Analytics
D.OCI Database Migration Service
AnswerA

OCI Migration collects on-premises inventory and performance utilization data to recommend optimal OCI compute shapes.

Why this answer

OCI Migration service includes discovery and assessment capabilities that collect performance metrics and hardware inventories from on-premises VMware or physical servers to recommend right-sized OCI shapes.

36
MCQeasy

An enterprise is planning to migrate a large on-premises Oracle Database of 15 TB to Oracle Cloud Infrastructure (OCI) Exadata Database Service. The maintenance window for the final cutover is extremely short (less than 2 hours). Which migration method should you recommend to minimize application downtime?

A.Set up an Oracle Data Guard standby database in OCI from an on-premises primary database using RMAN duplication over FastConnect, then perform a switchover during the maintenance window.
B.Use Oracle Database Actions to export all schemas to a local staging server and import them into the new database.
C.Migrate the database using OCI Database Migration service with a standard full database backup without incremental backups.
D.Perform a cold backup on-premises, upload it to OCI Object Storage, and restore it using RMAN during the maintenance window.
AnswerA

Data Guard physical standby allows continuous replication and reduces final cutover time to mere seconds or minutes.

Why this answer

Oracle Data Guard or GoldenGate combined with transportable tablespaces or RMAN cross-platform incremental backup provides the lowest downtime for large databases by synchronizing data in the background and performing a quick final cutover.

37
MCQeasy

An organization is preparing to migrate 500 virtual machines to OCI. To govern resource creation, budget allocation, and access control effectively, how should the OCI tenancy be structured prior to starting resource migrations?

A.Deploy all migrated virtual machines into the tenancy root compartment with a single administrator policy.
B.Create a separate OCI tenancy for every single virtual machine being migrated.
C.Rely entirely on tags without creating compartments or IAM policies.
D.Create a structured hierarchy of compartments (e.g., Prod, Non-Prod, Networking) beneath the root tenancy and apply least-privilege IAM policies to each compartment.
AnswerD

Compartment hierarchies enable precise access control, cost tracking, and security governance across migrated workloads.

Why this answer

A well-architected OCI tenancy uses a multi-compartment hierarchy aligned with business units, project environments (prod/non-prod), and security zones, governed by IAM policies and OCI Tagging.

38
Multi-Selectmedium

Your organization is planning to migrate file shares from an on-premises Windows environment (SMB protocol) to OCI. Which THREE factors or options should you consider when selecting the appropriate OCI storage architecture for Windows file shares? (Choose three.)

Select 3 answers
A.Deploying Windows Server instances on OCI Compute attached to high-performance OCI Block Volumes to act as native SMB file servers.
B.Using OCI Object Storage as a direct replacement for active SMB shared network drives requiring file locking.
C.Attaching OCI Archive Storage directly to Windows clients via USB cable simulation.
D.Evaluating OCI Marketplace partner solutions that provide enterprise NAS appliances with native SMB protocol support on OCI.
E.Standard OCI File Storage Service (FSS) natively speaks NFSv3 and does not support SMB/CIFS natively without third-party gateways or workarounds.
AnswersA, D, E

Windows file servers on OCI compute provide native SMB support with NTFS permissions and Active Directory integration.

Why this answer

OCI File Storage Service (FSS) supports NFS, but for native Windows SMB protocol requirements, architects must consider running Windows File Server on OCI Compute with Block Volumes, using OCI Storage Gateway, or leveraging third-party Marketplace SMB solutions.

39
Multi-Selecteasy

During a migration cutover weekend, your team encounters unexpected DNS resolution failures preventing users from reaching the newly migrated OCI application endpoints. Which TWO immediate troubleshooting steps should you perform? (Choose two.)

Select 2 answers
A.Check OCI VCN DNS resolver settings and custom resolver forwarders if integrating with on-premises DNS.
B.Verify that public DNS records (A and CNAME) have been updated with the correct OCI Load Balancer IP addresses and check TTL settings.
C.Change the tenant subscription currency from USD to EUR.
D.Reformat all backend database tables using SQL*Plus.
E.Delete all OCI compartments and recreate the tenancy root structure.
AnswersA, B

VCN resolver configuration ensures internal and hybrid DNS queries route correctly to private endpoints.

Why this answer

Troubleshooting DNS issues during cutover involves checking DNS record propagation, TTL values, and OCI VCN DNS resolver configuration or Load Balancer listener endpoints.

40
MCQeasy

During a lift-and-shift migration planning phase, your team needs to estimate the monthly running costs of various OCI Compute shapes, block storage volumes, and egress data transfer fees before provisioning resources. Which OCI tool should you use to generate this detailed cost breakdown?

A.OCI Budgets and Alerts
B.OCI Cost Estimator
C.OCI Resource Manager
D.OCI Migration Asset Inventory dashboard
AnswerB

The OCI Cost Estimator provides detailed pricing calculations for compute, storage, networking, and database services.

Why this answer

The OCI Cost Estimator (cloud.oracle.com/cost-estimator) allows architects and administrators to calculate and plan estimated monthly expenditures across all OCI services based on specific configurations and regions.

41
MCQhard

An enterprise is migrating a cluster of microservices running on Kubernetes from an on-premises data center to OCI Container Engine for Kubernetes (OKE). The cluster uses custom CNI (Container Network Interface) plugins and persistent storage backed by an on-premises Ceph cluster. During migration planning, how should you architect the persistent storage layer in OCI to support OKE stateful workloads?

A.Use ephemeral container scratch space for all persistent state requirements in OKE.
B.Mount the on-premises Ceph cluster directly inside OKE worker nodes using public IP addresses over an internet gateway.
C.Install the OCI Block Volume and OCI File Storage CSI drivers in the OKE cluster to dynamically provision persistent storage volumes.
D.Store all database and application state inside OCI Object Storage bucket folders mounted via local loop devices.
AnswerC

OCI CSI drivers allow Kubernetes stateful sets to natively provision and attach OCI block or file storage.

Why this answer

OCI Container Engine for Kubernetes (OKE) integrates natively with OCI Block Volume and OCI File Storage via Container Storage Interface (CSI) drivers, enabling dynamic provisioning of persistent volumes (PVs) and persistent volume claims (PVCs).

42
MCQeasy

Your organization is migrating a high-throughput transactional database to OCI. During peak business hours, the database experiences massive I/O bursts. You want to ensure the underlying storage configuration can scale its IOPS independently of storage capacity. Which OCI block volume feature should you enable?

A.OCI Object Storage Infrequent Access tier
B.OCI File Storage Service snapshot policies
C.OCI Local NVMe RAID striping
D.OCI Block Volume Auto-Tune performance feature or manual VPU adjustment.
AnswerD

Auto-tune or manual VPU scaling allows block volumes to dynamically increase IOPS and throughput without needing to increase volume size.

Why this answer

OCI Block Volume service allows users to dynamically adjust the Performance Units (VPUs) per GB independently of the storage capacity size, enabling high IOPS on demand.

43
MCQhard

An architect is migrating a multi-tier enterprise web application from an on-premises data center to OCI using the Lift and Shift Migration tool. During the migration assessment phase, the migration agent reports that several source VMs have unsupported guest operating system kernels and specific block device partitioning that cannot be directly converted by the OCI Image Builder. What is the recommended remediation strategy before initiating the bulk instance migration?

A.Use Oracle Zero Downtime Migration to rewrite the kernel binary during the transition phase.
B.Export the source VMs as custom VMDK/QCOW2 images, upload them to OCI Object Storage, and import them as OCI Custom Images to provision new instances.
C.Deploy OCI Full Stack Disaster Recovery to automatically fix and patch the kernel partitions upon boot.
D.Convert the instances directly into OKE worker nodes using the OCI Migration Workbench.
AnswerB

Importing custom images allows administrators to bypass automated tool limitations by using pre-configured, compatible guest OS images.

Why this answer

When source VMs have incompatible kernels or partitioning schemes that prevent automated conversion by OCI migration tooling, the recommended approach is to manually build a custom QCOW2 or VMDK image that is OCI-compatible, upload it to OCI Object Storage, and import it as a Custom Image.

44
MCQeasy

An architect is planning the migration of a large enterprise application repository stored in an on-premises NFS filer to OCI. The application requires POSIX-compliant shared file storage accessible by multiple compute instances simultaneously across different availability domains. Which OCI storage service should be deployed?

A.OCI Archive Storage
B.OCI Object Storage standard tier
C.OCI File Storage Service (FSS)
D.OCI Block Volume service
AnswerC

FSS is a shared, POSIX-compliant network file system accessible simultaneously by multiple instances.

Why this answer

OCI File Storage Service (FSS) provides a durable, scalable, enterprise-grade, network file system that supports the Network File System version 3.0 (NFSv3) protocol and POSIX-compliant locking, accessible across multiple Availability Domains.

45
MCQmedium

You are migrating a legacy application that relies on hardcoded IP addresses for inter-service communication. During the migration to OCI VCNs, you need to ensure that virtual machines can resolve each other's hostnames dynamically without maintaining manual /etc/hosts files. What OCI networking feature should you configure?

A.OCI API Gateway DNS forwarding rules
B.OCI Default VCN Resolver with assigned hostname prefixes
C.OCI Streaming service message brokers
D.OCI Network Load Balancer hostname rewriting
AnswerB

The default VCN resolver automatically assigns and resolves DNS hostnames for instances within the VCN.

Why this answer

OCI provides default VCN DNS resolution and custom DNS resolver settings, allowing instances within a VCN or peered VCNs to resolve hostnames automatically via Internet and VCN Resolver.

46
MCQeasy

Your organization has completed migrating a database to OCI Base Database Service. To ensure compliance with corporate data protection policies, you must verify that all database backups stored in OCI Object Storage are automatically encrypted using customer-managed encryption keys. Where should you configure this key management integration?

A.OCI Vault service (Key Management)
B.OCI Database Migration service connection profiles
C.OCI Audit log configuration
D.OCI Identity and Access Management (IAM) password policies
AnswerA

OCI Vault enables the creation of master encryption keys that can be assigned to databases, block volumes, and object storage buckets for customer-managed encryption.

Why this answer

OCI Vault service allows customers to create and manage master encryption keys. Both database backups and block volumes can be encrypted using keys stored in OCI Vault (KMS).

47
Multi-Selecthard

You are designing a secure network architecture for migrating production workloads into an OCI Virtual Cloud Network (VCN). Compliance standards require strict traffic inspection, isolation, and secure administrative access. Which THREE OCI networking and security features should you incorporate into your design? (Choose three.)

Select 3 answers
A.Implement stateful Security Lists and Network Security Groups (NSGs) to enforce least-privilege traffic filtering at the subnet and VNIC levels.
B.Disable all VCN route tables and allow all subnets to broadcast traffic freely across the public internet.
C.Deploy OCI Bastion service to provide secure, ephemeral, and audited SSH/RDP access to private compute instances without public IP addresses.
D.Attach public IP addresses to all database and application backend servers to ensure direct administrator troubleshooting capability.
E.Deploy OCI Network Firewall to inspect inter-subnet and east-west traffic within the VCN.
AnswersA, C, E

Security lists and NSGs provide granular firewall control over ingress and egress traffic.

Why this answer

Secure OCI architectures utilize network isolation via private subnets, Network Security Groups (NSGs) or Security Lists for micro-segmentation, and OCI Bastion service or Cloud Guard for secure administrative access and posture monitoring.

48
MCQeasy

Your company is planning to migrate 50 TB of unstructured file data from an on-premises Network Attached Storage (NAS) appliance to OCI File Storage Service (FSS). The target RTO/RPO allows for a phased baseline copy followed by incremental syncs. Which tool should you use to transfer the data efficiently over your dedicated OCI FastConnect link?

A.OCI Streaming Service
B.OCI Data Transfer Appliance
C.Parallelized rsync or custom multithreaded copy scripts via an OCI Compute instance acting as a migration gateway mounted to the FSS target
D.Oracle Data Pump
AnswerC

Using a compute instance with high network throughput and parallelized rsync streams directly to the FSS mount target maximizes the FastConnect bandwidth utilization.

Why this answer

Data Transfer Appliance is for offline physical shipping, but over FastConnect, rsync or specialized multithreaded file transfer utilities mounted directly to the FSS mount target are ideal for network-based parallelized data ingestion.

49
MCQhard

During a database migration assessment from an on-premises Oracle Database (version 11.2.0.4) to OCI Base Database Service running Oracle Database 19c, you discover that the legacy database uses deprecated initialization parameters and character sets that are incompatible with 19c. How should you address this migration blocker?

A.Perform a direct binary block-level copy of the 11.2.0.4 datafiles to OCI and start the 19c instance using the old parameter file.
B.Migrate the database to an OCI Autonomous Database directly, as Autonomous Database automatically converts any legacy version and character set on the fly.
C.Run the Pre-Upgrade Information Tool (utlu19i.sql) on the source database, remediate reported issues, upgrade the database binaries locally, and then migrate using Oracle Data Pump or RMAN.
D.Use OCI GoldenGate to stream the 11.2.0.4 data directly into a 19c target database without any schema adjustments.
AnswerC

Running pre-upgrade checks, fixing deprecated parameters and character sets, and using supported upgrade paths ensure a successful migration.

Why this answer

Upgrading across multiple major versions (11.2 to 19c) requires reviewing upgrade paths, deprecations, and character set conversions. Oracle Data Pump or transportable methods along with the Database Upgrade Assistant (DBUA) or Pre-Upgrade Information Tool must be run on the source database to identify and remediate incompatibilities before migration.

50
MCQmedium

Your organization is migrating a 3-tier web application running on VMware vSphere to OCI Compute. The application requires exact operating system configurations, strict security policies, and custom kernel modules. You want to automate the migration process while maintaining network consistency. Which migration approach is most suitable?

A.Deploy new bare metal instances in OCI and use rsync to copy the root file systems over a secure IPsec VPN tunnel.
B.Rebuild the application from scratch using Terraform and OCI Resource Manager, then redeploy application binaries.
C.Migrate the workloads to Oracle Cloud VMware Solution (OCVS) using VMware HCX for seamless live migration without altering the hypervisor layer or guest OS configurations.
D.Export each virtual machine as a VMDK file, upload it to OCI Object Storage, and import it as a generic OCI custom image using the CLI.
AnswerC

OCVS retains the existing VMware tooling, network policies, and guest OS configurations, ensuring zero changes to custom kernel modules.

Why this answer

OCI Compute and OCI Migration tools support lifting and shifting complex VMware environments by using VMware HCX on Oracle Cloud VMware Solution (OCVS) or importing custom images, but for strict OS configurations and automation, OCI Migration with agent-based discovery or OCVS is ideal. OCVS provides native VMware compatibility.

51
MCQhard

During a database migration project using Oracle Zero Downtime Migration (ZDM), the pre-migration validation phase fails with an error indicating that the source database's time zone file version does not match the target OCI Database service time zone file version. How should you resolve this issue?

A.Use the DBMS_DST package on the source database to update the time zone file version to match the target database before restarting the ZDM workflow.
B.Manually downgrade the OCI Database service time zone binaries using root OS access.
C.Modify the ZDM response file parameter `SKIP_DST_CHECK=TRUE` to bypass the validation check.
D.Restart the ZDM migration job using the logical migration workflow instead of the physical workflow.
AnswerA

Updating the source database time zone file using DBMS_DST ensures version parity and passes ZDM pre-checks.

Why this answer

Zero Downtime Migration (ZDM) requires time zone file versions to match between source and target databases to prevent data corruption during transportable tablespace or RMAN migrations. You must update the time zone file version on the source database using DBMS_DST package or apply the appropriate DST patch.

Ready to test yourself?

Try a timed practice session using only Workload Migration questions.