A heavy ball is dropped into a lake from a height of 30.0 m above...

A heavy ball is dropped into a lake from a height of 30.0 m above the water. It hits the water with a certain velocity and continues to sink to the bottom of the lake at this same constant velocity. It reaches the bottom of the lake 10.0 s after it was dropped. How deep is the lake?

Solved
Physics 3 Answer Labiba Rahman

You are requested to analyse any website of your choice according to elements of design...

Instructions: You are requested to analyse any website of your choice according to elements of design, implementation and usability. You are asked to produce a 1500 words report and consider the following:

The audience for the site. (5 marks)

Discuss two tasks that a user is likely to complete. (5 marks)

The usability of the navigation. (5 marks)

The effectiveness of the focal point. (5 marks)

 The visual interest of the overall page (typography, colour, amount of text/images, etc.). (5 marks)

The appropriateness and accuracy/readability of the text. (5 marks)

The appropriateness of the site to the business. (5 marks)

How responsive the site is. (5 marks)

Make suggestions to improve the site. (5 marks)

Grammar, style, and punctuation all count. Headings are strongly recommended. The assignment should be written in prose style and handed in on Blackboard. (5 marks)

References (10 marks). [Total Marks: 60]

in progress
Information System 1 Answer Oscar Murombo

Two particles A and B start from rest at x = 0 and move along parallel paths according to xA = 0....

Chapter 2, Practice Problem 2/105 Two particles A and B start from rest at x = 0 and move along parallel paths according to x

Two particles A and B start from rest at x = 0 and move along parallel paths according to xA = 0.17 sin(Ï€t/2) and xB = 0.08t , where xA and xB are in meters and t is in seconds counted from the start. Determine the time t (where t > 0 ) when both particles have the same displacement and calculate this displacement x.

Solved
Advanced Accounting 1 Answer Sandy Mand

Make a function "reverse" in your stack class that reverses the whole stack...

Problem: Make a function "reverse" in your stack class that reverses the whole stack. In your driver file (main.cpp), make integer stack, push some values in it, call the reverse function to reverse the stack, and then print the stack. header and .cpp files are given below. Need to use this.

 

/*StackType.h */

#ifndef STACKTYPE_H_INCLUDED

#define STACKTYPE_H_INCLUDED

#include <iostream>

using namespace std;

const int MAX_ITEMS = 5;

class FullStack

// Exception class thrown

// by Push when stack is full.

{

  void printExceptionMsg(){

    cout<<"Stack is full"<<endl;

  }

};

class EmptyStack

// Exception class thrown

// by Pop and Top when stack is empty.

{

private:

  string reason;

public:

  EmptyStack(string reason){

    this->reason = reason;

  }

  //int x = 5;

  void printExceptionMsg(){

    cout<<"Empty stack exception thrown from "<<reason<<endl;

  }

};

template <class ItemType>

class StackType

{

public:

  StackType();

  bool IsFull();

  bool IsEmpty();

  void Push(ItemType);

  void Pop();

  ItemType Top();

private:

  int top;

  ItemType items[MAX_ITEMS];

};

#include "StackType.tpp"

#endif // STACKTYPE_H_INCLUDED

 

/*StackType.tpp */

#include "StackType.h"

template <class ItemType>

StackType<ItemType>::StackType()

{

  //items = new ItemType[MAX_ITEMS];

  top = -1;

}

template <class ItemType>

bool StackType<ItemType>::IsEmpty()

{

  return (top == -1);

}

template <class ItemType>

bool StackType<ItemType>::IsFull()

{

  return (top == MAX_ITEMS-1);

}

template <class ItemType>

void StackType<ItemType>::Push(ItemType newItem)

{

  if(IsFull())

    throw FullStack();

  top++;

  items[top] = newItem;

}

template <class ItemType>

void StackType<ItemType>::Pop()

{

  if( IsEmpty() )

    throw EmptyStack("Pop function");

  top--;

}

template <class ItemType>

ItemType StackType<ItemType>::Top()

{

  if (IsEmpty())

    throw EmptyStack("Top function");

  return items[top];

}

 

Solved
Programming in C,C++ 1 Answer Elif Kurt

. Identify the separate components of a process and illustrate how they are represented and sched...

. Identify the separate components of a process and illustrate how they are represented and scheduled in an operating system.

Solved
COMPUTER SCIENCE 1 Answer Pushpa babu

Calculate the moment Mg of the 765-N force about the bolt at B. Simplify your work by first repla...

Calculate the moment Mg of the 765-N force about the bolt at B. Simplify your work by first replacing the force by its equiva

Replace the force by its equivalent force-couple system at A. Solve for Fand MA. Enter positive numbers for both F and MA 190

Solved
Mechanical Engineering 1 Answer akbarb mca

The regional sales manager of pandg group interviews sales representatives in the Midwest an...

The regional sales manager of pandg group interviews sales representatives in the
Midwest and asks them questions about the percentage of their time they spend making
presentations to potential new customers, talking on the telephone with current customers,
working on the computer and engaging in on-the-job activities. What potential sources of error
might be associated with the manager’s line of questioning? 10 marks

Solved
Supply Chain Management/Operations Management 1 Answer Kashif Asghar