Assume that workers in the orange farming industry start demanding higher salaries and wages. Illustrate and explain how this would impact the equilibrium price and quantity of oranges
Explain any two advantages and two disadvantages of the economic system used in your chosen country. (5)
Find the inverse Laplace of {2s+5/s^2+25}?
A) 2Sin5t+Cos5t
B) Cos5t-2Sin5t
C) 2Cos5t+Sin5t D) 2Cos5t-Sin5t
Evaluate ∮c e^z/(z+2) (z+3) dz where C is |z|=1?
A)-2
B)-4
C) 1
D) 0
Find the inverse Laplace of {2s+5/s^2+25}?
A) 2Sin5t+Cos5t
B) Cos5t-2Sin5t
C) 2Cos5t+Sin5t
D) 2Cos5t-Sin5t
Obtain a partial Differential equation by eliminating arbitrary constants from z=(x-α) ^2 +(y-β) ^2?
A) 2z=p^2+q^2
B) 4z=p^2+q^2
C) 4z=p+q
D) z^2=p^2+q^2
Selected words to Uppercase
the goal of this code to get output using string methods startsWith(), endsWith() and toUpperCase()
convert uppercase if a string in wordsList starts or ends with the given myString
log the array containg the converted strings in the console
input
the first line containing an array wordsList
second line containing a string myString
output
the output should be single line containing an array with converted strings
input1
['absolute','umbrella','achivement','formula']
a
output1
['ABSOLUTE', 'UMBERELLA','ACHIVEMENT','FORMULA']
function readLine() {
return inputString[currentLine++];
}
function main() {
const wordsList = JSON.parse(readLine().replace(/'/g, '"'));
const myString = readLine();
/* Please do not modify anything above this line */
// Write your code here
}
A block of mass 4kg is on the point of slipping down a plane inclined at an angle of 30° to the horizontal.What force parallel to the plane will just move it up the plane?
Create a console calculator application that:
-Takes one command-line argument; your name and surname. When the program starts, display the date with a welcome message for the user
-Your calculator must include the arithmetic operations, as well as at least 5 scientific operations of the Math class. It's must also have the ability to round a number and truncate it. When you multiply by 2, Don't use the * operator to perform the operation (use shift operators). It must also be able to reverse the sign of a number.
-Includes sufficient error checking to ensure that the user only enters valid input. Make use of the String, Character and other wrapper classes
-Is able to do conversions between decimal, octal and hexadecimal numbers.
-Makes use of a menu. You should give the user the option to end the program when enters a certain option.
-Displays a message for the user, stating the current time, calculates and displays how long the user used your program, when the program exits.
Write a program to implement the following: create a class representing a
company where a company has a minimum and maximum limit of the
quantity of products. Allow the user to order from the company product
list (create a list of any ten products). Apply proper constraint if user
order more than the quantity available with the company. Based on the
quantity generate the customer bill.