Part cost Calculator Modify the GUI in your program to look like the following GUI. To do that you need to add the following to the GUI in the starter program. A text box to accept the part number (Only one is allowed A1B) Note the user may enter spaces before or after the part number and may enter the letters in lower or upper case. You program must accommodate that.

Answers

Answer 1

Answer:

Imports System.Text.RegularExpressions

Public Class Form2

   Private Shared Function Num1(ByVal val As String) As Integer

       Dim retrnVal As String = String.Empty

       Dim collect As MatchCollection = Regex.Matches(val, "\d+")

       For Each mat As Match In collect

           retrnVal += mat.ToString()

       Next

       Return Convert.ToInt32(retrnVal)

   End Function

   Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

       TextBox1.Text = Num1(TextBox1.Text)

       Dim Total As Integer = 0

       Dim A1b As Integer = Convert.ToInt32(TextBox1.Text)

       Label1.Text = 250

       Label2.Text = 25

       If Convert.ToInt32(TextBox1.Text) = A1b Then

           If Convert.ToInt16(Label1.Text) < 10 Then

               Total = 10.5 * Convert.ToInt16(Label1.Text)

           Else

               Total = 8.75 * Convert.ToInt16(Label1.Text)

           End If

           If CheckBox1.Checked Then

               Total = Total + 10

           Else

               Total = Total + 5

           End If

           TextBox2.Text = Convert.ToString(Total)

       End If

End Sub

Explanation:

Please check the answer section and the attachment. Also, please check the method. We have used the regular expression over there. And we have imported the regularexpression library for that. And this is to ensure we can read integer from textbox no matter whether the user inputs empty spaces or characters in lower and upper case in between.

Part Cost Calculator Modify The GUI In Your Program To Look Like The Following GUI. To Do That You Need
Part Cost Calculator Modify The GUI In Your Program To Look Like The Following GUI. To Do That You Need
Part Cost Calculator Modify The GUI In Your Program To Look Like The Following GUI. To Do That You Need

Related Questions

COULD U ANSWER THIS ???

Which is an example of a closed loop that best models a circuit?
A.a crowd dispersing in all directions
B.lightning striking a tree
C.students jogging around an oval track
D.a cross-country run from one point to another

Answers

Answer:

B.lightning striking a tree

Explanation:

The crowd dispersing in all directions is not a closed-loop by any means, and students jogging around an oval track as well is not a closed-loop, and also not a cross country run from one point to another. However, the lightning striking a tree is a closed loop that best models a circuit. And as lightning strikes the tree, like a closed circuit, tree catches the fire, or in circuitry words, the current is generated, and tree catches the fire due to it, just like bulb starts glowing.


All of the following are stages in the SDLC except _____.

JAD
Design
Development
Analysis

Answers

Final answer:

JAD is not a stage in the SDLC; it is a methodology used to involve clients during the design phase. The true stages of the SDLC include Analysis, Design, and Development, with iterative testing and refining during the design stage being crucial for project success.

Explanation:

The System Development Life Cycle (SDLC) consists of several stages that are essential for developing a successful information system. However, the term JAD (Joint Application Development) does not refer to a stage in the SDLC. Instead, JAD is a methodology aimed at increasing the efficiency of the design phase by involving the client in the analysis and design of the system.

The core stages of the SDLC include Analysis, Design, and Development. During the design stage, the development team may go through rounds of testing and refining a prototype to achieve the best possible design, which aligns with the project's criteria and constraints. This iterative design process plays a critical role in the overall success of the development project.

The technology Herman Hollerith created in the 1880s began the modern-day data processing function in computers.
The tech
What was the name of this
transistor
punched-card machine
microprocessor
resistor

Answers

Answer:

punched-card machine

Explanation:

We know this as the punched-card machine, and it is also known as the Hollerith cards or the IBM cards. At that time, and through this technology, we used to punch a hole with hand or with the machine, and each hole used to represent the data and the instruction. And these were widely used for inputting the data in the early computers.

Answer:

D) Punched-card  Machine

Edge 2021

Read the scenario below and then answer the
question to the right.

The manager of a small engineering company is
setting up a spreadsheet to help track cash flow
for each month. The spreadsheet will track
incoming payments from clients. It will also track
outgoing payments for rent utilities employee
salaries, and insurance.

What is the best way to set up the spreadsheet?

A. List each expense in a row. List each income
source in a column.

B. List each expense and income source in a
separate column List each month in a row.

C. List each month in a column. List each
expense in a row.

D. List each expense in a column. List each
month in a row

Answers

Answer:

B. List each expense and income source in a separate column List each month in a row.

Explanation:

The manager is making the spreadsheet for helping track the cash flow. The spreadsheet will be keeping track of the outgoing and incoming payments from the clients. And it is also going to track the outgoing payments like rent and the whole cashflow. And for that, the Manager should mention the expense and the income source in a separate column and list all the months in a row. And hence, the B. is the correct option.

Answer:

B

Explanation:

The best way to set up the spreadsheet is to list each expense and income source in a separate column. List each month in a row.

I don't know the answer and I tried different ones and they not what the book is looking for.

Write a statement that outputs variable numObjects. End with a newline.
Program will be tested with different input values.

import java.util.Scanner;

public class VariableOutput {
public static void main (String [] args) {
int numObjects;

Scanner scnr = new Scanner(System.in);
numObjects = scnr.nextInt(); // Program will be tested with values: 15, 40.
Then I have to write my code below this and I don't know what to put.

Answers

Answer:

The complete program is:

import java.util.Scanner;

class Main

{

public static void main (String [] args) {

int numObjects;

Scanner scnr = new Scanner(System.in);

numObjects = scnr.nextInt(); // Program will be tested with values: 15, 40.

System.out.println(numObjects);

}

}

Explanation:

The program is as mentioned above, And we can check with inputs 15, and 40. And it was found that correct answer is obtained on running the program.

What are the advantages of using a page description diagram?

A. They are rigid in construction.

B. Only an experienced designer can create a good PDD.

C. They are simple to grasp.

D. The contents are vast.

Answers

The answer to your question is C they are simple to grasp
Final answer:

A page description diagram (PDD) is a visual representation of the structure and content of a web page. It is simple to grasp, aids in communication, and helps with planning and organization.

Explanation:

A page description diagram (PDD) is a visual representation of the structure and content of a web page. It provides a high-level overview of how the different elements on a page are organized and related to each other. There are several advantages of using a PDD:

They are simple to grasp: PDDs use simple shapes and labels to represent different elements, making it easy for designers and developers to understand the page layout without getting overwhelmed by details.They help with communication: PDDs serve as a communication tool between designers, developers, and other stakeholders. They provide a common visual language to discuss page structure and ensure everyone is on the same page.They aid in planning and organization: PDDs help in planning and organizing the content of a web page. Designers can use them to identify the most important elements, prioritize content, and create a logical flow for users.

what are three common reasons that might make you revise the focus of your research

Answers

the commons reason make you focus on the research

Sharing a workbook enables multiple users to access the workbook. What are the benefits of using a shared workbook?

Answers

Shared workbooks enable multiple users to access and edit a document simultaneously, track changes with colour-coded edits, and view revision history. They improve efficiency, promote transparency, and foster collaborative learning.

The benefits of using a shared workbook in applications like Microsoft Excel or Goo-gle Docs are significant for collaborative work. Shared workbooks allow multiple users to access the workbook simultaneously, contributing to a more efficient team workflow. This feature enhances productivity as team members can work on different parts of the workbook at the same time, leading to quicker completion of tasks.

Another key advantage is the ability to track changes made by different users. This is often highlighted and colour-coded to indicate who made specific edits. Additionally, a revision history is maintained, making it easy to review past versions and understand the progression of the document. This sharing is invaluable for ensuring transparency and accountability within a team.

Lastly, sharing facilitates better communication among team members and can lead to innovative solutions by combining diverse contributions. The process allows for pooling of expertise and knowledge which can result in a more thorough and accurate final product. Working together in a shared workbook can also increase learning opportunities through peer collaboration.

When pasting text and tables,which of these paste options is generally available

Answers

Answer:

For text and table in common: Keep Text Only

And hence, B. Paste as a text item is the correct option.

The above is the common option available in case we are pasting the Text or you are pasting the Table. If you copy a text and try to paste it, and when you will try to paste the table, then you will find this option in common, and hence it is the option that is generally available. Hence, B is the correct option.

Explanation:

Please check the answer section.

What statement best characterizes the standard structure of creating game design documents?

There is no standard way of creating a game design document.
There are a number of formats for creating game design documents, but one must be chosen.
There is a standard way of creating a game design document, but changes can be made.
There is a strict standard way for creating game design documents.

Answers

Final answer:

While there's no strict standard for creating game design documents, it's vital to have a structured design process to organize decision-making and cover all important aspects.

Explanation:

The structure for creating game design documents (GDD) can vary widely, as there is no single, strict standard for their creation. While there are several formats and templates that can be used as a starting point, the specific structure of a GDD often reflects the unique requirements of the game being developed and the preferences of the design team. It is essential, though, that a GDD includes a systematic and structured design process, which can help organize decision-making, ensure that all important aspects are considered, and provide documentation for the development process. Tailoring the GDD to the specific needs of the project is crucial, as this allows for flexibility in making necessary adjustments or additions throughout the game development journey.

As it relates to the internet the term “host” means

Answers

Answer:

The host, which we also know as the network host, happens to be a computer or any other device which communicates with various other devices that can communicate with various other hosts on a network. And a node is a much broader term that covers everything which is connected to a network. And the host requires an IP address.

Explanation:

Please check the answer section.

What was Eisenhower's "covert action” policy?​

Answers

Answer: "covert action policy" include activities by U.S Government to influence political, economic or military conditions in other communist countries.

Explanation:

Eisenhower was the General of the American army and he also served as the 34th president of U.S. Eisenhower used "covert action" policy. This policy was used against the communist government of other countries.

There were many secret activities of this policy. This policy was used for national interests. It covered those activities of the U.S government which were undertaken to affect the economic, political or military conditions in other countries. The main intention of this policy was not to reveal the role of the U.S government in other countries to the public.

Will web browser cannot open any web page what should will do first

Answers

Answer:

The solution to this question is given below in the explanation section.

Explanation:

If a web page is not open in a web browser, the first step that will be performing is to check if the internet is connected or not. Because we need to connect to the internet to access any web page. For this, you need to see the wifi or LAN icon and see the status of the connection. If this step is shown the internet is connected. Then diagnose the problem in the browser click on "Running Windows Network Diagnostics".

The diagnosis will get started in your browser, the solution will be suggested by this step if the problem exist. Mostly these problems are internet disconnectivity, router shutdown, browser issues, and internet connection and DNS issues.

Financial institutions are monitored through which of the following?
A. Federal Reserve System
B. National Banking Union Administration
C. Federal Deposit Insurance Corporation
D National Financial Institution Agency

Answers

Answer:

federal reserve system

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Option C is the correct answer.

We have,

The Federal Deposit Insurance Corporation (FDIC) is responsible for monitoring and regulating financial institutions in the United States.

It is an independent agency of the federal government that aims to maintain stability and public confidence in the banking system.

The FDIC oversees banks and savings associations, ensures their compliance with relevant laws and regulations, and provides deposit insurance to protect depositors' funds.

The FDIC conducts regular examinations of financial institutions to assess their financial health, risk management practices, and adherence to consumer protection laws.

These examinations evaluate the institution's capital adequacy, asset quality, management practices, earnings, and liquidity.

Thus,

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Learn more about financial institutions here:

https://brainly.com/question/29641948

#SPJ6

What client specifications relate to typography, logos, and color schemes specific to the client's organization?

___________ guidelines are a comprehensive set of references related to typography, color schemes, logo design, and page design specific to each organization and its culture.

Answers

Answer:

Branding

Explanation:

Branding guidelines are a comprehensive set of specifications related to typography, color schemes, logo placement, page layout, and others aspects of design unique to an organization and its culture.

Question 2(Multiple Choice Worth 5 points)
(02.01 LC)

Which will display output from a tablet?

Memory
Screen
Power button
Power cord

Answers

Answer:

Screen

Explanation:

The memory is used to save the data, and the power cord is used to connect to the power supply. And the Power button is used to power on the tablet. And the display output from a tablet is shown on the screen. Hence, the correct option here is the screen. And It is the screen that displays the output.

Answer:

Screen

Explanation:

I took the test :)

In the code snippet, what is the “win” part called in programming?
if (playerGreen > 444) {
setScreen ("win");
}
A. Function
B. Parameter
C. Variable
D. onBoardEvent

Answers

I think the answer is B: parameter

Please help I really need it

Answers

The correct answer is the F8 ke

In a non-formatted/standard template, if the number 25 is converted to text format, the
alignment becomes
_. (right, left, center)

Answers

The alignment of the text will be "left" by default

Explanation:

In Excel or spreadsheet, if any number is entered, it will automatically be aligned to right because right alignment is preferable for the numbers.In case of any alignment is mentioned in the cell in prior to entering text or if the type of data is changed after or before entering the text, then the text is aligned accordingly.According to the given scenario, a number "25" is entered and it is converted to text. So a text format will preserve the alignment as entered. By default it will be "left" aligned.

Identify the type of conflict in each situation.
Mark sees his close friend Tom
cheat during a class test and
wonders whether he should
keep the information to
himself or confront Tom about it
Kyle goes on a ski trip alone, only
to be caught in a heavy snowstorm
and become stranded in the
middle of nowhere.
Sarah wants to give up studying
law and follow her dreams of
becoming a musician, but her
family disapproves of this idea.
Kate and Jade have always competed
to be the most popular student
in school. With prom coming up, the
problems between the two increase.
Lizzy finds a wonderful outfit for her
friend's birthday party, but she
realizes that it costs much more
than her budget. She's tom
between buying it and looking
for something else.
Internal Conflict
External Conflict

Answers

first off, good for Tom, he found Brainly. And now the answers (in order)

1. internal

2. internal

3. external

4. external

5. internal

1. Internal conflict 2.  Internal conflict 3. External conflict 4. External conflict 5.  Internal conflict

What is internal and external conflict?

Internal conflict is when a person struggles with their own opposing desires or beliefs.

External conflict sets an individual against something or someone which is not in their control.

1. Mark sees his close friend cheating. The situation must be confronted or kept secret is his inner struggle.

Thus. its an internal conflict.

2. Kyle goes on a ski trip alone and stucks in heavy storm. Now she is afraid of what she will tell her loved ones and how she will face if she get caught.

Thus, its an internal conflict.

3. Sarah wants to pursue her dream of becoming musician. She has to make everyone agree to favor her but she is getting opposed. This struggle is with her parents.

Thus,  its an external conflict.

4. Kate and Jade are competitors. The competition is increasing between the two.

Thus,  its an external conflict.

5. Lizzy denies to buy her wonderful outfit due to high cost. She wants it but can't afford.

Thus,  its an internal conflict.

Learn more about internal and external conflict.

https://brainly.com/question/27377458

#SPJ2

642
+277
What does 642+277

Answers

answer:
642+277= 919

The technology Herman Hollerith created in the 1880s began the modern-day data processing function in computers.
What was the name of this technology?
transistor
punched-card machine
microprocessor
resistor

Answers

Answer:

Punch Card Machine

Explanation:

The punch cards or the punched cards are also termed as the Hollerith cards or we also know them as the IBM cards. And they happen to be the paper cards where holes can be punched with the help of the hands or with the help of the machine for representing the computer instructions or data. And these were used on quite a large scale for inputting the data when we talk of the early computers. And this technology was developed by the Herman Hollerith.

Your credit card debit to limit ratio has a huge impact on your FICO score (30%). It should always be kept below 15%. If your card has a limit of $3,000 and your credit card debit has reached it, what payment will you need too apply to your balance to pay it down to 15%?

Answers

Answer:

The payment that you will need to apply to your balance to pay it down to 15% is $2,550.

Explanation:

To determine the payment that you will need to apply to your balance to pay it down to 15%, the first step is to calculate the credit card balance in which your debit to limit ratio is 15% using:

Debit to limit ratio= credit card balance / total credit card limit

You have to isolate the credit card balance:

Credit card balance= Debit to limit ratio*total credit card limit

Credit card balance= 15%*$3,000

Credit card balance= $450

Now that you have the credit card balance in which your debit to limit ratio is 15%, you have to subtract this amount from the credit card limit to find the payment that you will have to make:

$3,000-$450= $2,550

Which structure does a web page normally use to define an area of focus?

Many web pages use a ______

structure to define an area of focus.

Answers

Answer:

meta Tag

Explanation:

The meta charset, meta name="description" content" ", meta name="keywords" content=" ", meta name="author" content=" " and meta name="viewport" defines the area of focus in a web page.

And hence, it is the meta tag that defines as well as describes the area of focus on a web page. The description describes keywords that add the keywords, and the author adds the author's name. The viewport helps in making the webpage responsive.

Answer:

Grid

Explanation:

a grid structure defines areas of focus.

1) Moore's law refers to:

Answers

Answer:

Moore's law refers to: the pace at Central Processing Units (CPU) improves this rule.

Explanation:

It also predicts that CPU will double about every 2 years dynamic, random access.

What is the purpose of an attribute in HTML?

A. It is a property that changes the default behavior of an element.
B. It is an empty element.
C. It consists of a start tag and an end tag.
D. It is a tag without angular brackets.

Answers

A httml is the bace to all coding

An attribute in HTML changes an element's default behavior or appearance and provides additional information to produce functional web pages.

The purpose of an attribute in HTML is to provide additional information about an element, acting as a modifier that changes the element's default behavior, appearance, or characteristics in some way. For example, the src attribute of an <img> tag defines the URL of the image to be displayed, and the alt attribute provides alternative text in case the image cannot be displayed. Attributes are an essential part of HTML, providing richer, more functional web pages and allowing for customization and interactivity.

Ansel Adams education and special training

Answers

Answer:

Ansel Adams was dismissed sadly from various schools where he studied because of his bad behavior. And hence he got special training that was being given to him by various private tutors as well as his family members since he was 12 years of age. And in 1916, while on a Yosemite National Park trip, he started working on Photography as well, and he will always be remembered for the work he did in Photography.

Explanation:

Please check the answer section.

A self improvement plan should begin with planning how you will accomplish your goal.

Answers

Answer:

True

Explanation: The first step is to make a goal. The second step is to plan how you will accomplish you goal. The third and final step is to accomplish your goal.

Answer:

Answer:

True

Explanation: The first step is to make a goal. The second step is to plan how you will accomplish you goal. The third and final step is to accomplish your goal.

Explanation:

Please select the word from the list that best fits the definition

Debate

A. Analyze
B. Evaluate
C. Question
D. Reflect

Answers

Answer:

Debate means

Explanation:

Question, usually in debating people question, your judgement.

So, C.

Answer:

it's c - question

Explanation:

the advantage of purchasing a dual Ethernet 10/100 Mbps NIC for your PC is that your PC can now?​

Answers

A dual Ethernet 10/100 Mbps NIC for your PC is that your PC is now compatible with both LAN speeds.

Explanation:

A 10/100 Ethernet port transmits 10 and 100 Mbps, while the maximum speed of a 10/100/1000 "Gigabit" port is 1 Gbps. Ethernet uses the highest common speed between sending and receiving devices. Ethernets above one gigabit are separate and do not mix with 10/100/1000 components.10GBase-T networks can span up to 100 meters. Enterprises use 10 Gigabit Ethernet switches to provide Layer 2 networking for very high-speed network applications – mostly in the data center or server room. 10/100 Mbps NIC is a good choice for flexibilty. Also, plan to use a PCI bus slot.The NIC should have both half duplex as well as full duplex capacity.By modifying the NIC properties through the operating system your PC will also work faster compared to before.

Other Questions
which changes can reach dynamic equilibriumA- nuclear onlyB- chemical onlyC- nuclear and physicalD - chemical and physical 2 PointsWhich of these is a cultural service - a nonmaterial benefit people get fromthe environment?OA. Providing national parksOB. Pollinating plantsOC. Providing building materialsOD. Recycling nutrientsSUBMIT The Palmer Acres Inn is trying to determine its break-even point during its off-peak season. The inn has 50 rooms that it rents at exist75 a night. Operating costs are as follows: Salaries exist5, 400 per month Utilities exist1, 100 per month Depreciation exist1, 100 per month Maintenance exist5, 150 per month Maid service exist15 per room Other costs exist30 per room Determine the inn's break-even point in number of rented rooms per month. Break-even point _________ rooms Determine the inn's break-even point in dollars. Break-even point exist __________ Luis knows that there are 16 cups in one gallon. How many cups will it take Luis to fill a 6 1/2 gallon bucket? The constitutional principle of judicial review provides write each number from the box and the correct category shown in the table In 2020, Wimer Corporation, a service business, no longer qualifies as a small business. Thus, it must change from the cash to the accrual method starting with its 2020 tax year.. At the beginning of 2020, Wimer had accounts receivable of $575,000. Also, Wimer had accounts payable of $345,000. Determine the adjustment to income due to the change in accounting method and the amount that is allocated to 2020. The area of a rectangle is 4x+32. The length is 4. Find the width. A dry cleaning business offers a pick-up and delivery service for a 10 percent surcharge. Management believes 60 percent of the existing customers will take advantage of this service. They are also considering offering customers the option of opening an account and receiving monthly bills. They believe 60 percent of customers (regardless of whether or not they use the pick-up service) will use the account service. If the two services are introduced to the market, what is the probability a customer uses neither of these services Please help and explain how you answered it Can you help me please? y=x+2-3x + 3y = 6How many solutions can be found for the system of linear equations represented on the graph? What happens during interphase?OA. The spindles attach to chromatids.OB. The chromosomes are duplicated.OC. Two haploid gametes are formed.OD. Tetrads are pulled apart. 4.47 Consider an experiment, the events A and B, and probabilities P(A) 5 0.55, P(B) 5 0.45, and P(A d B) 5 0.15. Find the probability of: a. A or B occurring. b. A and B occurring. c. Just A occurring. d. Just A or just B occurring. Producer surplus is A. the difference between the lowest price a firm would be willing to accept and the price it actually receives. B. the difference between the highest price a consumer is willing to pay and the price the consumer actually pays. C. the difference between the lowest price a firm would be willing to accept and marginal cost. D. the market price multiplied by the number of units sold by a firm. E. the difference between the highest price a consumer is willing to pay and the lowest price a firm would be willing to accept. How are school districts different from special districts? Check all that apply.School districts are funded and controlled by the state.School districts manage the library districts.School districts do not operate autonomously,School districts cannot impose taxes.School districts are administered by the parish governments Ryan was really looking forward to lunch because his mother had prepared a tuna salad sandwich.Unfortunately, the mayonnaise she used had been left out too long and was spoiled. Not long aftereating the sandwich, Ryan felt sick and had to rush to the bathroom. Thereafter, the mere mentionof a tuna sandwich would make Ryan nauseous.1. What is the unconditioned stimulus? A newspaper survey says that 424 people, or 53% of the people surveyed,enjoy walking through the park. How many people were surveyed? A firm derives revenue from two sources: goods X and Y. Annual revenues from good X and Y are $10,000 and...? A firm derives revenue from two sources: goods X and Y. Annual revenues from good X and Y are $10,000 and $20,000, respectively. If the price elasticity of demand for good X is -4.0 and the cross-price elasticity of demand between Y and X is 2.0 then a 2 percent price decrease will a. Increase total revenues from X and Y by $520 b. Decrease total revenues from X and Y by $520 c. Leave total revenues from X and Y unchanged d. Decrease total revenues from X and Y by $600 What is an equation of the line that passes through the points (7,7)(7,7) and (5,3)(5,3)?