多选题A company has a business application that provides its users with many different reports: receivables reports, payables reports, revenue projects, and so on. The company has just purchased some new, state-of-the-art, wireless printers, and a programmer

题目
多选题
A company has a business application that provides its users with many different reports: receivables reports, payables reports, revenue projects, and so on. The company has just purchased some new, state-of-the-art, wireless printers, and a programmer has been assigned the task of enhancing all of the reports to use not only the company's old printers, but the new wireless printers as well. When the programmer starts looking into the application, the programmer discovers that because of the design of the application, it is necessary to make changes to each report to support the new printers. Which two design concepts most likely explain this situation?()
A

Inheritance

B

Low cohesion

C

Tight coupling

D

High cohesion

E

Loose coupling

F

Object immutability

参考答案和解析
正确答案: B,F
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

听力原文:Although the said company is a sun-rising firm, its accounting management should be improved before the loan is extended to it.

(9)

A.The company is a sun-rising firm so it is worthwhile to extend the loan.

B.The company has some accounting problems, some improvement is needed.

C.The company is short of funds because it is sun-rising.

D.The company has some accounting problems because it is sun-rising.


正确答案:B
解析:单句意思为“尽管我们谈及的企业是成长性企业,但是在我们贷款给对方之前,它应该要完善它的财务会计管理。”

第2题:

An administrator receives reports from users in an office that their 802.11g wireless connectivityhas been problematic since the installation of the new wireless phone system.At which of the following frequencies are both systems operating at to cause this issue?()

A.2.4GHz

B.900MHz

C.1.1GHz

D.5GHz


参考答案:A

第3题:

Mr. Cook has not commented ________these reports.

A.in

B.of

C.with

D.on


正确答案:D

第4题:

A company has a corporate office building that is used by 50 to 100 unique visitors each day for meetings. Users routinely report that they are unable to access the network with their laptops when visiting this location. The help desk reports that these users are not getting IP addresses automatically assigned. After an investigation, the server administrator has determined that the DHCP service is functioning, but a minimal number of addresses are available for lease. The building is on its own class Csubnet and has 250 addresses in the scope.  Which of the following represents a long term solution tothe problem?()

  • A、 Manually delete address leases from DHCP.
  • B、 Create reservations in DHCP for users frequently visiting this location.
  • C、 Assign static IP addresses to visiting laptops.
  • D、 Reduce the lease duration in the DHCP scope options to one day.

正确答案:D

第5题:

You want to create a template to be used as a standard for all company reports, which are many different styles. How many different templates must you have if you plan to use multiple report styles?()

  • A、Two 
  • B、One 
  • C、One per report style
  • D、One per report style + one more

正确答案:B

第6题:

A company that makes Computer Assisted Design (CAD) software has, within its application, some utility classes that are used to perform 3D rendering tasks. The company‘s chief scientist has just improved the performance of one of the utility classes‘ key rendering algorithms, and has assigned a programmer to replace the old algorithm with the new algorithm. When the programmer begins researching the utility classes, she is happy to discover that the algorithm to be replaced exists in only one class. The programmer reviews that class‘s API, and replaces the old algorithm with the new algorithm, being careful that her changes adhere strictly to the class‘s API. Once testing has begun, the programmer discovers that other classes that use the class she changed are no longer working properly.What design flaw is most likely the cause of these new bugs?()

A.Inheritance

B.Tight coupling

C.Low cohesion

D.High cohesion

E.Loose coupling

F.Object immutability


参考答案:B

第7题:

You are the administrator of a SQL Server 2000 computer. Your company purchased an accounting application from a vendor. The application stores its data in a database named Accounting on the server. The tables in this database contain columns that function as primary keys, but PRIMARY KEY and FOREIGN KEY constraints are not used.

You need to replicate data from this database to another SQL Server computer. This server will use the replicated data to generate reports. Most reports will run each month, but the accounting department needs to have the ability to run reports at any time. Reports should be accurate through the last full working day.

You cannot make any changes to the database, but you need to implement replication. Which two actions should you take? (Each correct answer presents part of the solution. Choose two)

A.Implement merge replication.

B.Implement snapshot replication.

C.Implement transactional replication.

D.Schedule replication to run continuously.

E.Schedule replication to run during off-peak hours.


正确答案:BE
解析:Explanation:
B: Snapshot replication is the best solution since we will not be making changes to the Accounting database but need to replicate data from the database to another SQL Server computer and as the accounting department needs to have the ability to run reports that only need to be accurate through the last full working day.

E: Only one snap-shot replication would be necessary per day, and to make as little impact on the daily use of the server this replication should be scheduled during off-peak hours.

Note: SQL Server 2000 provides three types of replication that can be used in distributed applications. These are snapshot replication, transactional replication and merge replication. Each type provides different capabilities.

Snapshot replication is the process of copying and distributing data and database objects exactly as they were at the time the snapshot was taken. Snapshot replication does not require continuous monitoring of changes because changes made to published data are not propagated to the Subscriber incrementally. Subscribers are updated with a complete data set and not individual transactions. As snapshot replication replicates an entire data set at one time, it may take longer to propagate data modifications to Subscribers. This type of replication in helpful in situations when data is mostly static and does not change often; it is acceptable to have copies of data that are out of date for a period of time; replicating small volumes of data; and when sites are often disconnected and high latency (the amount of time between when data is updated at one site and when it is updated at another) is acceptable.

In transactional replication, an initial snapshot of data is propagated to Subscribers, and then when data modifications are made at the Publisher, the individual transactions are captured and propagated to Subscribers. SQL Server 2000 monitors INSERT, UPDATE, and DELETE statements, and changes to stored procedure executions and indexed views. SQL Server 2000 stores the transactions affecting replicated objects and then it propagates those changes to Subscribers continuously or at scheduled intervals. Transaction boundaries are preserved. Transactional replication is used when data modifications must be propagated to Subscribers, often as they occur; transactions must be atomic; subscribers are mostly connected to the Publisher and when the application will not tolerate high latency for Subscribers receiving changes.

Merge replication allows various sites to work autonomously and merge data modifications made at multiple sites into a single, uniform. result at a later time. The initial snapshot is applied to Subscribers and then SQL Server 2000 tracks changes to published data at the Publisher and at the Subscribers. The data is synchronized between servers either at a scheduled time or on demand. Updates are made independently at more than one server, so the same data may have been updated by the Publisher or by more than one Subscriber. Therefore, conflicts can occur when data modifications are merged. This type of replication is helpful when multiple Subscribers need to update data at various times and propagate those changes to the Publisher and to other Subscribers; Subscribers need to receive data, make changes offline, and synchronize changes later with the Publisher and other Subscribers; the application latency requirement is either high or low, and when site autonomy is critical.

Incorrect Answers:
A: No data at the second server will not be changed so there is no need to use merge replication.

C: We don’t need the accuracy of transactional replication. In this scenario high latency is permissible as the reports must be accurate only through the last full working day.

Note: Transactional replication is used when data modifications must be propagated to Subscribers, often as they occur; transactions must be atomic; subscribers are mostly connected to the Publisher and when the application will not tolerate high latency for Subscribers receiving changes.

D: As the reports must be accurate through the last full working day, it not necessary to run replication continuously. Running replication continuously will place locks on the destination database, which would hamper the performance of queries and actions run against the destination database.

第8题:

ALIBABA SEEKS TO RAISE BILLIONS IN IPO Investors in the United States are preparing for the first public sale of stock in the Chinese company Alibaba. The company sells goods________ linking buyers and sellers in the huge Chinese online market. Alibaba is expected to ________ its initial public offering, called an IPO, in September on the New York Stock Exchange. The total value of the company, based in Hangzhou, has been estimated at about $200 billion. Reports from Bloomberg News say Alibaba is offering investors a 12 percent ________ of the company. That would mean the company could raise ________ $20 billion dollars in the public stock sale. After the IPO, Alibaba could become one of the most ________ technology companies in the world. Apple, for example, has a market value of about $600 billion. Google is valued at about $390 billion and Microsoft is worth about $370 billion.


参考答案:by; make; share; as much as; valuable

第9题:

A company has a business application that provides its users with many different reports: receivables reports, payables reports, revenue projects, and so on. The company has just purchased somenew, state-of-the-art, wireless printers, and a programmer has been assigned the task of enhancing all ofthe reports to use not only the company’s old printers, but the new wireless printers as well. When the programmer starts looking into the application, the programmer discovers that because of the design of theapplication, it is necessary to make changes to each report to support the new printers. Which two designconcepts most likely explain this situation? ()

  • A、Inheritance
  • B、Low cohesion
  • C、Tight coupling
  • D、High cohesion
  • E、Loose coupling
  • F、Object immutability

正确答案:B,C

第10题:

The Business Partner technical specialist is called to determine if the addition of host ports on an IBM System Storage DS8700 has improved users’ response times for an IBM System p server running SAP.  How can the improvement be verified()

  • A、check the output of the "vmstat" command on LINUX
  • B、check the performance reports via Tivoli Storage Productivity Center for Data
  • C、check the performance reports via Tivoli Storage Productivity Center for Disk
  • D、check the output of the "iostat" command on AIX

正确答案:C

更多相关问题