Discuss different steps and approaches involved in estimating time? Please explain in brief the different steps involved in the Critical Path Model as part of Project Scheduling.
Please give answer in more than 400 words and prefer to paste from word or excel or type as plain text.
In: Accounting
Suggest one or more analysis pattern for the following application domains: PLEASE DO NOT HAND WRITE THE ANSWER!! PLEASE ANSWER ALL PARTS OF THE QUESTION!!
A) Accounting Software
B) Email software
C) Internet Browsers
D) Word - Processing software
E) Website creation software
In: Computer Science
How Can Decision-Making Process be applied To any organization that you think of. Discuss with practical examples. Follow all steps of decision making process from top to bottom.
It Should include.
Executive summary
Introduction
Analysis
Conclusion & Recommendations
Word limit is 5000 (words)
In: Operations Management
Part 5
Assume an economy is in recession and the government is considering using fiscal stimulus measures to boost spending, production and employment.
a) Using the IS-LM curve diagram, illustrate the crowding out problem that could occur as a result of increased government spending. Make sure to clearly indicate the new equilibrium position including showing how both the interest rate and level of Y change.
b) Explain how 'crowding out' can harm productivity growth.
c) Explain how the 'crowding out' problem associated with increased government spending can be avoided. In your answer identify any additional policy that is needed.
At the end of your answer to Part 5 state the combined word count for sub-parts b and c. Your answer to Part 5 sub-part b and c should not exceed 150 words.
(3 marks for sub-part a, 1.5 marks each for sub-parts b and c plus 0.25 marks for satisfying the word count requirements - Part 5 worth 6.25 marks)
Part 6
The recent Federal Budget featured significant tax cuts to help stimulate the Australian economy which is currently in recession. Shortly after the announcing the budget, Treasurer Josh Frydenberg announced: “These tax cuts will put more money into people’s pockets and that money will be spent across the economy and that money will help create jobs.”
With reference to what you have learned about fiscal policy as part of this course, and in light of the current economic situation in Australia discuss the logic behind the Treasures statement. In your answer identify whether or not, or to what extent you agree with the Treasurer and explain why. In your answer draw on relevant evidence and examples as necessary to support your answer.
At the end of your answer to Part 6 state the word count. Your answer to Part 6 should not exceed 200 words.
(5 marks plus 0.25 marks for satisfying the word count requirements - Part 6 worth 5.25 marks)
can you give the preferences as well
In: Economics
Complete the following statements to describe how independent assortment contributes to genetic variation. Not all choices will be used.
During independent assortment, ____________ chromosomes separate.
This separation is ____________ ; it is due to their alignment down the metaphase plate.
The maternal or paternal homologue may be oriented toward either ____________ .
This randomized separation aids in genetic ____________ for offspring.
This variation helps in the long-term ____________ of the species.
Word Bank:
|
extinction |
non-sister |
Survival |
|
homologous |
Plate |
Variation |
|
identical |
pole |
random |
Complete the following statements of how meiosis increases genetic variation. Not all choices will be used.
Two events within meiosis increase variability. During prophase I, ____________ and crossing-over occurs.
This event allows for ____________ to break and rejoin.
This results in two chromosomes with a different combination of ____________ than they had before.
During metaphase I, homologous pairs align ____________ at a cell's equator.
This results in random separation of maternal and paternal chromosomes when the cell divides, creating ____________ combinations of final chromosome combinations in human cells.
Word Bank:
|
autosomes |
8 |
independently |
synapsis |
|
6.02 x 10²³ |
dependently |
maternal and paternal |
nonsister chromatids |
|
64 |
genes |
sister chromatids |
2²³ |
Complete the following statements to describe the differences between chromosomes and chromatin. Not all choices will be used.
Genetic material within the nucleus of a cell is typically arranged as ____________ , or long tangled collections of DNA and proteins.
During cell division, this DNA condenses into tightly coiled structures to form ____________ .
Humans have 46 of these; 22 of these pairs are called the ____________ and one pair is called the ____________ chromosomes.
These ____________ chromosomes control gender. Males have ____________ X chromosome and a Y chromosome, while females have ____________ X chromosomes.
Word Bank:
|
autosomes |
determinate |
two |
|
chromatin |
one |
|
|
chromosomes |
sex |
Complete the following statements to describe the differences between chromosomes and chromatin. Not all choices will be used.
Duplicated chromosomes called ____________ chromatids, contain the same genes.
They are held together by a region called the ____________ .
The chromatids remain together until a phase within mitosis, where the ____________ splits.
At this point, the chromatids separate and two individual ____________ chromosomes are fully formed.
Word Bank:
|
brother |
daughter |
centromere |
|
sister |
center point |
In: Biology
Creating a Dictionary (python 3)
Description
Larry is an immigrant in the USA and has a hard time
understanding English there. So he decides to make a software that
will tell him the synonyms of the word that he types. He has asked
you for help.
Remember, you will first need to choose a data structure that
you will use to store the information about the words. You can use
lists or dict or tuple or anything else for this purpose.
There will be two actions involved:
Action 1 = Store the following words as synonyms of each other.
Action 2 = Always followed by one word. Print ALL the synonyms of that word in alphabetical order (note: the synonyms printed should not have the query word).
Input:
The input will be one list whose first entry is an int ‘test’ and all other subsequent entries will be lists. ‘test’ will represent the number of lists that follow.
Each of the following lists will consist of a number as its zeroth index (1 or 2) denoting the action to be taken on the words.
Output:
Each action 2 will print the synonyms in the order it is called.
Sample input:
[ 7,
[1,'good','sound','first-class'],
[1,'enough', 'abundant'],
[1,'adequate', 'enough', 'ample'],
[2, 'adequate'],
[2, 'good'],
[1, 'bright', 'illuminous'],
[2, 'cs'] ]
Sample output:
adequate: abundant,ample,enough good: first-class,sound cs:
Explanation:
There are three queries for Action 2 and, hence, the output will have three lines.
Line 1: Adequate has three synonyms ( [1,'enough', 'abundant'], [1,'adequate', 'enough', 'ample'],).
So the three synonyms will be printed in alphabetical order:
Enough: abundant,ample,enough
Line 2: Good has two synonyms ( [1,'good','sound','first-class'] ).
So the two synonyms will be printed in alphabetical order:
Good: first-class, sound
Line 3: there are no synonyms added for cs and hence no synonyms
will be printed, but just “cs: ”.(Note space after cs: )
Note that the print order is the same as the order in which ACTION2
is called i.e. adequate, good, cs
In: Computer Science
problem 2
Retail products are identified by their Universal Product Codes (UPCs). The most common form of a UPC has 12 decimal digits: The first digit identifies the product category, the next five digits identify the manufacturer, the following five identify the particular product, and the last digit is a check digit. The check digit is determined in the following way:
• Beginning with the first digit multiply every second digit by 3. • Sum all the multiplied digits and the rest of the digits except the last digit. • If the (10 - sum % 10) is equal to the last digit, then the product code is valid. • Otherwise it is not a valid UPC.
The expression is: sum = 3.x1 + x2 + 3.x3 + x4 + 3.x5 + x6 + 3.x7 + x8 + 3.x9 + x10 + 3.x11 where the x’s are the first 11 digits of the code.
If you choose to add the last digit also in the second step and if the sum is a multiple of 10, then the UPC is valid. Either way, you still need to perform the modular division to check whether the given number is a valid code. In this problem, you need to use either a string or long long integer type for the product code because it is 12 digits long. If you use string, you can convert one character substring of the string in to a single digit integer from left to right using the function stoi(str.substr(i,1)). This way you do not need to get last digit of the number and then divide the number by 10.
in c++
problem 3
Translate the following pseudocode for randomly permuting the characters in a string into a C++ program. Read a word. repeat word.length() times Pick a random position i in the word, but not the last position. Pick a random position j > i in the word. swap the letters at positions j and i. Print the word. Please work on this problem after we learn to generate random numbers in the class which is on Wednesday the latest. These problems only deal with simple loop while, for and do loops. You will get a second set of problems next week on nested loops.
In: Computer Science
Write a program that prompts the user for a file name, make sure the file exists and then reads through the file, counts the number of times each word appears and outputs the word count in a sorted order from high to low.
The program should:
the - 7
in - 6
to - 5
and - 4
of - 4
File Name: NYT2.txt
File Content:
Fact-Checking Trump’s Orlando Rally: Russia, the Wall and Tax Cuts President Trump delivered remarks in Florida in a formal start to his re-election effort. Deutsche Bank Faces Criminal Investigation for Potential Money-Laundering Lapses Federal authorities are focused on whether the bank complied with anti-money-laundering laws, including in its review of transactions linked to Jared Kushner. Five NY1 Anchorwomen Sue Cable Channel for Age and Gender Discrimination The women, including Roma Torre, say their careers were derailed after Charter Communications bought New York’s hometown news station in 2016. Hypersonic Missiles Are Unstoppable. And They’re Starting a New Global Arms Race. The new weapons — which could travel at more than 15 times the speed of sound with terrifying accuracy — threaten to change the nature of warfare. Nxivm’s Keith Raniere Convicted in Trial Exposing Sex Cult’s Inner Workings Mr. Raniere set up a harem of sexual “slaves” who were branded with his initials and kept in line by blackmail. Jamal Khashoggi Was My Fiancé. His Killers Are Roaming Free. Washington hasn’t done enough to bring the murdered Saudi columnist’s killers to justice.
In: Computer Science
Examples
Example 1: Write pseudo code that reads two numbers
and multiplies them together and print out their product. Example
2: Write pseudo code that tells a user that the number they entered
is not a 5 or a 6.
Example 3: Write pseudo code that performs the
following: Ask a user to enter a number. If the number is between
0
and 10, write the word blue. If the number is between
10 and 20, write the word red. if the number is between
20 and 30, write the word green. If it is any other
number, write that it is not a correct color option. Example 4:
Write pseudo code to print all multiples of 5 between 1 and 100
(including both 1 and 100). Example 5: Write pseudo code that will
count all the even numbers up to a user defined stopping point.
Example 6: Write pseudo code that will perform the
following.
a) Read in 5 separate numbers.
b) Calculate the average of the five
numbers.
c) Find the smallest (minimum) and largest (maximum)
of the five entered numbers.
d) Write out the results found from steps b and c with
a message describing what they are
Homework 1: Write pseudo code that reads in three
numbers and writes them all in sorted order.
Homework 2: Write pseudo code that will calculate a
running sum. A user will enter numbers that will be added to
the
sum and when a negative number is encountered, stop
adding numbers and write out the final result
In: Computer Science
Write a complete Java Program to solve the following problem.
February 18 is a special date as this is the date that can be divisible by both 9 and 18
Write a program that asks the user for a numerical month and numerical day of the month and then determines whether that date occurs before, after, or on February 18.
If the date occurs before February 18, output the word Before. If the date occurs after February 18, output the word After. If the date is February 18, output the word Special.
Note: Passing the sample test cases are not enough to earn the full marks. You need to test your program for different months and dates to see whether your program will work in all the cases.
Input
The input consists of two integers each on a separate line.
These integers represent a date in 2015.
The first line will contain the month, which will be an integer in
the range from 1 (indicating January) to 12 (indicating
December).
The second line will contain the day of the month, which will be an
integer in the range from 1 to 31. You can assume that the day of
the month will be valid for the given month.
Output
Exactly one of Before, After or Special will be printed on one line.
Sample Input 1
1 7
Sample Output 1
Before
Sample Input 2
8 31
Sample Output 2
After
Sample Input 3
2 18
Sample Output 3
Special
Must be coded in java. Easy code for grade 11 class
In: Computer Science