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
-
Clients may be validation intensive,consequently requiring powerful hardware
-
Any change to one tier typically affects both tiers
-
Represents a single point of failure
-
Each client makes a direct connection with the server
-
They are not very maintainable
-
They are quite manageable
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.
-
rule-based application that runs in background on the operating system
-
rule-based application deployed and running on a cluster
-
rule-based application that triggers no rules
-
dynamically generated web service that runs for a ruleset
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.
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.
-
Appreciation or Negative feedback from Microsoft
-
Quality of Service for converged networks
-
Prioritization of traffic based on COS or TOS values
-
None of above
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.
-
Engine that powers Microsoft’s Software Plus Services strategy
-
Engine that provides Incident management to online services
-
Engine that helps Microsoft to define strategies under MOF
-
None of the above
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).
-
simple
-
two tier
-
n tier
-
client server
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.
-
Applications
-
Infrastructure
-
Resources
-
Value
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.
-
Throttling
-
Service Orchestration
-
Service Pooling
-
Service Aggregation
C
Correct answer
Explanation
Service Pooling manages endpoints with failover logic, ensuring service availability when endpoints fail. Throttling controls request rates, orchestration coordinates services, and aggregation combines services.
-
Throttling
-
Service Orchestration
-
Service Pooling
-
Service Aggregation
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.
-
Throttling
-
Service Orchestration
-
Service Pooling
-
Service Aggregation
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.
-
Applications
-
Infrastructure
-
Resources
-
Value
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.
-
DataSynanpses Grid Server
-
Windows Hosted App
-
The same server as Web App
-
Parallel platform with SG service
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.
-
DataSynanpses
-
Safari
-
Mapak
-
TCS Inbuilt
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.
-
$RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog Application, $computername $RemoteAppLog.Clear()
-
$RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Remove()
-
$RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Delete()
-
$RemoteAppLog = New-Object -TypeName System.Diagnostics.EventLog MyLog,$computername $RemoteAppLog.Clear()
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).
-
Data Warehouse Write Account
-
Data Reader Account
-
Action account
-
SDK
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.