Please Build the genetic code of the name CRICK
In: Biology
Name the special purpose registers in ARM ISA
In: Computer Science
name two differences in Chappe's and mMorse's inventions
In: Computer Science
I cannot get this code to run on my python compiler. It gives me an expected an indent block message. I do not know what is going on.
#ask why this is now happenning. (Create employee
description)
class employee:
def__init__(self, name, employee_id, department, title):
self.name = name
self.employee_id = employee_id
self.department = department
self.title = title
def __str__(self):
return '{} , id={}, is in {} and is a {}.'.format(self.name,
self.employee_id, self.department, self.title)
def main():
# Create employee list
emp1 = Employee(name='Susan Meyers', employee_id='47899',
department='Accounting', title='Vice President')
emp2 = Employee(name='Mark Jones', employee_id='39119',
department='IT', title='Programmer')
emp3 = Employee(name='Joy Rogersr', employee_id='81774',
department='Manufacturing', title='Engineer')
print(emp1, sep='/n/n')
print(emp2, sep='/n/n')
print(emp3, sep='/n/n')
if __name__=="__main__":
main()
In: Computer Science
// Creates a Breakfast class
// and instantiates an object
// Displays Breakfast special information
using System;
using static System.Console;
using System.Globalization;
class DebugNine2
{
static void Main()
{
Breakfast special = new Breakfast("French toast", 4.99);
//Display the info about breakfast
WriteLine(special.INFO);
// then display today's special
WriteLine("Today we are having {0} for {1}",
special.Name, special.Price.ToString("C2", CultureInfo.GetCultureInfo("en-US")));
}
}
class Breakfast
{
public string INFO =
"Breakfast is the most important meal of the day.";
// Breakfast constructor requires a
// name, e.g "French toast", and a price
public Breakfast(string name, double price)
{
Name = name;
Price = price;
}
public string Name {get; set;}
public double Price {get; set;}
}
I need help to Fixed bug(s) in Breakfast class
The provided file has syntax and/or logical errors. Determine the problem(s) and fix the program. C#
In: Computer Science
Use inheritance to implement the following classes: A: A Car that is a Vehicle and has a name, a max_speed value and an instance variable called the number_of_cylinders in its engine. Add public methods to set and get the values of these variables. When a car is printed (using the toString method), its name, max_speed and number_of_cylinders are shown. B: An Airplane that is also a vehicle and has a name, a max_speed value and an instance variable called the number_of_engines it has. Add public methods to set and get the values of these variables. When an airplane is printed (using the toString method), its name, max_speed and number_of_engines are shown. C: Write a VehicleDemo.java class that does the following: 1- Creates an instance of a Car and an Airplane class. 2- Assign values to the name, speed, number_of_cylinders (for the Car object) and number_of_engines (for the Airplane object) variables. 3- Compares which vehicle goes faster and prints the result. 4- Prints the instances of the car and airplane classes.needed coding in java
In: Computer Science
To store the information about a city and its weather forecast, create a struct that holds the city's name (string), population (int), and a forecast array storing 7 string elements representing the city's weather in the next 7 days.
The program will then accept user input to enter the name and population of the city, then it accepts 7 string inputs to store into the forecast array.
Then the program will output the city's name, population, and forecast data.
Ex: If the inputs are:
Houston 2313000 sunny sunny sunny rainy thunderstorm sunny sunny
the function outputs:
Houston Population: 2313000 7 Day Forecast: Day 0: sunny Day 1: sunny Day 2: sunny Day 3: rainy Day 4: thunderstorm Day 5: sunny Day 6: sunny
Your program must name the struct "city" with name, population, and forecast as the corresponding member names!
Your program must define and call this function to output the city information:
in c++
In: Computer Science
A common design requirement is that an environment must fit the range of people who fall between the
5th
percentile for women and the
95th
percentile for men. In designing an assembly work table, the sitting knee height must be considered, which is the distance from the bottom of the feet to the top of the knee. Males have sitting knee heights that are normally distributed with a mean of
21.9
in. and a standard deviation of
1.2
in. Females have sitting knee heights that are normally distributed with a mean of
19.2
in. and a standard deviation of
1.1
in. Use this information to answer the following questions.
What is the minimum table clearance required to satisfy the requirement of fitting 95% of men? (round to one decimal as needed)
Determine if the following statement is true or false. If there is clearance for 95% of males, there will certainly be clearance for all women in the bottom 5%.
A.
The statement is true because some women will have sitting knee heights that are outliers.
B.
The statement is false because the 95th percentile for men is greater than the 5th percentile for women.
C.
The statement is false because some women will have sitting knee heights that are outliers.
D.
The statement is true because the 95th percentile for men is greater than the 5th percentile for women.
The author is writing this exercise at a table with a clearance of
23.5
in. above the floor. What percentage of men fit this table?
The author is writing this exercise at a table with a clearance of
23.5
in. above the floor. What percentage of men fit this table? (round to two decimals)
What percentage of women fit this table? (round to two decimals)
Does the table appear to be made to fit almost everyone? Choose the correct answer below.
A.
The table will only fit 1% of women.
B.The table will fit only
99%
of men.
C.The table will fit almost everyone except about
99%
of men with the largest sitting knee heights.
D.
Not enough information to determine if the table appears to be made to fit almost everyone.
In: Statistics and Probability
In: Economics
1. Dictyosteliomycetes (_____________ slime molds)
2. Myxomycetes (____________________slime molds)
3. What is the name of the molecule used by cellular slime molds to start aggregation?
4. What is the name of the first aggregation of dyctiostelid myxoamoeba?
5. What is a grex? What is the name structure produced aftere the grex stops moving?
6. What are the cells that can act as gametes?
please answer (all) fill in the blanks and briefly explain thanks!
In: Biology