172
98k

1120+ Cloud Computing Solved MCQs

These multiple-choice questions (MCQs) are designed to enhance your knowledge and understanding in the following areas: Computer Science Engineering (CSE) , Information Technology Engineering (IT) , Bachelor of Science in Computer Science TY (BSc CS) , Bachelor of Computer Applications (BCA) , Master of Science in Information Technology (MSc IT) .

401.

Tomcat doesn’t support JAX-WS by itself.

A. true
B. false
Answer» A. true
402.

CXF represents the consolidation of the Celtix and XFire projects, which each had useful SOAP support.

A. true
B. false
Answer» A. true
403.

Factory to use our Spring bean as the implementation:-

A. jaxws:end
B. jaxws:endpoint
C. all of the mentioned
D. none of the mentioned
Answer» B. jaxws:endpoint
404.

client() class provides                  to create topics.

A. software
B. classes
C. methods
D. batch
Answer» C. methods
405.

                 method publishes messages to pub/sub.

A. client()
B. publish()
C. server()
D. batch()
Answer» B. publish()
406.

How many arguments are accepted by publish()?

A. 5 arguments
B. 3 arguments
C. 1 argument
D. 2 arguments
Answer» D. 2 arguments
407.

Does publish() method accepts arbitrary arguments.

A. true
B. false
Answer» A. true
408.

The topic in the publish method is in which form?

A. binomial form
B. canonical form
C. nominal form
D. message form
Answer» B. canonical form
409.

The message in pub/sub is an opaque blob of                  

A. bits
B. bytes
C. word
D. nibble
Answer» B. bytes
410.

                 error will show if we try to send text string instead of bytes.

A. typeerror
B. error
C. linker error
D. compiler error
Answer» A. typeerror
411.

What do we call string in python 2?

A. str
B. unicode
C. strs
D. unicades
Answer» B. unicode
412.

When you publish a message                  is automatically created?

A. client
B. server
C. batch
D. server
Answer» C. batch
413.

When the batch is created, it begins a countdown that publishes the batch once sufficient time has elapsed.

A. true
B. false
Answer» A. true
414.

What is the time elapsed after a batch is created?

A. 0.5 seconds
B. 0.05 seconds
C. 1.5 seconds
D. 1 second
Answer» B. 0.05 seconds
415.

Every call to publish() will return a class that conforms to the                      interface.

A. batch
B. client
C. server
D. future
Answer» D. future
416.

Point out the wrong statement.

A. abstraction enables the key benefit of cloud computing: shared, ubiquitous access
B. virtualization assigns a logical name for a physical resource and then provides a pointer to that physical resource when a request is made
C. all cloud computing applications combine their resources into pools that can be assigned on demand to users
D. all of the mentioned
Answer» C. all cloud computing applications combine their resources into pools that can be assigned on demand to users
417.

Which of the following type of virtualization is also characteristic of cloud computing?

A. storage
B. application
C. cpu
D. all of the mentioned
Answer» D. all of the mentioned
418.

Point out the correct statement.

A. a client can request access to a cloud service from any location
B. a cloud has multiple application instances and directs requests to an instance based on conditions
C. computers can be partitioned into a set of virtual machines with each machine being assigned a workload
D. all of the mentioned
Answer» D. all of the mentioned
419.

Which of the following software can be used to implement load balancing?

A. apache mod_balancer
B. apache mod_proxy_balancer
C. f6’s bigip
D. all of the mentioned
Answer» B. apache mod_proxy_balancer
420.

Which of the following network resources can be load balanced?

A. connections through intelligent switches
B. dns
C. storage resources
D. all of the mentioned
Answer» D. all of the mentioned
421.

Which of the following is a more sophisticated load balancer?

A. workload managers
B. workspace managers
C. rackserve managers
D. all of the mentioned
Answer» A. workload managers
422.

A              is a combination load balancer and application server that is a server placed between a firewall or router.

A. abc
B. acd
C. adc
D. all of the mentioned
Answer» C. adc
423.

Which of the following should be replaced with the question mark in the following figure?

A. abstraction
B. virtualization
C. mobility pattern
D. all of the mentioned
Answer» B. virtualization
424.

In memory-mapped I/O                          

A. the i/o devices and the memory share the same address space
B. the i/o devices have a separate address space
C. the memory and i/o devices have an associated address space
D. a part of the memory is specifically set aside for the i/o operation
Answer» A. the i/o devices and the memory share the same address space
425.

The usual BUS structure used to connect the I/O devices is                        

A. star bus structure
B. multiple bus structure
C. single bus structure
D. node to node bus structure
Answer» C. single bus structure
426.

In intel’s IA-32 architecture there is a separate 16 bit address space for the I/O devices.

A. false
B. true
Answer» B. true
427.

The advantage of I/O mapped devices to memory mapped is                        

A. the former offers faster transfer of data
B. the devices connected using i/o mapping have a bigger buffer space
C. the devices have to deal with fewer address lines
D. no advantage as such
Answer» C. the devices have to deal with fewer address lines
428.

The system is notified of a read or write operation by                        

A. appending an extra bit of the address
B. enabling the read or write bits of the devices
C. raising an appropriate interrupt signal
D. sending a special signal along the bus
Answer» D. sending a special signal along the bus
429.

To overcome the lag in the operating speeds of the I/O device and the processor we use                        

A. buffer spaces
B. status flags
C. interrupt signals
D. exceptions
Answer» B. status flags
430.

The method of synchronising the processor with the I/O device in which the device sends a signal when it is ready is?

A. exceptions
B. signal handling
C. interrupts
D. dma
Answer» C. interrupts
431.

The method which offers higher speeds of I/O transfers is                        

A. interrupts
B. memory mapping
C. program-controlled i/o
D. dma
Answer» D. dma
432.

The process wherein the processor constantly checks the status flags is called as

A. polling
B. inspection
C. reviewing
D. echoing
Answer» A. polling
433.

Which of the following is incorrect?

A. a layered-style program is divided into an array of modules or layers
B. each layer provides services to the layer “below” and makes use of services provided by the layer “above”
C. all of the mentioned
D. none of the mentioned
Answer» B. each layer provides services to the layer “below” and makes use of services provided by the layer “above”
434.

What is Relaxed Layered Style?

A. each layer can be constrained to use only the layer directly below it
B. sometimes this constraint is relaxed slightly to allow each layer to use all the layers below it
C. all of the mentioned
D. none of the mentioned
Answer» B. sometimes this constraint is relaxed slightly to allow each layer to use all the layers below it
435.

Which of the following is correct?

A. module a uses module b if a correct version of b must be present for a to execute correctly
B. module a calls (or invokes ) module b if b triggers execution of a
C. all of the mentioned
D. none of the mentioned
Answer» A. module a uses module b if a correct version of b must be present for a to execute correctly
436.

Which of the following is true with respect to layered architecture?

A. each layer is allowed to depend on the layer above it being present and correct
B. a layer may call other layers above and below it, as long as it uses them
C. all of the mentioned
D. none of the mentioned
Answer» D. none of the mentioned
437.

What is Onion diagram illustrates?

A. it illustrates the connection between the layers in communications protocols, such as the international standards organization open systems interconnection (iso osi) model,or the layers in user interface and windowing systems, such as the x window system
B. it often illustrates operating system layers, with the kernel at the core
C. all of the mentioned
D. none of the mentioned
Answer» D. none of the mentioned
438.

In particular, layers have which of the following characteristics?

A. layers are by definition highly cohesive, thus satisfying the principle of cohesion
B. layers doesn’t support information hiding
C. layers are constrained to use only above layers
D. all of the mentioned
Answer» A. layers are by definition highly cohesive, thus satisfying the principle of cohesion
439.

What are the drawbacks for Layers?

A. it is often necessary to pass data through many layers, which can slow performance significantly
B. layers support information hiding
C. multi-layered programs can be hard to debug because operations tend to be implemented through a series of calls across layers
D. none of the mentioned
Answer» C. multi-layered programs can be hard to debug because operations tend to be implemented through a series of calls across layers
440.

Which of the following is correct?

A. layers are not strongly coupled to the layers above them
B. each layer is strongly coupled only to the layer immediately below it
C. overall layered-style architectures are loosely coupled
D. all of the mentioned
Answer» D. all of the mentioned
441.

Which of the following is one of the unique attributes of Cloud Computing?

A. utility type of delivery
B. elasticity
C. low barrier to entry
D. all of the mentioned
Answer» D. all of the mentioned
442.

Point out the correct statement.

A. service level agreements (slas) is small aspect of cloud computing
B. cloud computing does not have impact on software licensing
C. cloud computing presents new opportunities to users and developers
D. all of the mentioned
Answer» C. cloud computing presents new opportunities to users and developers
443.

Applications that work with cloud computing that have low margins and usually low risk are                            

A. high touch
B. low touch
C. moderate touch
D. all of the mentioned
Answer» B. low touch
444.

A service that concentrates on hardware follows the                    as a Service model.

A. iaas
B. caas
C. paas
D. all of the mentioned
Answer» A. iaas
445.

Point out the wrong statement.

A. a cloud is defined as the combination of the infrastructure of a datacenter with the ability to provision hardware and software
B. high touch applications are best done on- premises
C. the google app engine follows iaas
D. none of the mentioned
Answer» C. the google app engine follows iaas
446.

When you add a software stack, such as an operating system and applications to the service, the model shifts to            model.

A. saas
B. paas
C. iaas
D. all of the mentioned
Answer» A. saas
447.

Which of the following is the most refined and restrictive service model?

A. iaas
B. caas
C. paas
D. all of the mentioned
Answer» C. paas
448.

               is a pay-as-you-go model matches resources to need on an ongoing basis.

A. utility
B. elasticity
C. low barrier to entry
D. all of the mentioned
Answer» A. utility
449.

               feature allows you to optimize your system and capture all possible transactions.

A. scalability
B. reliability
C. elasticity
D. none of the mentioned
Answer» C. elasticity
450.

               enables batch processing, which greatly speeds up high-processing applications.

A. scalability
B. reliability
C. elasticity
D. utility
Answer» A. scalability

Done Studing? Take A Test.

Great job completing your study session! Now it's time to put your knowledge to the test. Challenge yourself, see how much you've learned, and identify areas for improvement. Don’t worry, this is all part of the journey to mastery. Ready for the next step? Take a quiz to solidify what you've just studied.