Computer Knowledge

Cloud Computing Management

2,254 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 architecture
  1. Clients may be validation intensive,consequently requiring powerful hardware

  2. Any change to one tier typically affects both tiers

  3. Represents a single point of failure

  4. Each client makes a direct connection with the server

  5. They are not very maintainable

  6. They are quite manageable

Reveal answer Fill a bubble to check yourself
B,C,F Correct answer
Explanation

In 2-tier architecture, changes to one tier (client or server) typically require changes to the other due to tight coupling. The central server represents a single point of failure - if it goes down, the entire system fails. These architectures are also more manageable than distributed n-tier systems due to simpler deployment and monitoring.

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 dynamically generates a web service for a specific ruleset. Unlike traditional rule-based applications that run as background processes or on clusters, a transparent decision service creates an on-demand web service interface that allows direct execution of business rules through standard web service calls without requiring complex application infrastructure.

Multiple choice technology web technology
  1. 2

  2. 3

  3. 4

  4. 5

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

This appears to be organization-specific configuration for an investment banking ('IB') WebSphere deployment. Standard WebSphere can support any number of nodes per server, but this question tests a specific deployment setup where 4 nodes per instance is the configured standard. This is environment-specific knowledge, not general WebSphere architecture.

Multiple choice technology
  1. Appreciation or Negative feedback from Microsoft

  2. Quality of Service for converged networks

  3. Prioritization of traffic based on COS or TOS values

  4. None of above

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

In Microsoft support operations, a QoS ticket represents customer feedback - either appreciation or negative feedback about service quality. The other options describe general network QoS concepts (Quality of Service, traffic prioritization) which are unrelated to Microsoft's specific ticketing terminology.

Multiple choice technology
  1. Engine that powers Microsoft’s Software Plus Services strategy

  2. Engine that provides Incident management to online services

  3. Engine that helps Microsoft to define strategies under MOF

  4. None of the above

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

GFS (Global Foundation Services) is the infrastructure engine that powers Microsoft's Software Plus Services (S+S) strategy. It provides the foundational platform for Microsoft's online services. Option B is too narrow (incident management only), and Option C is incorrect (MOF is a framework, not something GFS helps define).

Multiple choice technology databases
  1. simple

  2. two tier

  3. n tier

  4. client server

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

N-tier architecture (typically 3-tier or multi-tier) separates the application logic into presentation, business logic (application tier), and data layers, with the agent/application tier sitting in the middle. Two-tier is client-server directly connecting to database. Simple architecture has no clear separation. Client-server is essentially two-tier architecture.

Multiple choice technology
  1. Applications

  2. Infrastructure

  3. Resources

  4. Value

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

While services may use applications, infrastructure, and resources as means, what they always deliver to customers is value. Value is the benefit or utility the customer receives - it's the outcome, not the components. ITIL defines service as a means of delivering value to customers.

Multiple choice technology platforms and products
  1. Throttling

  2. Service Orchestration

  3. Service Pooling

  4. Service Aggregation

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

Service Pooling in OSB refers to the management of multiple endpoint URLs for a single business service. When a business service has multiple backend endpoints, OSB can automatically manage them as a 'pool' - handling load distribution, health checking, and failover if one endpoint becomes unavailable. This is distinct from Service Aggregation (combining multiple services), Service Orchestration (coordinating service calls), or Throttling (rate limiting). The failover and endpoint management logic described in the question is specifically what Service Pooling provides.

Multiple choice technology platforms and products
  1. Throttling

  2. Service Orchestration

  3. Service Pooling

  4. Service Aggregation

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

Service Pooling in OSB manages multiple endpoint URIs configured for a single Business Service, handling load distribution across endpoints and automatic failover when endpoints become unavailable. Throttling controls request rate limits. Service Orchestration coordinates multiple services in a workflow. Service Aggregation combines responses from multiple services. Only Service Pooling specifically addresses endpoint management and failover logic.

Multiple choice technology
  1. Applications

  2. Infrastructure

  3. Resources

  4. Value

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

According to ITIL service definition, a service always delivers value to customers. Value is the core outcome - services may use applications, infrastructure, and resources as means to deliver that value, but these are not the deliverables themselves. Value is what the customer actually receives and cares about.

Multiple choice technology web technology
  1. DataSynanpses Grid Server

  2. Windows Hosted App

  3. The same server as Web App

  4. Parallel platform with SG service

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

The EC Engine runs on a DataSynapses Grid Server, which is a distributed computing platform that provides grid processing capabilities. This allows the EC Engine to leverage parallel processing across multiple grid nodes for computationally intensive tasks like scenario generation and analysis.

Multiple choice technology web technology
  1. DataSynanpses

  2. Safari

  3. Mapak

  4. TCS Inbuilt

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

The grid server used for the EC Engine is provided by DataSynapses (misspelled as 'DataSynanpses' in the option), a company that specializes in grid computing software and distributed processing solutions. DataSynapses grid servers enable high-performance parallel processing for computational tasks.

Multiple choice technology
  1. $RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog Application, $computername $RemoteAppLog.Clear()
  2. $RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Remove()
  3. $RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Delete()
  4. $RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Clear()
Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Option D correctly instantiates System.Diagnostics.EventLog with the log name MyLog and calls the Clear() method to remove all entries. Options A uses the wrong log name (Application), while B and C use incorrect methods (Remove() and Delete() don't exist or don't clear entries).

Multiple choice technology
  1. Data Warehouse Write Account

  2. Data Reader Account

  3. Action account

  4. SDK

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

The SDK (Software Development Kit) account is specifically used to read and write information in the Operations Manager database. This account enables programmatic access to SCOM data. Data Warehouse Write Account, Data Reader Account, and Action account serve different purposes.