A developer is asked to write negative tests as part of the unit testing for a method that calculates a person's age based on birth date. What should the negative tests include

Answers

Answer 1

Answer:

"Verify that the method rejects the future dates" is the correct answer.

Explanation:

In the given statement some information is missing, that is options of the question:

A) Taking the unit test with a custom exception.

B) Verify that the system accepts a null value.

C) Verify that the method accepts the past dates

D) Verify that the method rejects the future dates

Negative tests also stands for validation that check software can accommodate incorrect feedback on user actions gracefully. This testing indicates the program properly treats erroneous user behavior. It does not accepts unexpected input, and other options are wrong that can be described as follows:

In option A, It is not correct because this process does not verify the method.Option B and Option C are wrong because both options do not test negative input.
Answer 2

Final answer:

Negative tests for calculating a person's age should include testing with future birth dates, non-date values, incorrect date formats, exceptionally high age results, and null or empty inputs to ensure the robustness of the application.

Explanation:

A developer asked to write negative tests for a method that calculates a person's age based on their birth date should consider scenarios where the input is incorrect, incomplete, or unexpected. Negative testing is essential for ensuring that the method can handle invalid input gracefully without crashing or giving incorrect output.

Here are some examples of inputs that could be used for negative tests:

Providing a birth date that is in the future

Using non-date values, such as strings or special characters

Entering a date format that the method is not designed to handle

Inputting birth dates that would result in ages that are exceptionally high and unrealistic

Submitting a null or empty input for the birth date


Related Questions

Cisco has created a proprietary layer 2 protocol used to manage VLAN configuration between switches called:________a. VLAN Configuration Protocolb. VLAN Tracking Protocolc. VLAN Creation Protocold. Auto VLAN Configuration Protocole. None of the above

Answers

Answer:

The correct answer is letter "E": None of the above.

Explanation:

The VLAN Trunking Protocol (VTP) provides an easy way of keeping an accurate VLAN configuration through a commuted network. The VTP allows solutions of commuted network easily scalable to other dimensions, reducing the need of manually setting up the red. The VTP composed of a layer 2 protocol used to manage VLAN setups between switches.

You’ll need to implement a method called String getWinner(String user, String computer) that determines whether the user or computer won the game, and return the correct winner!

Answers

Answer:

The solution code is written in Java.

String getWinner(String user, String computer) {        if(status == x) {            return user;        }        else {            return computer;        }    } String winner = getWinner("User_X", "Comp_X");

Explanation:

A method getWinner() that take two parameters, user and computer, is written (Line 1 - 8). This method presumes that there is a global variable, status. This status variable holds the value that will decide if method should return either user or computer name as winner (Line 3, 5).

Line 10 shows a statement that implement the getWinner() method.

The proper syntax for the cp command is _____ Select one: a. cp destination b. None of These c. cp filename.txt destination d. filename.txt destination

Answers

Answer:

The correct answer to the following question will be Option C (cp filename.txt destination).

Explanation:

The command cp is a control-line tool for folder and directory copying. This allows transferring one or more documents or folders with tools for backup-taking and attributes protection.

The general syntax of using the cp command is:

cp SOURCE file DESTINATION file

For example:

cp firstname.txt destination

here, firstname.txt is source file name and destination is the destination file name.

Option A, option D doesn't follow the general syntax of cp command that's why these options are incorrect, therefore, option C is the right answer.

Write a program that calculates the occupancy rate for each floor of a hotel. The program should start by asking for the number of floors the hotel has. A loop should then iterate once for each floor. During each iteration, the loop should ask the user for the number of rooms on the floor, and how many of them are occupied. After all the iterations, the program should display the number of rooms the hotel has, the number that are occupied, the number that are vacant, and the occupancy rate for the hotel. Input Validation: Do not accept a value less than 1 for the number of floors. Do not accept a number less than 10 for the number of rooms on a floor.

Answers

Answer:

# User is prompted to enter the number of floor in hotel

# The received value is assigned to no_of_floor

no_of_floor = int(input("Enter the number of floor in the hotel."))

# This loop is to enforce that user input is not less than 1

while (no_of_floor < 1):

   no_of_floor = int(input("Enter the number of floor in the hotel."))

# counter variable is initialized to loop through the no_of_floor

counter = 1

# total number of rooms occupied in the hotel is initialized to 0

total_occupied = 0

# total number of rooms vacant in the hotel is initialized to 0

total_vacant = 0

# total number of rooms in the hotel is initialized to 0

total_room = 0

# loop through each floor

while counter <= no_of_floor:

   # number of room in a floor is received from user

   number_of_room = int(input("Enter the number of room in floor: "))

   # this loop ensure that the number must not be less than 10

   while (number_of_room < 10):

       number_of_room = int(input("Enter the number of room in floor "))

   # number of occupied room is a floor is accepted from user

   number_of_occupied = int(input("Enter the number of occupied room."))

   # this loop ensure that the no_of_occupied is less than no_of_room

   while (number_of_occupied > number_of_room):    

       number_of_occupied = int(input("Enter the number of occupied room."))

   

   # number of vacant room in a floor is calculated

   floor_vacant = number_of_room - number_of_occupied

   # total number of occupied room is calculated

   total_occupied += number_of_occupied

   # total room in the hotel is calculated

   total_room += number_of_room

   # total number of vacant room is calculated

   total_vacant += floor_vacant

   # the counter is increment to move to the next floor

   counter += 1

# occupancy_rate is calculated as a percentage

occupancy_rate = (total_occupied / total_room) * 100

# Number of total room is displayed

print("The total number of room in the hotel is: ", total_room)    

# Number of total vacant room is displayed

print("The number of vacant room in the hotel is: ", total_vacant)

# Number of total occupied room is displayed

print("The total number of occupied room in the hotel is: ", total_occupied)

# The occupancy rate for the hotel is displayed to 2 decimal

#  place percent

print("The occupancy rate for the hotel is: {:.2f}%".format(occupancy_rate))

Explanation:

The program is well commented. It put all the constraint into consideration like:

not allowing a user to enter less than 1 for number of floorsnot allowing a user to enter less than 10 for number of rooms in a floornot allowing a user to enter number of occupied room greater than number of room in a floor.

Universal Containers is setting up an external Business Intelligence (BI) system and wants to extract 1,000,000 Contact records. What should be recommended to avoid timeouts during the export process?A. using the soap API to export dataB. utilise the bulk API to export the dataC. use GZIP compression to export the data

Answers

Answer:

C. use GZIP compression to export the data

Explanation:

GZIP compression is used to improve transfer speed trough network.

GZIP compression enables smaller file sizes, which leads extracting faster.

GZIP compression is also used for server-side webpages, so that the webpage is uploaded faster.

Once data is compressed with GZIP, it is decompressed by the same application after transmission.

If you reformat the hard drive on a computer, it erases all personal information from your computer and makes it safe to donate. True False

Answers

The answer would be false

An easy way to validate configuration is to use an Oracle version of the TCP/IP ping utility, called

Answers

Answer:

TNSPING

Explanation:

tnsping is a utility, this helps us to determine the service on an Oracle Net network can be reached successfully.

If you want to connect between a client and server, we can use the tnsping utility, in this case, we're going to receive an estimated time around the trip in milliseconds it takes to reach the Oracle service, if it fails, we're going to receive an error message.

Write a while loop that prints

A. All squares less than n. For example, if n is 100, print 0 1 4 9 16 25 36 49 64 81.

B. All positive numbers that are divisible by 10 and less than n. For example, if n is 100, print 10 20 30 40 50 60 70 80 90

C. All powers of two less than n. For example, if n is 100, print 1 2 4 8 16 32 64.

Answers

Answer:

# include <iostream>

#inlcude<conio.h>

using namespace std;

main()

{

int n,x;

cout<<"Enter Value of n"

cin>>n;

x=0;

while (x<n)

{

cout<< "Square of Value "<<x^2;

if (x%10==0)

{

cout <<x;

}

cout<<"2^"<<x<<"="<< 2^x;

x++;

}

getch();

}

The git _____ command will display the last commit and what were the changes you made.

Answers

Answer:

Log

Explanation:

The git log command enables you to display a list of all of the commits on your current branch

"to store and manage the databases of the client/server system, each server requires what"

Answers

Answer:

A Data Base Management System (DBMS)

Explanation:

Databases refer to organized data collection mostly stored and accessed by computers and other electronic systems/devices. In other to effectively store, retrieve, manipulate/change data items in a database, a software package called a Data Base Management System (DBMS) is required. This software allows the manipulation, retrieval and general management of the data in the database. popular examples of DBMS are MySQL and Microsoft SQL Server. Therefore in a client/server system as stated in the this question, each server will require a DBMS installed to allow interaction with users and other applications, in order to capture, store, and manage data.

You are working as a Software Programmer for one of the big retail company. You need to implement the program that can store at least 15 customer information using the Array concept. You need to implement the individual array to store each of below field. CustomerName CustomerAddress1 City State Zip Once the data is stored in the array, then you need to loop thru the entire zip loop and print all the zip code on the command line.

Answers

Answer:

The C++ code is given below with appropriate comments. Random names of customer information are chosen as samples

Explanation:

#include <iostream>

using namespace std;

int main()

{

// Initialize String Arrays for customerName,customerAddress1,city,state,zip for 15 customers

string customerName[15] = {"Liam","Noah","William","James","Logan","Benj","Mason","Elijah","John","Patty","Cheryl","Nick","Brian","Steve","mark"};

string customerAddress1[15] = {"Liam - Address1","Noah - Address2","William - Address3","James - Address4","Logan - Address5","Benjamin - Address6","Mason - Address7","Elijah - Address8","John - Address9","Patty - Address10","Cheryl - Address11","Nick - Address12","Brian - Address13","Steve - Address14","mark - Address15"};

string city[15] = {"Sitka","Juneau","Wrangell","Anchorage","Jacksonville","Anaconda","Oklahoma City","Fort Worth","Dallas","Sitka","Juneau","Wrangell","Anchorage","Jacksonville","Anaconda"};

string state[15] = {"Alaska","Alaska","Alaska","Alaska","Florida","Montana","Montana","Oklahoma","Texas","Arizona","Tennessee","California","Virginia","Indiana","Virginia"};

int zip[15] = {30041,36602,75062,78952,12071,55874,11236,44512,55262,99874,11020,55820,11304,11587,11047};

// Print Zips for the customers

cout <<"Customer Names"<<"\t"<< "Zip Code"<< "\n";

for (int i = 0; i < 15; i++)

cout <<customerName[i]<<"\t\t\t"<< zip[i] << "\n";

}

What do you call the process of translating statements written by a developer? What is the result of this process?

Answers

Answer:

The translator is the software that is called to translate the statement written by the developer and the result of the process is machine code which can be understood by the computer system.

Explanation:

A translator is a software or processor which is responsible to convert the code into machine-executable language or machine code or binary language. This language is made up of 0 and 1.There are so many translators which are specific for any particular language. For example assembler and compiler.The above question wants to ask about the process which is used for translating a statement written by a developer which is a translator and the result of this process is machine code which is understood by the computer system.

What value is used to tell the OS which application running on the computer is to receive a request from a client computer?

Answers

Answer:

Port Number

Explanation:

Port numbers provide applications in a computer to share network.

Computer operating systems can handle network traffic, incoming and outgoing requests using port numbers.

This is managed by assigning each application to a different port number. Port numbers together with IP addresses identify network traffic.

A website updated daily could be considered _____. a. authoritative b. objective c. accurate d. timely

Answers

Answer:

option C: accurate

Explanation:

this is because daily updated website contains the up to date information.

What is a message called that is delivered by TCP? What is a message called that is delivered by UDP? At which layer do the two protocols work?

Answers

Answer:

Transmission Control Protocol is a Transport Layer protocol.  This protocol is connection oriented which means that a connection is set up before the data packets are transmitted between the source and destination host which is a very reliable way of data transmission.The connection is established between the source and the destination, after this the data is transmitted between them and lastly the connection is ended or terminated after the data transmission.The packet or a messages that is delivered by TCP is called segment.Basically TCP divides the data into small parts or chunks which are called segments. The segment has a header and data section. The segment header is further divided into the following parts.Source port (sending port), destination port (receiving port), sequence number which is allocated to the first byte in the segment so that if the segments at the destination are sent out of order then it will help to rearrange these segments, Acknowledgement Number is number that the acknowledgement number sender expects to receive, header length, control flags which are used to control connection set up, connection termination and flow control, window size that a sender is ready to receive, Checksum field enables error control, Urgent pointer which is used to refer to data that is urgently needed to reach the receiving phase as soon as possible.  User Datagram Protocol (UDP) is a Transport Layer protocol and a part of Internet Protocol suite. This protocol is connection-less which means there  is no need to establish a connection between source host and destination host prior to the transmission of data which is an unreliable data transmission way. The message in UDP is called datagram . Unlike TCP segments there is no need to consider the order in which datagrams are sent or received. Datagram has a header part which contains routing information a data section which shows the data to be transmitted. Header has source port, destination port, checksum and length fields.TCP and UDP protocols work in Transport Layer. This layer is responsible for end to end delivery of data between source and destination hosts. It ensures reliable data transmission and manages flow control and also ensures that packets reach in the right order in which they were sent.

Thus, the message given by TCP segments.

TCP segments:

The message delivered by UDP is a datagram. The layer where protocol works is the transport layer. Transport layer header addresses in order to receive an application by a number called port number.

If the message is very large that cannot be transported over the network, then transmission control protocol (TCP) is used for dividing it into smaller messages called segments. The message in user datagram protocol (UDP) is known as a datagram.

Learn more about the topic TCP segments:

https://brainly.com/question/14975207

What happens when you position the mouse cursor over an edge or corner of a bounding box that has sizing handles?

Answers

Answer:

The cursor changes to a two edged arrow pointer and the bounding box is highlighted.

Explanation:

Bounding boxes in windows operating system is a boundary line of the windows box that run that runs applications and other utilities in the system. A sizing handle is a tool used in place of a the minimize and maximize button on top of the windows box. It is found on the bottom right edge of the windows box.

When a cursor points to the sizing handle, the cursor changes to a double edge arrow pointer and the bounding box is highlighted, and can be resized on the screen.

Answer:

The correct answer is: the cursor changes to a two edged arrow pointer.

Explanation:

Sizing handles allow users to resize objects -typically windows- at will by placing the cursor over one of the corners of the object. A double edge arrow will replace the cursor. The user will have to left-click the mouse and drag the sizing handle to modify the size of the object. After letting the left click go and moving the mouse around, the cursor appears again with its regular features.

In a dictionary whose keys are the warehouses: associated with each warehouse is an inner dictionary whose keys are the stocked products (and whose associated values are the inventory of that product in the warehouse). The inventory must always be a non-negative value; an inventory of 0 is legal. For example, a simple/small database might be.

db = {'Irvine' : {'brush': 3, 'comb': 2, 'wallet': 2}, 'Newport': {'comb': 7, 'stapler': 0},
'Tustin' : {'keychain': 3, 'pencil': 4, 'wallet': 3}}

This data structure means that

The Irvine warehouse stocks 3 brushes, 2 combs, and 2 wallets.

The Newport warehouse stocks 7 combs, and 0 staplers.

The Tustin warehouse stocks 3 keychains, 4 pencils, and 3 wallets.

(c) The by_store_inventory2 function returns a list of 2-tuples (str,int) (warehouse names and inventory), sorted ascending by which warehouses have the largest inventory (summed over all the products). If two warehouses store the same inventory, they should appear in ascending order of warehouse name: for the db dictionary above the result is [('Irvine', 7), ('Newport', 7), ('Tustin', 10)].

Answers

Answer:

Here is the completed code for this problem. Comments are included, go through it, learn how things work.

Note: Please maintain proper code spacing (indentation), just copy the code part and paste it in your compiler/IDE directly, no modifications required.

Explanation:

#code

#required method taking a db as parameter

def by_product_inventory_count(db):

   #one line statement, which initially creates a list of all keys (warehouse names)

   #from the dict using a list comprehension, then sorts it by length of the inner dict

   #represented by each warehouse name, and if the length is same, sorts by key itself

   #(alphabetically), and returns this sorted list

   return sorted([key for key in db],key=lambda x:(len(db[x]),x))

#creating a db and testing the method

db={'Irvine' : {'brush': 3, 'comb': 2, 'wallet': 2}, 'Newport': {'comb': 7, 'stapler': 0},

'Tustin' : {'keychain': 3, 'pencil': 4, 'wallet': 3}}

sorted_warehouse_names=by_product_inventory_count(db)

print(sorted_warehouse_names)

#OUTPUT

['Newport', 'Irvine', 'Tustin']

________-generation languages use symbols and commands to help programmers tell the computer what to do.

Answers

Answer:

Third Generation Computers

Explanation:

Third-generation languages use symbols and commands to help programmers tell the computer what to do.

Third-generation language. Also known as a "3GL," it refers to a high-level programming language such as FORTRAN, COBOL, BASIC, Pascal, and C. It is a step above assembly language and a step below a fourth-generation language (4GL).

Choose one of the hacks discussed by Mr. Holman in the video, and using your favorite search engine conduct some additional research on the hack. What is the vulnerability being exploited?

Answers

Answer:

When hacks are discussed with Mr. Holman on video than their vulnerability being exploited

Explanation:

When hacks have given suggestions to  Mr. Holman in his video on favorite search engine there is hundred percent vulnerability is there. Better to avoid the suggestion and make sure not to use the link or any software is been installed. Once end-user click on software or link his or her computer or laptop or PC is hacked and his or her data is exposed to hackers. Once the data is hackers there is steal on data such as video or pictures are exposed and hackers can misuse.

Final answer:

Hackers exploit vulnerabilities using tactics like phishing, malware, and social engineering to steal sensitive data. The stolen data is used for financial gain or identity theft. Reducing hacking requires updates, security measures, and user education.

Explanation:

When evaluating the techniques that hackers use to compromise systems, one common method is by exploiting various vulnerabilities. Hackers might target vulnerabilities within software, such as outdated systems, unpatched flaws, or configuration errors.

They deploy tactics such as phishing, malware, and social engineering to trick users into giving up sensitive information or to gain unauthorized access to systems.

Among the reasons hackers engage in these activities are to steal personal data, financial information, or intellectual property. The stolen data can be used for financial gain, identity theft, or even to gain a competitive advantage.

Hackers are often quite successful due to the sophistication of their tactics and the general lack of awareness and preparedness among users. To reduce or stop hacking, it is essential to consistently update systems, implement security measures like firewalls and antiviruses, and educate users on best practices for cyber hygiene.

A(n) ________ is information that is passed to a function, and a(n) ________ is information that is received by a function.

a. function call,
b. function header parameter,
c. argument argument,
d. parameter prototype,
e. header
f. None of these

Answers

Answer:

i looked it up and the answer i got would be D

Explanation: hope this helps!

Object Oriented Programming (OOP) allows us to handle complex code in an organized structure and break down the problem by modelling it in a way that relates to our everyday life. With fast advancement in technology and ever decreasing product cycles, many developers are starting to believe that OOP is not currently being implemented as it was intended to be implemented. They believe that OOP is unnecessarily complicating the problem solving so, OOP should be phased out as the absence of structure is better (in many cases) than having bad structure.

Analyze the above statement very carefully and answer the following:

• Do you believe that OOP should be phased out and we should start working on some alternative(s)? Provide your answer with Yes or No.

• Give your opinion with two solid reasons to support your answer.

Answer just 4 to 5 lines

Answers

No I don't believe that OOP should be phased out.

Explanation:

Reason:

OOPS make things simpleIt promotes inheritance to avoid repetition, abstraction and encapsulation of keeping data secured and wonderful concept of object.OOP is kept as the base for many of the Application development software like Dot Net, Java, etc.The world is running around by objects and and OOP concept is the best possible method to handle those.OOP is an time-tested method and it should not be phased out.

Find the word-length 2's complement representation of each of the following decimal numbers:a. 845b. 15000c. 100d. -923

Answers

Answer:

(a) 845 = 0000 0011 0100 1101

(b) 1500 = 0011 1010 1001 1000

(c) 100 = 0000 0000 0110 0100

(d) -923 = 1111 1100 0110 0101

Explanation:

NOTES:

First Note: The question requests that the numbers be represented in word-length. That means they should be represented in 16bits (a word is 2 bytes).

Second Note: To convert a number to its 2's complement representation,

(i) if the number is positive, the usual conversion to binary will suffice. You might just need to add zero at the beginning of the sequence of bits to ensure that the leftmost bit is a zero(0).

(ii) if the number is negative, then;

=> convert the magnitude of the number to its binary

=> add zeros to the beginning of the sequence of binary until the sequence has the specified length

=> flip each bit in the sequence and add 1 to the result.

SOLUTION:

Applying the rules in the notes above, lets convert the numbers.

(a) 845 => The number is positive, conversion to its binary will suffice

2  |  845

2  |  422 R 1

2  |  211 R 0

2  |  105 R 1

2  |  52 R 1

2  |  26 R 0

2  |  13 R 0

2  |  6 R 1

2  |  3 R 0

2  |  1 R 1

2  |  0 R 1

Writing the remainders upwards, we have

845 = 1101001101

Pad with zeros to convert it to its word-length representation.

845 = 0000 0011 0100 1101

(b) 15000 => The number is also positive, so following the same step as above,

15000 = 11101010011000

Pad with zeros to convert it to its word-length representation.

15000 = 0011 1010 1001 1000

(c) 100 => The number is also positive, so following the same step as above,

100 = 1100100

Pad with zeros to convert it to its word-length representation.

100 =  0000 0000 0110 0100

(d) -923 => The number is negative;

-->  first convert its magnitude (923) to binary

923 = 1110011011

--> Pad with zeros to convert it to its word-length representation.

923 =  0000 0011 1001 1011

--> Flip the bits

0000 0011 1001 1011 = 1111 1100 0110 0100

--> Add 1 to the result above

1111 1100 0110 0100 + 1 = 1111 1100 0110 0101

Therefore;

-923 = 1111 1100 0110 0101

The word length 2's complement representations are:

a. 845: 001101001101

b. 15000: 0011101101100000

c. 100: 0000000001100100

d. -923: 1111110001000101

We have,

To find the word-length 2's complement representation of each decimal number, we first need to determine the binary representation of the absolute value of the number and then convert it into its 2's complement form if the number is negative.

Assuming the word length is 16 bits:

a. 845:

Binary representation of 845: 0011 0100 1101

Since it is positive, the 16-bit 2's complement representation remains the same: 0011 0100 1101

b. 15000:

Binary representation of 15000: 0011 1011 0110 0000

Since it is positive, the 16-bit 2's complement representation remains the same: 0011 1011 0110 0000

c. 100:

Binary representation of 100: 0000 0000 0110 0100

Since it is positive, the 16-bit 2's complement representation remains the same: 0000 0000 0110 0100

d. -923:

Binary representation of 923: 0000 0011 1011 1011

To find the 16-bit 2's complement representation, we first invert all the bits: 1111 1100 0100 0100

Then, add 1 to the inverted value: 1111 1100 0100 0101

So, the 16-bit 2's complement representation of -923 is: 1111 1100 0100 0101

Thus,

a. 845: 001101001101

b. 15000: 0011101101100000

c. 100: 0000000001100100

d. -923: 1111110001000101

Learn more about complements representations here:

https://brainly.com/question/33566495

#SPJ3

write a function deal3 of type 'a list -> a' list whose output list is the same as the input list, but with the third element deleted.

Answers

Answer:

I am writing a python program for this.  

  def deal3(input_list, index):  

   list = []    

   for x in range(len(input_list)):            

       if x != index:  

           list.append(input_list[x])  

   print('list ->',list)      

input_list = [10, 20, 30, 40, 50]  

index = 2

deal3(input_list, index)

Explanation:

The first line of code defines a function deal3 which has two parameters. input_list which is an input list and index is the position of elements in the input list.next statement list=[] declares a new list that will be the output list.next statement for x in range(len(input_list)):   is a loop which the loop variable x will traverse through the input list until the end of the input list is reached.the next statement if x != index:  checks if x variable is equal to the position of the element in the list.Next statement list.append(input_list[x]) appends the elements of input list to list( new list that will be the output list). Now the output list will contain all the elements of the input list except for the element in the specified position (index variable).this statement print('list ->',list) prints the list (new output list).this statement input_list = [10, 20, 30, 40, 50]  insert elements 10 20 30 40 50 in the input list. index=2 specifies the second position (3rd element) in the list that is to be removed. deal3(input_list, index) So the function is called which will remove 3rd element of the input list and prints output array with same elements as that in input array except for the element at the specified position.

Some wires, especially signal wires and communication wires, are shielded, which helps to prevent electromagnetic interference, also referred to as "____."

Answers

Answer:

Cable shielding is done on some wires like signal wires and communication wires to prevent electromagnetic interference (EMI), also known as noise.

Explanation:

In regions where strong electromagnetic interference is present, like inside some vehicles the wires are subjected to unwanted electromagnetic induction. This interference is known as Electrical noise or EMI noise. Shielding of wires is done to prevent this noise in some vehicles. The shielded wire then needs to be grounded properly.  Three types of shields are popular: Mylar tape, drain line and twisted pair.

A data _____ is a collection of data from a variety of sources used to support decision-making applications and generate business intelligence

Answers

Answer:

warehouse

Explanation:

A bit similar to a database, a data warehouse is a collection or large store of data from different sources that businesses and organization can use to make intelligent business decisions. The data sources for a data warehouse are typically databases from different vendors and architectures.

Data warehouses are typically data repositories used by organizations for data analysis and reporting purposes.

Final answer:

A data warehouse is a centralized repository that aggregates data from multiple sources to support decision-making applications and generate business intelligence. Evaluating the credibility of these sources and utilizing information technology can greatly enhance the quality and usability of the data.

Explanation:

The blank in the question should be filled with the term data warehouse. A data warehouse is a centralized repository that stores data from multiple sources. This data is often gathered from sources that record, analyze, and interpret primary data, which is critical for generating valuable business intelligence. It's essential to evaluate the credibility of these sources to ensure the data's accuracy and reliability.

Data becomes valuable information once it's put into context, analyzed to answer questions, or used within analytical frameworks. Information technology, particularly computers, greatly facilitates this transformation by automating repetitive tasks, managing data storage efficiently, and providing various tools for data analysis.

Sources of data can be incredibly diverse, ranging from satellites and grocery store scanners to traffic sensors and smartphone apps. These capabilities help businesses and organizations in making strategic decisions and forecasting future trends.

Jeffery wants to locate reliable academic information on the effects of global warming and ways to conserve energy. What is the most efficient and effective search strategy to identify subject terms for a database search?a. He can look for common related subject terms in a dictionary, thesaurus or encyclopedia.b. He can look for relevant articles in the results list from a database search and scan the subject terms.c. He can use Google Scholar to retrieve relevant articles and find common related subject terms.

Answers

Answer:

c. He can use Google Scholar to retrieve relevant articles and find common related subject terms.

Explanation:

Of the options provided, the third is the most effective and efficient search strategy. Google Scholar is a deep level tool that can be used to search for relevant academic information from published academic tests. It has very useful search options and it will be very effective and efficient in this instance.

You are tasked with creating a mileage calculator to calculate the amount of money that should be paid to employees. The mileage is computed as follows An amount of .25 for each mile up to 100 miles An amount of .15 for every mile above 100. So 115 miles would be (.25 * 100) + (.15 * 15) This can all be coded using a mathematical solution but I want you to use an if / else statement. Here is how you are to implement it: If the total miles input is less than or equal to 100 then simply calculate the miles * .25 and output the amount otherwise compute the total amount for all miles mathematically. Input: Total number of miles Process: dollar amount owed for miles driven Output: Amount of money due * Please note that you should simply do calculations within the if and else statements. This mean no cin or cout within if or else. Do it afterward.

Answers

Answer:

Desired C++ Program with proper comment is given below

Explanation:

#include<iostream>

using namespace std;

//main function

int main()

{

  int totalMiles = 0;

  int remainingMiles = 0;

  double amt = 0;

 

  //taking input from user regarind total miles

  cout<<"Enter the total miles: "<<endl;

  cin>>totalMiles;

  //if-else condition to do the calculation

  if(totalMiles<=100)

  {

      amt = totalMiles*.25;

  }

  else

  {

      remainingMiles = totalMiles - 100;

      amt = 100*.25 + remainingMiles*.15;      

  }

 

  cout<<"The total amount is: "<<amt<<endl;

}

-Which of the following is true about Web services?
A - Web services are open standard XML, SOAP, HTTPetc. based Web applications.
B - Web services interact with other web applications for the purpose of exchanging data.
C - Web Services can convert your existing applications into Web-applications.
D - All of the above

Answers

Answer:

The answer is "Option D".

Explanation:

Web service is also known as an online open software product, which uses a common XML messaging service system. It is used service like HTTP, SOAP, etc, that encrypts messages from all web services.

It uses the internet, that enables you the interface or application for the user interaction or exchanging data. It will turn the software into web apps.

When you write a program that will run in a GUI environment as opposed to a command-line environment, ____________.

Answers

Answer:

The syntax are different.

Explanation:

Graphic user interface is a computer system interface that uses graphics of images to represent and activate or run applications and other activities in the device. The command line interface is text format interface that accepts typed commands to execute a task.

Programming both interface requires high level of program skills, with knowledge in algorithms and programming language like C, C++ etc. The syntax in GUI is more complex and different from the command line interface.

Write a program having a concrete subclass that inherits three abstract methods from a superclass. Provide the following three implementations in the subclass corresponding to the abstract methods in the superclass:

1. Check for uppercase characters in a string, and return true or false' depending on if any are found.
2. Convert all of the lower case characters to uppercase in the input string, and return the result.
3. Convert the input string to integer and add 10, output the result to the console.
Create an appropriate class having a main method to test the above setup.

Answers

Answer:

C++

Explanation:

using namespace std;

class AbstractClass {

public:  

   virtual bool checkUpperCase(string inputString);

   virtual string lowerToUppercase(string inputString);

   virtual void stringToInt(string inputString);

};

class ConcreteClass: public AbstractClass {

public:

   bool checkUpperCase(string inputString) {

       bool isUpper = false;

       for (int i=0; i < strlen(inputString);  i++) {

           if (isupper(inputString[i])) {

               isUpper = true;

               break;

           }

       return isUpper;

      }

   string lowerToUppercase(string inputString) {

       for (int i=0; i < strlen(inputString);  i++) {

           putchar(toupper(inputString[i]));

       }

       return inputString;

   }

   void stringToInt(string inputString) {

       int convertedInteger = stoi(inputString);

       convertedInteger+=10;

       cout<<convertedInteger<<endl;

   }

};

int main() {

   ConcreteClass cc;

   return 0;

}

Other Questions
An air compressor takes atmospheric air (think about what pressure it is at) and pressures it up to 68 (psig). In the process, it warms up from 26 degC to 48 degC. If the original volume of air is 13 (m^3). What is the resulting volume (m^3) after the air is compressed and heated? 2. State the side of the war Molly Pitcher supported and why? Most Internet users access commercial websites, which have higher-quality information because of higher editing standards and the inclusion of more rigorous scientific articles as references. Group of answer choices False True Which describes the formation of Horizon B?a-forms at the surfaceb-features parent materialc-undergoes the most changed-forms due to decomposed material What is _- 20 - 3 1/4 = 14 5/8 At the end of the current year, Florentina Corporation reported $25 million of net income and $405 million of retained earnings. The previous year, Florentina Corporation had $390 million of retained earnings. What were the total dividends paid to shareholders during the most recent year? m=1/5 y-intercept is 0,4 The U.S. National Institute of Standards and Technology defines the incident response life cycle as having four main processes: 1) Preparation 2) Detection and analysis 3) Containment, eradication, and recovery; and 4) ____. Select one: a. incident report b. triage c. post-incident activity d. resolution Solve the equation -4x^3=32 Terbia is a closed economy, which has been growing at a very slow pace over the last decade. In order to boost economic growth, the government removed trade barriers earlier this year and increased its spending on the economy. These moves were expected to generate employment and increase economic growth. However, unemployment did not decline as much as expected. Which of the following, if true, can explain this outcome?A. Favorable weather conditions resulted in a bumper production of corn this year.B. With liberalization of trade, the export market expanded and many domestic firms benefitted from it.C. Imported varieties of many goods were cheaper than the domestically produced varieties.D. Growth in the service sector of the economy was higher than growth in the manufacturing sector after the government took these measures.E. Many firms expanded their capacities to cater to the higher demand. name a decimal greater than 2.15 and less than 2.25 PLEASE HELP, WILL MARK BRAINLIEST, THIS IS MULTIPLE CHOICEThe process of natural selection favors certain characteristics in organisms, while it selects against other characteristics. What would happen if there was zero variation between all of the organisms on Earth? A. Organisms would evolve to increase variety. B. Natural selection would operate faster. C. Evolution through natural selection would not occur. D. Less food would be available. "For hunting also: the woods, lakes, and rivers afford not only chase sufficient, for any that delights in that kind of toil, or pleasure; but such beasts to hunt, that besides the delicacy of their bodies for food, their skins are so rich, as may well recompence thy daily labor, with a captains pay." How did the taking of the Port of Savannah impact Georgia and the south? You are holding one end of an elastic cord that is fastened to a wall 3.0 m away. You begin shaking the end of the cord at 3.5 Hz, creating a continuous sinusoidal wave of wavelength 1.0 m. How much time will pass until a standing wave fills the entire length of string? Gaseous compound Q contains only xenon and oxygen. When a 0.100 g sample of Q is placed in a 50.0-mL steel vessel at 0 C, the pressure is 0.230 atm. What is the likely formula of the compound? A scientist obtains the number 1250.37986 on a calculator. If this number actually has four (4) significant figures, how should it be written? A)1251 B)1250.3799C)1250.4 D)1.250 x 10^3E)1.250 x 10^3 Which is an example of continuous data? A) number of people wearing a team jersey B) temperature during the game on Saturday C) number of innings played in a baseball game D) number of home runs hit by a player during a game When discussing common issues relating to critical incidents, which category is identified as the number one issue that impacts incident response? find the tangent of the angle in between the lines 2x+3y5=0 and 5x=7y+3? Steam Workshop Downloader