What is your opinion on a wife keeping her name? Is it a social issue? Is it an issue in your country? Please write at least one (1) argumentative paragraph.( 8 to 10 sentences ).
Wife Keep her Name by Norman Lobsenz
In: Psychology
In: Computer Science
In: Biology
Assume you have a subsystem with a failure rate of .00002 failures/hour. At least one such subsystem must work for the system to be functional. You can use up to 2 such subsystems (either 1 or 2) in a network:
List and Sketch 3 types (options) of networks that could be used to arrange such subsystems FROM THE WORST to the BEST Reliability
Network Option 1: WORST Reliability Case (Name and Sketch Below)
Network Option 2: Intermediate Reliability Case (Name and Sketch Below)
Network Option 3: Intermediate Reliability Case (Name and Sketch Below)
Network Option 4: BEST Reliability Case (Name and Sketch Below)
Please answer this question fully.
The Different types of Networks are: Series, Parallel, Series-Parallel, Parallel Series, K-Out-of-M, and Standby
In: Mechanical Engineering
Consider the following relational schema about a University (the primary keys are underlined and foreign keys are italic) STUDENT(StudentID, name, major, year, age) CLASS(ClassName, meetsAt, room, LecturerID) ENROLLED(StudentID, ClassName, mark) LECTURER(LecturerID, name, DepartmentID) DEPARTMENT(DepartmentID, name) Write the SQL statements for the following query:
B1. Find the age of the oldest student.
B2. Find the ID’s of lecturers whose name begins with “K” \
B3. Find the age of the youngest student who is enrolled in Mechatronics.
B4. Find the age of the oldest student enrolled in any of Max Headroom’s classes.
B5. Find the names of all classes that have more than 100 students enrolled
B6. Find the names of students who are not enrolled in any class
In: Computer Science
Write a class called CheckUserName. CheckUserName must have a main method. Your program must ask for a user name. If the name is on the list below (Liam, for example) greet the user saying: welcome back: Liam If the user is an admin (like Benkamin, for example) print: welcome back: Benjamin you have admin privileges Your program must accept upper case or lower case: emacs% java CheckUserName enter a user name: Liam welcome back: Liam emacs% java CheckUserName enter a user name: liam welcome back: liam Here is the list of users: Liam Noah William James Oliver Benjamin admin Elijah Lucas Mason Logan Alexander admin Ethan Jacob Michael Daniel admin Henry Jackson Sebastian
Don't use switch
In: Computer Science
Company organized into DEPARTMENT. Each department has unique name and a particular employee who manages the department. Start date for the manager is recorded. Department may have several locations. A department controls a number of PROJECTS. Projects have a unique name, number and a single location. Company’s EMPLOYEE name, ssno, address, salary, sex and birth date are recorded. An employee is assigned to one department, but may work for several projects (not necessarily controlled by her dept). Number of hours/week an employee works on each project is recorded; the immediate supervisor for the employee. Employee’s DEPENDENT is tracked for health insurance purposes (dependent name, birthdates, relationship to employee). Construct an ER Diagram for Company having given details. Construct appropriate tables for the above ER Diagram
In: Computer Science
Three employees in a company are up for a special pay increase. You are given a file, say Ch3_Ex5Data.txt, with the following data: Miller Andrew 65789.87 5 Green Sheila 75892.56 6 Sethi Amit 74900.50 6.1 Each input line consists of an employee’s last name, first name, current salary, and percent pay increase. For example, in the first input line, the last name of the employee is Miller, the first name is Andrew, the current salary is 65789.87, and the pay increase is 5%. Instructions Write a program that reads data from a file specified by the user and stores the output in the file Ch3_Ex5Output.dat. For each employee, the data must be output in the following form: firstName lastName updatedSalary. Format the output of decimal numbers to two decimal places.
Please paste the source code in C++
In: Computer Science
PHTHON 3
Write code that generates a list of the names of all the senders of the messages in fb_data. Store it in a variable called senders.
fb_data = {
"data": [
{
"id": "2253324325325123432madeup",
"from": {
"id": "23243152523425madeup",
"name": "Jane Smith"
},
"to": {
"data": [
{
"name": "Your Facebook Group",
"id": "432542543635453245madeup"
}
]
},
"message": "Understand. Extract. Repeat.",
"type": "status",
"created_time": "2014-10-03T02:07:19+0000",
"updated_time": "2014-10-03T02:07:19+0000"
},
{
"id": "2359739457974250975madeup",
"from": {
"id": "4363684063madeup",
"name": "John Smythe"
},
"to": {
"data": [
{
"name": "Your Facebook Group",
"id": "432542543635453245madeup"
}
]
},
"message": "Here is a fun link about programming",
"type": "status",
"created_time": "2014-10-02T20:12:28+0000",
"updated_time": "2014-10-02T20:12:28+0000"
}]
}
In: Computer Science
Write a Python program that asks the user to enter a student's name and 8 numeric tests scores (out of 100 for each test). The name will be a local variable. The program should display a letter grade for each score, and the average test score, along with the student's name. Write the following functions in the program: calc_average - this function should accept 8 test scores as arguments and return the average of the scores per student
determine_grade - This function should accept a test score average as an argument and return a letter grade for the score based on the following grading scale: 90-100 A 80-89 B 70-79 C 60-69 D Below 60 F
REMEMBER - to put your name on the lab in comments and put comments in your program for what the program is doing.
Don't forget the comments.
In: Computer Science