Visual Basic program in visual studio please
Write a function that checks whether a string has a number based. Use what we learned about Asc to complete the following:
Function CheckLength (S As String) As Boolean
‘add a do loop to start at first character
‘if Ascii current character is between Asc (“0”) and Asc (“9”)
‘then we have a hit Return True
‘else check the next character
‘if loop is over, that means no hit was found Return False
End Function
Use this function in an application that allows the user to enter the string/text that should be tested by your CheckLength function.
Please submit your completed application.
In: Computer Science
Write a memo by answering following questions.
Overview:
Identify a current topic impacting financial statements or audits to analyze and communicate in writing.
Your analysis will be graded on the following:
Ability to identify a topic/event that is relevant to financial statements and/or auditing today.
Analysis of the issue/event.
Written summary of your analysis.
In: Accounting
Based on what you learned in this module, identify one person who you believe possesses primarily leadership behaviors and one who possesses primarily management behaviors. These people could be individuals you work with, family members, or people you know from the news (e.g., celebrities, business executives, politicians, etc.), or YOU. Craft an 8-10 slide PowerPoint presentation with detailed speaker’s notes or audio voice-over by answering the following questions.
1. What are the different types of behaviors you observe between leadership and management
2. How effective are each leader and manager ?
4. What might be some strategies you could consider implementing to help enhance your leadership or management behaviors and why might this be beneficial to personal or professional lives?
In: Operations Management
In: Accounting
Dirac's Theorem states that "A simple graph with n vertices (n >= 3) is Hamiltonian if every vertex has degree n / 2 or greater". Show that K n,n is Hamiltonian for all n >= 3
In: Computer Science
Two 10-cm-diameter charged rings face each other, 15cm apart. The left ring is charged to -29nC and the right ring is charged to +29nC .
What is the magnitude of the electric field E? at the midpoint between the two rings?
What is the magnitude of the force F? on a -1.0 nC charge placed at the midpoint?
In: Physics
Under what conditions would it be possible for an excise tax to have no efficiency cost and, in fact increase economic efficiency? Show this graphically. Support your answer with an example of something that has a perfectly inelastic supply or nearly perfectly inelastic supply.
In: Economics
explain the difference between activities and financial statements of service businesses and merchandising businesses.
In: Accounting
2. Compare and compare the matrix multiplication algorithm and the Floyd-Warshall algorithm to find all pairs shortest paths from the perspective below.
In: Computer Science
Q: 50.00 ml of 0.5216 M copper(II) nitrate solution is combined with 100.0 ml of 0.5580 M potassium hydroxide solution according to the following unbalanced equation.
Cu(NO3)2 (ag) + KOH -> Cu(OH)2 (s) + KNO3 (aq)
(a) How many grams of copper(II) hydroxide can be formed?
(b) The solid was filtered, dried, and found to have a mass of 2.420 g. What was the percent yield?
(c) What are the concentrations of all species in the solution before the solid is removed?
In: Chemistry
This is a business law question.
Explain how environmental laws regulate the use of toxic substances and the disposal of hazardous wastes?
In: Accounting
A sky diver and her parachute system weigh a total of 800 N. She is falling vertically at v = 30 m/s when her parachute opens. At the instant that the parachute opens, the drag force acting vertically upward on the open chute is equal to F = 0.5v2.
Draw a FBD of the diver-parachute.
Draw a Kinetic diagram of the diver-parachute.
At the instant that the chute opens, calculate the vertical acceleration of the
sky diver.
Why does the sky diver
In: Physics
Need solution:
HSL Company produces rugs. The following cost information from last year is available:
Total fixed costs $ 43,200 Total variable costs $ 520,800 Units sold 6,200 units · Contribution margin ratio 30%
The company is considering a new, highly Automated machine to replace some of the labor force. In addition, the company will adjust the selling price to reflect the change in demand. Assume the following: Decrease in variable cost per unit by 3% Annual depreciation expense of the new machine $8,000 Contribution margin ratio increases to 40%
To achieve the same level of net income as last year, how many units of rugs the company must sell? (Round the answer to the nearest unit).
A. 4,256 units
B. 4,463 units
C. 6,002 units
D. 6,621 units
E. None of the above
In: Accounting
You are the network administrator for your organization. Your DHCP server (Server1) has a scope of 10.10.16.0 to 10.10.16.254 with a subnet mask of /20.
How would the Get-DhcpServerv4Scope ensure that all of the client computers obtain an IP address from Server1.
In: Computer Science
python3
Let x0,...,xn−1 be n numbers stored in the list x. The median of x, denoted median(x) is the “middle”-value of the numbers in x in the sense that half of the numbers in x are less than the median and the other half of the numbers in x are greater than the median. Let y denote a copy of x sorted in ascending order. Then median(x)=(y[n+1 2 −1] if n is oddy [n 2−1]+y[n 2] 2 if n is even. Complete the function my_median with the following specifications: • It that takes in one parameter, x, which is a list of numbers. • It returns median(x). • Do not alter x. Evaluating your function my_median(x) should not change the value of the list x. • Do not use Python’s built-in median function.
In: Computer Science