Discuss the relevance of any four managerial functions of the Teacher- In- Charge (TIC) in an infant school( 40 marks) 3 pages Childhood
In: Operations Management
Sketch a simple pendulum displaced at a small angle. Draw and label all forces acting on the mass. Resolve the component of gravity in the direction of motion. Use Newton's 2nd law to write the dynamic equation that predicts the acceleration of the mass.
Why must the angle be kept small? (Here, it's asking about the experiment with a pendulum that I just did and why the angle had to be kept smaller than 10 degrees)
In: Physics
The four methods needed for the assignment are specified in the Main class. Include a documentation comment with proper annotations for each of these four methods. Keep in mind that all four methods will be static and void. Additionally, there should be no throws clauses for any of the methods of this program. All exceptions should be properly handled with try-catch blocks. Refer to the following directions for each of the makeFile,readFile, writeFile, and deleteFile methods, respectively:
●Use the createNewFile() method of Java’s File class to add files to a subdirectory (folder)within the project directory. Let the user know if the file was successfully created or if anything goes wrong during the file creation process.
●Read from files using the Scanner class. Be sure to properly handle any exceptions inthe event that the file cannot be found or that the contents of the file cannot be read.Print the contents of the file to the console.
●Write to files using a combination of the FileWriter and PrintWriter classes. New content should be appended to the file rather than overwriting the current contents. Check that the file exists and throw an exception if it does not; do not rely on the PrintWriter class to create a new file to write to. Be sure to properly handle any exceptions in the event that the file cannot be found or that content cannot be written to the file.
●Use the delete() method of Java’s File class to delete files from the subdirectory. Let the user know if the file was successfully deleted or if anything goes wrong during the file deletion process.
The program used is Java script and requires two classes for the project, one- Main class and the second- FileHandler class. the File handler class should be able to create, read, write, and delete files.
public class Main
{
public static void main(String[] args)
{
Scanner keyboard = new
Scanner(System.in); // Scanner object to read user
input
String fileName = "";
// The name of a file to
perform actions on
String content = "";
// Content to be written to a
file
String line = "";
// An
individual line of content
int choice = -1;
// User's
selection
while (choice != 5)
{
System.out.println("1. Create a file\n2. Read from a file\n3. Write
to a file\n" +
"4. Delete a file\n5. Exit the program");
System.out.print("Please enter the number of your selection:
");
choice =
keyboard.nextInt();
keyboard.nextLine();
switch
(choice)
{
// Create a new file
case 1:
System.out.print("Please
enter the name of the new file: ");
fileName =
keyboard.nextLine();
FileHandler.makeFile(fileName);
break;
// Read from a file
case 2:
System.out.print("Please
enter the name of the file to read: ");
fileName =
keyboard.nextLine();
FileHandler.readFile(fileName);
break;
// Write to a file
case 3:
System.out.print("Please
enter the name of the file to write to: ");
fileName =
keyboard.nextLine();
line = "";
do
{
System.out.print("Please enter content to be added to the file
('end' to stop): ");
line =
keyboard.nextLine();
if
(!line.equals("end"))
content += line + "\n";
} while
(!line.equals("end"));
FileHandler.writeFile(fileName, content);
break;
// Delete a file
case 4:
System.out.print("Please
enter the name of the file to delete: ");
fileName =
keyboard.nextLine();
FileHandler.deleteFile(fileName);
break;
// Exit the program
case 5:
break;
// Warning for invalid input
default:
System.out.println("Please
enter a number from 1-5");
}
}
}
}
In: Computer Science
In 2004 astronomers reported the discovery of a large Jupiter-sized planet orbiting very close to the star HD 179949 (hence the term "hot Jupiter"). The orbit was just 19 the distance of Mercury from our sun, and it takes the planet only 3.09 days to make one orbit (assumed to be circular).
What is the mass of the star in kilograms?
(b) as a multiple of our sun's mass.
(c) How fast (in km/s) is this planet moving?
In: Physics
How can you predict industry changes using supply and demand? Elaborate. What are the sources of Economic Profit? Looking for some original content.
In: Economics
(I need an answer in c++ please / assignment question)
In a double linked chain, each node can point to the previous node as well as the next node.:
a. Define a class to represent a node in a doubly linked chain (UML)
b. Define a class to represent the doubly linked chain (UML), with operations such as:
1. finding its length.
2. add a new Node to the end of the chain.
3. check whether a given Node is included in the Chain (search a node)
4. another operation of your choice.
c. illustrate and list the steps to add to a node to the beginning of the doubly linked chain.
d. illustrate and list the steps necessary to remove the first noe from the doubly linked chain.
In: Computer Science
Jeeler's Netballs is a manufacturer of high-quality basketballs and volleyballs. Setup costs are driven by the number of batches. Equipment and maintenance costs increase with the number of machine-hours, and lease rent is paid per square foot. Capacity of the facility is 14,000 square feet, and Jeeler is using only 80% of this capacity. Jeeler records the cost of unused capacity as a separate line item and not as a product cost. The following is the budgeted information for Jeeler:
|
Jeeler's Netballs |
|
|
Budgeted Costs and Activities |
|
|
For the Year Ended December 31, 2017 |
|
|
Direct materials—basketballs |
$219,800 |
|
Direct materials—volleyballs |
464,150 |
|
Direct manufacturing labor—basketballs |
111,200 |
|
Direct manufacturing labor—volleyballs |
110,250 |
|
Setup |
99,000 |
|
Equipment and maintenance costs |
120,000 |
|
Lease rent |
168,000 |
|
Total |
$1,292,400 |
Other budget information follows:
|
Basketballs |
Volleyballs |
|
|
Number of balls |
57,000 |
120,000 |
|
Machine-hours |
13,000 |
12,000 |
|
Number of setups |
200 |
250 |
|
Square footage of production space used |
3,450 |
7,750 |
1.Calculate the budgeted cost per unit of cost driver for each indirect cost pool.
2.What is the budgeted cost of unused capacity?
3.What is the budgeted total cost and the cost per unit of resources used to produce (a) basketballs and (b) volleyballs?
4.Why might excess capacity be beneficial for JeelerJeeler? What are some of the issues JeelerJeeler should consider before increasing production to use the space?
In: Accounting
a. You are conducting a lab experiment on the promoter regions of genes. In one experiment you apply heat to two sections of DNA that you believe could be promoter regions. One region unwinds at 80 degrees C and the other unwinds at 60 degrees C. Which of the two strands contain the promoter? Explain.
b. Apply your knowledge of genetics to explain what would happen in a nucleus if histones were negatively charged.
In: Biology
There's a fine line between white-hat and gray-hat hackers and between gray-hats and black-hats. For instance, some experts consider gray-hat hackers an essential part of securing the Internet because they often expose vulnerabilities before they're discovered by the security community. Research the "definitions" of each of these types of hackers and answer the following questions.
In: Computer Science
1)Lets do a simple bayesian calculation.
60% of frogs are female, the rest male.
All male frogs sing, but only 10% of female frogs sing.
You hear a frog singing.
What is the posterior probability that this singing frog is male?
(hint! The probability of any frog singing is the probability of a singing female (.6 x .1) plus that of a singing male (.4 x 1))
1)23%
2)35%
3)75%
4)87%
2)Which is the most complicated model for molecular sequence evolution?
1)Jukes Cantor
2)F81
3)HKY
4)GTR
3)You run modeltest on your data and determine that you do not have equal frequencies of bases, but you don't see any evidence that transversions are any more or less common than translations. Which model should you use?
1)JC
2)F81
3)HKY
4)GTR
4)The support values on trees generated via bayesian methods convey:
1)How likely that clade is
2)What proportion of trees that are likely to come from the provided data contain the clade in question
3)How many substitions are found in the sequences between two taxa
4)The quality of the analysis
In: Biology
In: Other
For a particular redox reaction, ClO−2 is oxidized to ClO−4 and Fe3+ is reduced to Fe2+. Complete and balance the equation for this reaction in basic solution. Phases are optional.
Step by step please
In: Chemistry
A columnist for Forbes argues, "Even if China is always better than Spain at producing textiles, if the best thing that Spain could be doing is textiles, then that's what Spain should be doing".
a. What does the columnist mean by "China is always better than Spain" in the production of textiles (which include clothing, sheets, and similar products)? Was the columnist arguing that China has an absolute advantage over Spain in producing textiles, a comparative advantage, or both? Briefly explain with full sentences.
b. The columnist noted that, in fact, Spain exports significant quantities of textiles. If this description of the situation in China and Spain is accurate, briefly explain how Spanish firms are able to export textiles in competition with Chinese firms.
please explain thank you
In: Economics
A 5.00 kg block is moving at 3.00 m/s along a frictionless table and collides with a 2.00 kg block that is initially at rest. The two blocks stick together and then slide up a 20.0 ◦ frictionless inclined plane. What is the maximum distance the two blocks slide up the incline?
In: Physics
Offer an example of a strategic commitment you know of or that you believe would be beneficial to a firm in an industry. Explain why the commitment is irreversible, understandable and credible and give an indication of the position (tough or soft) it forces the firm into. Your discussion should make it clear why this move would be beneficial to the firm. Alternatively, your example may be of a strategic move that backfired. In this case, you should similarly describe the actions that constituted the commitment and explain why the commitment failed.
In: Economics