Category: High School

Physics

Please complete this physics assignment and have it clearly written with sense and a level understanding please! Nothing too complicated just simple basic solutions and examples!! On the first part provide examples clearly of wave equations  and include examples of calculations, linking to frequency, velocity it and wavelength!!!

Also please be descriptive when discussing about where the electromagnetic radiation can be used questions. Such as, ways in which it can be used in treatment.
Include potential dangers and how to prevent dangers.

Intro to Python and Javascript/HTML

$220 to complete all my assignments / projects for these two classes.
I attend a community college and these are super easy. Assignments are all available online and can be done without logging into anything.
Price is slightly negotiable.
Preferred contact method is Discord.

Unit 8: Moles

Complete the questions shown in the PDF, showing work you had to complete. The deadline can be slightly adjusted if needed, but not by much. The work should be on a academic level of a high school junior. A total of 24 questions and a mini-lab which requires a pencil, calculator, and highlighter. The assignment shouldn’t take more than a hour – probably less! The price can be slightly adjusted if necessary.

Physics

Hi,

I am studying at college level 3, and require someone who is knowledgeable with physics related questions, such as finding the forces, and working out directions etc.

Could you please also answer in simple ways so that i can understand exactly what you have written and make it simple and clear.  I Will provide all the questions i need to answer on here.

War Card

War

The deck is divided evenly, with each player receiving 26 cards, dealt one at a time, face down. Anyone may deal first. Each player places their stack of cards face down, in front of them. Each player turns up a card at the same time and the player with the higher card takes both cards and puts them, face down, on the bottom of his stack. If the cards are the same rank, it is War. Each player turns up one card face down and one card face up. The player with the higher cards takes both piles (six cards). If the turned-up cards are again the same rank, each player places another card face down and turns another card face up. The player with the higher card takes all 10 cards, and so on. The game ends when one player has won all the cards. Hint: Use math.random to shuffle the deck

Vectors Homework

Academic Level: Highschool Grade 12
Grading Scale: Each questions is worth 2 marks.
No references needed, full solutions are necessary.
Question one needs a specific prove template: first part needs to be what is given in the question, second is what is known (our knowledge), third part is a statement of what were proving, and the fourth part is the completed solution. No necessary format for the other questions.

AplusLearning online

  Use internet explorer if not then use Google Chrome. To get to the online website you must type “Denison isd aplus anywhere” then click on the link that says “A+LS denisonisd” and once youre on the website you click the burton that says “browser playback” the tops bar ussrname is: yareli Prado and the Bottom bar password is: 40319     
There are 35 lessons. for each lesson the only thing that has to be done is a test that only has 10 questions, and you have to make an 80 or above to pass onto the next lesson. And once you’ve cored and 80 or above there will be a red Apple to the next of that lesson that means you can go onto the next lesson. But if there isnt a red Apple Next to the lesson, click on it again and press where it says PRACTICE and spend at last 5 minutes,  just stay on that screen for 5 minutes then there should be a red Apple next to the lesson to let you move on.

physics hwk

When submitting an answer like 3540000000, you can type it in as is or using scientific notation like 3.54e9. If your answer is 0.00000542, you can also type it in like 5.42e-6.

Numerical answers must be typed to the most accurate value.
Numerical answers within 3% of the actual answer are counted as correct.
To avoid rounding errors in calculations, use at least three (3) significant figures for numerical answers.

Determination of the percentage purity in a substance

A is a solution containing 3.5g of an acid Hx per dm3
B is a solution containing  0.50mole of anhydrous Na2CO3 per dm3 of solution.  25cm3 portions of solution B required an average volume of 26.10cm3 of solution A for complete neutralization.  From these results,  calculate
a.  Molar concentration of solution A
b. The relative molecular mass of A

computer science

Module 6 Homework
Cyclomatic Complexity

10 points

Building a Flow Graph and Calculating Cyclomatic Complexity, V(G)
When you are doing white box testing, I am a strong proponent of doing cyclomatic complexity calculations and basis path testing, provided you have the time to do so. Since it guarantees complete statement and branch coverage, basis path testing gives you an absolute minimum number of test cases you should run for any given code fragment. This homework is an exercise in constructing a flow graph and calculating the cyclomatic complexity of a code fragment.

What you need to do:
For the code fragment shown below, do the following:

Construct a flow graph for the code.  You may do this in any way that allows you to send it to me in digital format.  You can create the graph using Visio, Word, or some other application.  You can also draw it on paper and scan it in – just make sure it’s clearly readable.

From your flow graph, calculate the cyclomatic complexity, V(G), using all three of the methods discussed in class.  All three calculations should agree with each other.
The code is written in Java, so you are all probably familiar with the syntax to some extent. In the event you are unable to follow the syntax, please let me know. You needn’t be concerned with what the code itself is supposed to do.

private void downShift(int index)
{
    // index of “child”, which will be either index * 2 or index * 2 + 1
    int childIndex;

    // temp storage for item at index where shifting begins
    Comparable temp = theItems[index];

    // shift items, as needed
    while (index * 2 <= theSize)
    {
        // set childIndex to “left” child
        childIndex = index * 2;

        // move to “right” child if “right” child < “left” child
        if (childIndex != theSize && theItems[childIndex + 1].compareTo(theItems[childIndex]) < 0)
            childIndex++;

        if (theItems[childIndex].compareTo(temp) < 0)
        {
        // shift “child” down if child < temp
            theItems[index] = theItems[childIndex];
        }
        else
        {
            // shifting complete
            break;
        }

        // increment index
        index = childIndex;
    }

    // position item that was originally at index where shifting began
    theItems[index] = temp;
}

What you need to turn in:
Your flow graph in one of the following formats:

Visio document (.vsd)

Word or Rich Text document (.doc, .rtf)

JPEG or GIF image (.jpg, .gif)

Your 3 V(G) calculations.