Computer Knowledge

Cloud Computing Management

2,340 Questions

Cloud computing management involves administering web based services, data storage, and network security protocols. This subject is heavily featured in the computer aptitude sections of banking and government recruitment tests. The practice questions address SaaS backup, cross region storage replication, and serverless application designs.

SaaS data backupPaaS use casesCloud storage replicationServerless applicationsCloud security tools

Cloud Computing Management Questions

Multiple choice technology packaged enterprise solutions
  1. all nodes resides on the same IP subnet

  2. a Quorum server for cluster reconfiguration

  3. a heart beat for the cluster

  4. each node runs its own operationg system

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A Quorum server is optional but recommended for Serviceguard clusters to prevent split-brain scenarios during network partitions. The other options are required: nodes must be on the same IP subnet for heartbeat communication, heartbeats are mandatory for cluster operation, and each node must run its own OS instance (which is standard, not optional).

Multiple choice technology packaged enterprise solutions
  1. on only on node

  2. all nodes

  3. on atleast two nodes

  4. optinal for cluster less than four nodes

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The cmcld (cluster membership daemon) must run on all nodes in a Serviceguard cluster. It monitors node status, communicates membership changes, and ensures all nodes agree on cluster composition. Running it only on some nodes would break cluster integrity and communication.

Multiple choice technology platforms and products
  1. Installing the iProcess Engine on one server that uses multiple database instances

  2. Installing the iProcess Engine on multiple servers that use one same database instance

  3. Installing the iProcess Engine on multiple servers that use multiple database instances

  4. All of above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A node cluster architecture in iProcess involves multiple iProcess Engine server instances (nodes) sharing a single database instance. This allows for load balancing and high availability across multiple physical or virtual servers.

Multiple choice technology web technology
  1. a. Central point from which to manage the domain.

  2. b. Distributed control over a domain

  3. c. All the above

  4. d. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The Administration Server acts as the central control point for managing the entire WebLogic domain - you configure, monitor, and manage all resources from it. 'Distributed control' would imply multiple points of control, which contradicts the centralized administration model. The Administration Server provides centralized, not distributed, control.

Multiple choice technology web technology
  1. a. Central point from which to manage the domain.

  2. b. Distributed control over a domain.

  3. c. All the above

  4. d. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The Administration Server in a WebLogic domain serves as the central administrative hub configuration point from which you configure, monitor, and manage all resources in the domain.

Multiple choice technology web technology
  1. a. Central point from which to manage the domain.

  2. b. Distributed control over a domain.

  3. c. All the above

  4. d. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The Administration Server acts as the central management point for a WebLogic domain, controlling configuration and monitoring. It's not a distributed control system - that's what managed servers provide. Options C and D are incorrect because only A describes the Administration Server's role.

Multiple choice technology architecture
  1. Service components are spread over several servers

  2. The service uses unmanaged code

  3. You have been unable to install the service manually

  4. You want to distribute the service

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Setup projects (.msi or Setup.exe) are primarily used to distribute applications and services across multiple machines. While you can install services manually using installutil, a setup project provides a user-friendly installation wizard and handles registration automatically. This is essential when deploying to production servers or customer environments.

Multiple choice technology programming languages
  1. Extensible Service Oriented Architecture

  2. Extensible Schema of Application

  3. Enterprise Schema Oriented Application

  4. enterprise Service Oriented Architecture

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

eSOA stands for Enterprise Service Oriented Architecture, which is SAP's approach to service-oriented architecture for building flexible, reusable business services. The term emphasizes enterprise-grade services that can be orchestrated across applications.

Multiple choice technology programming languages
  1. Life cycle management

  2. Security

  3. Deployment

  4. All the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Web containers provide comprehensive services including lifecycle management (creating/destroying components), security (authentication/authorization), and deployment handling. These are core responsibilities of servlet/JSP containers.

Multiple choice technology databases
  1. redo transport service,log applyservice,Role transition

  2. log applyservice,Role transition,Failover service

  3. redo transport service,Role transition,Failover service

  4. redo transport service,log applyservice,Failover service

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The three core components of Oracle Data Guard are Redo Transport Services (transferring redo data), Apply Services (applying redo data to standby databases), and Role Transitions (switchover and failover). Failover is a specific transition event, not an independent service category like redo transport or apply services.

Multiple choice technology
  1. rule-based application that runs in background on the operating system

  2. rule-based application deployed and running on a cluster

  3. rule-based application that triggers no rules

  4. dynamically generated web service that runs for a ruleset

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A hosted transparent decision service is a dynamically generated web service that exposes a ruleset for execution, allowing remote clients to invoke business rules without needing to know the implementation details. It is 'transparent' because the client sees only the service interface, not the underlying rule engine. It is not a background process or cluster deployment.

Multiple choice technology testing
  1. Client server architecture

  2. Distributed architecture

  3. Stand alone applications

  4. 3 Tier applications

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Standalone applications running on a single machine without network/server components have minimal performance testing scope. The other options (client-server, distributed, 3-tier) all involve multiple components, network communication, and concurrent users - key aspects for performance testing.