Questions
1.         Describe who is covered/protected by the Homeowners Policy. 2.         Describe the four coverages found in...

1.         Describe who is covered/protected by the Homeowners Policy.

2.         Describe the four coverages found in Section One (Property Coverage) of the Homeowners Policy. Give an example of a loss covered by each section.

3.     Describe the two coverages found in Section Two (Personal Liability) of the Homeowner’s Policy. Give an example of a loss covered by each section.

4.         What is the difference between a “named perils” policy and an “open perils” policy?

5.         List and briefly explain the exclusions under the Homeowner’s Liability coverage?

6.         List and briefly explain the exclusions under the Homeowner’s Five – Comprehensive form property coverage?

7.         List the insured named perils as found in the Homeowner’s Three – Special form property coverage

8.         List and briefly describe three commonly used policy endorsements to the Homeowner’s Insurance policy

In: Finance

IN C++. Objective: Create a Singly linked list of numbers based upon user input. Program logic:...

IN C++.

Objective: Create a Singly linked list of numbers based upon user input. Program logic: Ask for a number, add that number to the front of the list, print the list. Repeat until they enter -1 for the number. . Sample Input: 10, 15, 5, 2, 4, -1 Output: 4, 2, 5, 15, 10.

Next sort all the numbers using selection sort and display them. Next give the user option to search for a specific number in the list. If the user desired number exist output "the number you entered exists" else output "this number does not exist".

Next ask user if they want to delete a specific number. Delete and display an appropriate message. If the user specified number does not exist display an appropriate message.

Don't use class. Structs and nodes only

In: Computer Science

Given the html below, create css to produce the following illustrated color page output: Red for...

  1. Given the html below, create css to produce the following illustrated color page output:

Red for outer paragraph and outer list

Green and italic for first inner div paragraph, green for second div paragraph, blue for inner list

HTML File

<html>

<head>

      <link rel="stylesheet" type="text/css" href="mystyle98_d.css">

</head>

<body>

             <p>

    I'm a paragraph, what color am I ?

     </p>

   <ul>

     <li id = "fix"> I'm a list item;what color am I? </li>

       </ul>

<div class = "central1">

<p class ="above">

  I'm a paragraph; what color am I?

  </p>

     <p>

    I'm another paragraph, what color am I ?

     </p>

   <ol>

     <li id = "fix1"> I'm another list item;what color am I? </li>

       </ol>

          </div>

</body>

</html>

In: Computer Science

IN C++. Objective: Create a Singly linked list of numbers based upon user input. Program logic:...

IN C++. Objective: Create a Singly linked list of numbers based upon user input. Program logic: Ask for a number, add that number to the front of the list, print the list. Repeat until they enter -1 for the number. . Sample Input: 10, 15, 5, 2, 4, -1 Output: 4, 2, 5, 15, 10. Next sort all the numbers using selection sort and display them. Next give the user option to search for a specific number in the list. If the user desired number exist output "the number you entered exists" else output "this number does not exist". Next ask user if they want to delete a specific number. Delete and display an appropriate message. If the user specified number does not exist display an appropriate message. Don't use class. Structs and nodes only

In: Computer Science

Air pollution is a climate that "harms" our health and think of how you might explain...

  1. Air pollution is a climate that "harms" our health and think of how you might explain the problem to someone who says "climate has no effect on health". Write a brief paragraph: state the "harm" and what's causing it. Give an example of the negative health impacts (what happens if someone is affected by this?). List 3 things someone could do to protect themselves from this. Cite your sources!
  2. Let's learn about medical marijuana. Find a reputable website with information about medical marijuana. Answer the following: List 5 conditions/health symptoms that medical marijuana *might* help. List 5 potential benefits of medicinal marijuana. List 3 potential negative side effects of use. Briefly answer the question: Is medical marijuana legal in the state of Ohio? How does someone get it? Cite your sources

In: Biology

QUESTION 1 Define the term coenzyme. 2 pts. Name and describe the role of the B...

QUESTION 1

Define the term coenzyme. 2 pts.

Name and describe the role of the B vitamins that function as part of the structure of coenzymes. 4 pts.

QUESTION 2

Why does following a vegan diet result in risk for B-12 deficiency? 2 pts.

What is Vitamin B-12 deficiency, list 3 ways to supplement for this deficiency and list when each method is appropriate. 3 pts.

QUESTION 3

How do the vitamins function in the metabolic process? (list the vitamins) 5 pts.

QUESTION 4

Define the term ‘function foods’ 2 pts. List 2 sources and the benefit 2 pts.

QUESTION 5

Calcium and Iron are most likely to fall short in the diet. What is the result of this inadequate intake? 2 pts.

What dietary changes can promote improved intake and reduce risk of deficiency? 4 pts.

In: Nursing

you are required to use only the functional features of Scheme; functions with an exclamation point...

you are required to use only the functional features of Scheme; functions with an exclamation point in their names (e.g., set!) and input/output mechanisms other than load and the regular read-eval-print loop are not allowed. (You may find imperative features useful for debugging. That’s ok, but get them out of your code before you hand anything in.)

Write a function explode that, given a list of tuples, (n x), creates a new list by inserting x into the list n times in place of (n x) (in other words, the inserted items should come in the same order as the original tuples when you create the new list). You can assume that n will always be at least 0.

> (explode ‘((2 "Hello")))

("Hello" "Hello")

> (explode ‘((2 "Hello") (3 "world")))

("Hello" "Hello" "world" "world" "world")

using the programming language scheme

In: Computer Science

Data Structure 17. Given: (e + f) / a – b * c Write out the...

Data Structure

17.

Given: (e + f) / a – b * c

Write out the postfix form

19. Make a prototype, including task, input and output, of compareLists that would take two lists of reference (ArrayList) and return a count of matching items (note, do NOT code the function)

20.Using the Stack operations, write a pseudocode routine, dupPos, that takes aStack for integers, checks to see if the top is positive. If positive, duplicate the top of the stack (i.e. pop a copy of that value onto the stack). If it is negative, pop it off.

21.Use the ListInterface operations only to create a makeEven routine in C++ that will take a list of integers (array or linked, your choice) as a reference. Use the list operations on the passed list to make all items that are odd into even values.

22.What is the main difference between an ADT List and the ADT Stack?

In: Computer Science

1- Given following data structure of Single linked list :           class ListNode                     &n

1- Given following data structure of Single linked list :

          class ListNode                        

           { int item ;                             

             ListNode next ;                        

             ….

           }

Choose the correct answer :                                                           

  1. Suppose reference refers to a node in a List (using the ListNode ) . What statement changes reference so that it refers to the next node?

                       1-      reference++ ;

2-    reference = next ;

3-    reference+= next ;

  1. reference = reference.next ;
  1. Suppose p refers to a node in a List (using the ListNode ) . What boolean expression will be true when p refers to the last node of the List?

1-   (p == null)

2- (p.next == null)

  1. (p.item == null)

4- (p.item == 0)

      5- None of the above.

  1. Which boolean expression indicates whether the items in two nodes (n and m) are the same. Assume that neither n nor m is null.

1-   n == m

2-   n.item == m.item

  1. n.next == m.next

4- None of the above

In: Computer Science

Static methods can be called directly from the name of the class that contains the method....

Static methods can be called directly from the name of the class that contains the method. Static methods are usually created to do utility operations. For example: public class Test{ public static int timesTwo(int value){ return value * value; } } public class TestDriver{ public static void main(String[] args){ int var = Test.timesTwo(5); System.out.println(var); } } Create a class called ManyLinkedLists. It will contain a static method called createLinkedList(). That method takes an argument that is a constant defined in the ManyLinkedLists class. The identifier of the constants should describe a type of linked list. When the createLinkedList method is called, it should return a linked list object of the type identified by the constant. For example: DoubleEndedList del = ManyLinkedLists.createLinkedList(ManyLinkedLists.DOUBLEENDEDLIST); Give the createLinkedList method the ability to return the linked lists described below: A double-ended linked list. A doubly linked list.

In: Computer Science