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 operating systems
  1. True

  2. False

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

Ubuntu Cloud (formerly Ubuntu Enterprise Cloud) was designed to help organizations build private clouds using Ubuntu Server on their own hardware, using Eucalyptus as the cloud computing platform initially. This allows running a cloud infrastructure similar to AWS but on private hardware. The statement is accurate.

Multiple choice technology web technology
  1. Repository

  2. Server

  3. Workspace

  4. Topology

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

A SharePoint farm refers to the topology or arrangement of servers working together - including web servers, application servers, and database servers. It is not a single repository, server, or workspace, but a distributed server architecture that provides scalability and redundancy.

Multiple choice technology
  1. True

  2. False

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

APIs are fundamental to modern DevOps and cloud infrastructure. They can be used to deploy applications, monitor system health, manage database clusters, and migrate workloads to different servers. REST APIs, GraphQL, and vendor-specific APIs (AWS API, Azure REST API, etc.) provide all these capabilities.

Multiple choice technology testing
  1. Project team should have gone for a failover architecture like 2 servers of 12 CPU, 12 GB RAM instead of single server

  2. Project team trusted server vendor who guaranteed excellent performance and scalability

  3. Project team overlooked the fact that results derived on a single CPU machine cannot be extrapolated to 24 CPU servers

  4. It's sheer bad luck that the application crashed; there's no mistake, at least they tried

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

Concurrency issues, memory leaks, and CPU resource contention on multi-core systems cannot be predicted by scaling down data on a single-CPU machine. Results from a single-core environment do not extrapolate linearly to highly parallel 24-CPU systems under heavy production load.

Multiple choice technology testing
  1. Service as functionality

  2. Functionality as service

  3. Software as service

  4. Infrastructure as service

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

SOA (Service-Oriented Architecture) delivers functionality as services - reusable business capabilities accessible via standard interfaces. This shifts from monolithic applications to composable services. 'Software as service' refers to SaaS delivery model, while 'Infrastructure as service' is cloud computing.

Multiple choice technology testing
  1. Security

  2. Reliability

  3. Interoperability

  4. Efficiency

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

The primary goal of web services is interoperability - enabling different applications and systems to communicate regardless of their underlying platforms or languages. While security and reliability are important, they are quality attributes, not the fundamental purpose. Efficiency is often traded for interoperability.

Multiple choice technology programming languages
  1. Simple Server Topology

  2. Complex server Topology

  3. Moderate server topology

  4. Hybrid Topology

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

Complex server topology in TFS uses multiple servers configured in clusters or failover arrangements to host both the data tier (databases) and application tier (TFS application servers). This provides high availability and redundancy - if one server fails, another takes over. Simple topology uses a single server, while moderate separates data and application tiers without clustering.

Multiple choice technology web technology
  1. Business Delegate

  2. Session Façade

  3. Transfer Object

  4. None of the above

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

Session Facade provides coarse-grained access to the business tier by encapsulating fine-grained business components and presenting a simplified, unified interface to clients. Business Delegate provides client-side abstraction, and Transfer Object is for data transfer. Session Facade is specifically designed for coarse-grained business tier access.

Multiple choice technology web technology
  1. to create Web sites for information sharing and document collaboration

  2. to create Web sites for sharing information publicly

  3. to create Windows applications to share secured information

  4. to create Windows apllication for mailing within an organisation

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

Windows SharePoint Services (WSS) provides web-based collaboration sites where teams can share information and documents. Option A correctly describes WSS's core purpose - creating sites for internal information sharing and document collaboration within an organization. Options mentioning 'publicly', 'Windows applications', or 'mailing' are incorrect descriptions of WSS functionality.

Multiple choice technology platforms and products
  1. True

  2. False

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

The statement correctly distinguishes between Windows SharePoint Services (WSS) and SharePoint Portal Server (SPS). WSS provides the platform for creating individual team collaboration sites, while SPS (the precursor to MOSS) connects these sites, people, and business processes at an organizational level, enabling enterprise-wide knowledge sharing and portal functionality.

Multiple choice technology architecture
  1. Loosely cohesive

  2. Support remote procedure calls

  3. Platform independent

  4. Loosely coupled

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

Web services are characterized as loosely coupled (minimal dependencies between services), NOT loosely cohesive. Cohesion refers to how related the functionality within a single module is - web services aim for HIGH cohesion internally, while being loosely coupled from each other. The question asks which is NOT a characteristic, making 'loosely cohesive' the correct answer because it misstates the standard principle.

Multiple choice technology platforms and products
  1. Resilience

  2. Failover

  3. Recovery

  4. All the Above

  5. None of the above

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

High availability systems require multiple components to ensure continuous operation. Resilience allows the system to recover from failures, failover provides automatic switching to backup systems, and recovery procedures restore normal operations after an outage. All three (Resilience, Failover, Recovery) are fundamental components of a high-availability architecture.