Homework Answers

Math 50414 50414
Physics 44332 44332
Chemistry 40988 40988
Economics 30643 30643

Questions: 207 418

Answers by our Experts: 207 418

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Define the following terms:

a) Saturated Surface-Dry (SSD) conditions of aggregates

b) Absorption of aggregates

c) Free water on aggregates


What welding process will you recommend to weld the circumferential weld holding the bottom attachment ( weld 2) . Design the welding geometry to weld the cylinder body to ( weld 2) the bottom plate. Assume cylinder wall thickness to be 0.5” and the bottom plate thickness to be 1 inch. Show the welding symbol. Assume cylinder diameter to be 2 inches


is defined as the mass of a sample of that compound divided by the amount of substance in that sample


How to execute this using vector



#include <cmath>



#include <iostream>




const short int SIZE = 10;




double mean(const double x[], int size);




// Compute the deviation of double values



double deviation(const double x[], int size);




int main() {



double myarray[SIZE];




std::cout << "Enter the number: ";




for (int index = 0; index < SIZE; index++)



std::cin >> myarray[index];




std::cout << "The mean is " << mean(myarray, SIZE) << ".\n";



std::cout << "The standard deviation is " << deviation(myarray, SIZE)



<< ".\n";




return 0;



}




double mean(const double x[], int size) {




double total = 0;




for (int index = 0; index < size; index++)



total += x[index];




return total / size;



}




double deviation(const double x[], int size) {




double themean = mean(x, size);




double total = 0;




for (int index = 0; index < size; index++) {



total += pow(x[index] - themean, 2);



}




return sqrt(total / size - 1);



}




How to execute this using vector




#include <cstdlib>


#include <ctime>


#include <iostream>



int main() {



int dice[6] = {0};



srand(time(0));



for (int ctr = 0; ctr < 10000; ctr++) {



switch ((rand() % 6) + 1) {


case 1:


dice[0] += 1;


break;



case 2:


dice[1] += 1;


break;



case 3:


dice[2] += 1;


break;



case 4:


dice[3] += 1;


break;



case 5:


dice[4] += 1;


break;



case 6:


dice[5] += 1;


break;


}


}



for (int index = 0; index < 6; index++)


std::cout << index + 1 << " appears " << dice[index] << " time/s\n";



return 0;


}

A conducting cylinder of radius 3.25 cm and length 5.6 cm has a total charge of 4.5 x 10^-9 C distributed uniformly on its surface area. Find the potential at a) its surface, and b) 2.5 cm and c) 5.0 cm from the center of the cylinder.

How to execute this using vector



#include <iostream>


bool doesexists(int array[], int toseaarch, int size);



const short int SIZE = 10;



int main() {


int myarray[SIZE], distinct_ctr = 0, index = 0;



std::cout << "Enter 10 numbers: ";



for (index = 0; index < SIZE; index++) {


int tmp;


std::cin >> tmp;



if (!doesexists(myarray, tmp, SIZE)) {


myarray[distinct_ctr] = tmp;


distinct_ctr++;


}


}



std::cout << "distinct numbers are: ";


for (index = 0; index < distinct_ctr; index++)


std::cout << myarray[index] << " ";



std::cout << "\n";



return 0;


}



bool doesexists(int array[], int toseaarch, int size) {


for (int index = 0; index < size; index++) {


if (toseaarch == array[index])


return true;


}


return false;


}

Discuss 5 different desirable characteristics of aggregate of aggregate used in Portland cement concrete.


What are the three mineralogical or geological classifications of rocks, and how are they formed?


Happy House Bakeshop uses a cash receipts journal, a sales journal, purchases journal, cash disbursements journal, cash receipts journal, and a general journal. 

1. Identify which journal should be used to record each of the following transactions? 

A. Adjusting entry to record depreciation

B. Purchase of baking equipment on credit

C. Sale of merchandise on credit

D. Sale of merchandise for cash

E. Cash refund to a customer who returned a product that was purchased

F. Return of merchandise to a vendor that was damage

G. Payment of property taxes 

H. Purchase of a delivery van for cash

I. Purchase of merchandise on credit

2. Explain how special journals can benefit accounting personnel.

3. Explain what you have learned about companies using special journals.

4. What information covered in Unit 4 interest you most and why?


LATEST TUTORIALS
APPROVED BY CLIENTS