Questions
Write a C program for a library automation which gets the ISBN number, name, author and...

Write a C program for a library automation which gets the ISBN number, name, author and publication year of the books in the library. The status will be filled by the program as follows: if publication year before 1985 the status is reference else status is available. The information about the books should be stored inside a linked list. The program should have a menu and the user inserts, displays, and deletes the elements from the menu by selecting options. The following data structure should be used. struct list{ char ISBN[ 20 ]; char NAME[ 20 ]; char AUTHOR[ 20 ]; int YEAR; char STATUS[20]; struct list *next; }INFO; The following menu should be used in the program. Press 1. to insert a book Press 2. to display the book list Press 3. to delete a book from list Hint: use strcpy to fill STATUS.

In: Electrical Engineering

Find the design cooling and heating loads of UC 1017. Consider UC 1017 is a detached...

Find the design cooling and heating loads of UC 1017. Consider UC 1017 is a detached room. You are free to assume any values reasonably for the calculation. Consult different charts, tables and climate data as necessary. Assuming 50% fresh air and 50% of recirculated air passing through the evaporator coil and the by-pass factor of 0.2, find the dew point temperature of the coil and the capacity of the coil.

I need you to provide the Table and the calculation for everything.

the room size = Hight 6.6 m , width 18m, length 14.5m

I'll attach an example for a student work from last year that I'd like you to follow.

In: Mechanical Engineering

a) Discuss the benefits of wireless network communication with a simple example. b) Explain why wireless...

a) Discuss the benefits of wireless network communication with a simple example.

b) Explain why wireless network communication is slower than wired network communication on most occasions.

c) Wireless bridges are gaining popularity in connecting discrete campuses or business premises. Discuss the advantages and disadvantages of wireless bridges.

In: Computer Science

I am starting my doctorate in finance at age of 21 at liberty university, is the...

I am starting my doctorate in finance at age of 21 at liberty university, is the degree worthy tt? what can I do? I am expected to graduate when im 23. Potential careers?

In: Accounting

A cross-sectional study was conducted on the association between passive smoke inhalation and the occurrence of...

A cross-sectional study was conducted on the association between passive smoke inhalation and the occurrence of dental caries in children. (Passive smoke exposure occurs when children live with family members who smoke.) The investigators thought that conclusions from this study were limited because of the cross-sectional nature of the data. Suppose that they asked you for advice and you told them that they should have conducted a prospective cohort study because it is a better study design.

a. Briefly describe the specific limitation of a cross-sectional study is avoided by conducting a prospective cohort study.

b. The investigators take your advice and hire you to help them design a new prospective cohort study. They want to know if they should use a special or a general cohort to assemble the exposed population. Briefly describe each of these options, tell them which one is best in this setting, and explain your reasons.

c. The investigators also ask you about the options for selecting a comparison group in a cohort study. Briefly describe the three different options and state which one is best in this setting and why.

In: Statistics and Probability

The table describes various degrees earned by men and women in foreign languages in 1992. Bachelor...

The table describes various degrees earned by men and women in foreign languages in 1992.

Bachelor Masters Doctorate Total

Male 3990 971 378 5339

Female 9913 1955 472 12340

Total 13903 2926 850 17679

(a) What percent of females take Doctorate degrees? (b) What percent of Masters degree holders were men? (c) Now test the null hypotheses that obtaining degrees in languages is independent of gender. Give the null and alternative hypothesis, compute the test statistic χ 2 and its degrees of freedom. (d) Is a χ 2 test appropriate for this task? (e) Use the χ 2 table to bound your P-value. What is your conclusion at α = 0.05?

In: Statistics and Probability

Using logical equivalence laws, show that (((p v ~ q) ⊕ p) v ~p) ⊕ (p...

Using logical equivalence laws, show that (((p v ~ q) ⊕ p) v ~p) ⊕ (p v ~q) is equivalent to p v q. v = or, ~ = not, ⊕ = exclusive or (XOR). Please show the steps with the name of the law beside each step, thanks so much!

In: Computer Science

⦁   Identify two (2) community resources and two (2) community networks that are relevant to aged...

⦁   Identify two (2) community resources and two (2) community networks that are relevant to aged care client services.
⦁   Community Resources

Guidance: Community resources are officially published resources (e.g. brochures, guidelines, and fact sheets). Ensure that you state the official title of the document and who published it.

Use the format – [Document title] by [Author]. If the document was provided by an entity such as an organisation or government agency, then the name of that organisation/agency will suffice as author information.

⦁   Community Networks

Guidance: Community networks are health and mental health care services, aged care services, disability services, educational institutions, and community organisations.

In: Nursing

HIMT 345 Homework 05: Functions Overview: Examine PyCharm’s “Introduction to Python” samples for Functions. Use PyCharm...

HIMT 345
Homework 05: Functions
Overview: Examine PyCharm’s “Introduction to Python” samples for Functions. Use PyCharm to work along with exercises from Chapter 4. Modify the grade assignment program of Hwk 04 to utilize a function by copying the Hwk04 project and creating the Hwk05 project.
Prior Task Completion:
1. Read Chapter 04
2. View Chapter 04’s video notes.
3. As you view the video, work along with each code sample in PyCharm. The examples used in the video are available for you to experiment with if you downloaded the complete Severance source files for Chapters 3-10.
a) With PyCharm open, locate the .zip file entitled Ch 4 Functions PPT Code Samples.zip.
b) Open each of the project files for that chapter in PyCharm. Note: The code samples are numbered in the order they are covered in the video.
c) Start the video and follow along.
4. Complete Exercises 4.1 – 4.5 (not handed in).
Specifics: PyCharm’s “Introduction to Python” project contains multiple examples giving the basics of conditional expressions (see list at right). Follow the instructions to complete them. (Not handed in.)
Use PyCharm to work along with the video solution for Exercise 4.6 from the textbook. Try to make the same mistakes (and fixes) made by the author. (Not handed in.)
Create a copy of your Hwk04 project file, calling it Hwk05.
1. Highlight the Hwk04 project, select Refactor/Copy.
Important: Do not skip the process of following along with the videos. It is a very important part of the learning process!
2. Give it a New name: of Hwk05 and leave the To directory: in its default state.
Leave the “Open copy in editor” box checked.
3. After clicking OK, if the project fails to open, just open it manually as you would
any project (File | Open | Hwk05 project).
You may immediately delete Hwk04b as it is not needed in this assignment. You may
need to Refactor | Rename both the project name and the existing Hwk04a.py file, as
only the directory was renamed by PyCharm in creating the copy.
Having renamed Hwk04a to Hwk05_YourLastName.py, your task is to determine the
letter grade using a function.
Here is some pseudocode* to guide the process:
(NOTE: The assign_grade function must be declared at the top of the Python file.)
Prompt for the test score, using try-except to verify it is valid
Invoke (call) the function, supplying it the test score and it returning the appropriate
letter grade;
e.g. letter_grade = assign_grade(test_score)
Display the test score and appropriate letter grade.
What to hand in:
Take screen shots of the console window verifying correct handling of bad input as well
as letter grades for one test score in each grade range. Copy the screen shots into a
Word document (filename Hwk05_YourLastName_Screenshots.doc) with your name and
date in the upper right hand corner. Upload the Word doc and the Python program file
(Hwk05_YourLastName.py) to the appropriate assignment in the LMS.
NOTE: As was described in the previous assignment, each Python file you create should
be documented with (minimally) the following three lines at the top of each file:
# Filename: Hwk03.py
# Author: <Your Name>
# Date Created: 2016/09/05
# Purpose: <brief description>
(*) pseudocode: a notation resembling a simplified programming language, used in
program design.

In: Computer Science

A client at a software design company wants assistance processing their documents. After interviewing the client...

A client at a software design company wants assistance processing
their documents.  After interviewing the client you find that their
documents consist of a one sentence title, a date, and a series of
paragraphs.  Each paragraph is a simple list of sentences.  Paragraphs
are separated by new lines.  Each document also has an author (first
and last name) and a document access level (open, internal or
confidential).

 At a minimal level the client would like the software to be able to:
* Count the number of words in the document (with or without the
  title)
* Count the number of characters in the document
* Print out a document
* Print out the date of the document
* Print out the author of the document

Additional desirable features:
* Count the number of a particular type of word (noun, verb, proper
  noun or other) 
* Given a title, date, author and a string for the remaining document,
  create a document file
* Spell check the document 

In: Computer Science