Homework Answers

Math 50414
Physics 44332
Chemistry 40988
Economics 30643
Programming & Computer Science 26876
Biology 8109
Engineering 6056

Questions answered by 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

a cell has an e.m.f. of 3v. when it is connected across a resistor of resistance 4ohms, a current of 0.5a passes through the current. calculator the internal resistance


A gas on a piston cylinder has a constant pressure of 10 psig vacuum. The


piston undergoes expansion which makes the volume of the gas from 0.05 m3


to 0.10 m3. Calculate the non-flow work in kJ

Double the numbers

the goal of this code is to get quickly off the ground with array method map().

input

  • the input will be single line containing an array myArray

output

  • the output will be single line containg the newArray

constraints

  • strings should be given in quotes


sample input1

[1, 'David', 10, {'points':97}, 25, 'alphabet', true]


sample output1

[2, 'string' 20, 'object', 50, 'string' 'boolean']


function readLine() {

 return inputString[currentLine++];

}


function main() {

 const myArray = JSON.parse(readLine().replace(/'/g, '"'));


/* Please do not modify anything above this line */


 // Write your code here

  

}


Derive schrodinger wave equation in its time dependent form


The recommended single dose for acetaminophen is 10.0

to 15.0 mg/kg

of body weight for adults. Using this guideline, calculate the maximum single dosage for a person who weighs 131 lb

.


the goal of this code is to quickly get you off the ground with Creating and Consuming Promises.

input

  • the first line of input is containing a boolean isHotWaterReady
  • the second line of input is containing a boolean isBreakfastReady

output

  • the output could be multiple strings with the appropriate response in seperate lines

based on inputs


sampleinput1

true

true

sampleoutput1

Taken Shower

Had Breakfast

Got to Work



function main() {

 const isHotWaterReady = JSON.parse(readLine());

 const isBreakfastReady = JSON.parse(readLine());


/* Please do not modify anything above this line */


 // Write your code here

  

 const takingShower = () => {

   return new Promise((resolve,reject) => {

     isHotWaterReady ? resolve("Taken Shower") : reject ("Hot Water Not Ready")

   });

 }

  

 const breakFast = () => {

   return new Promise((resolve,reject) => {

      isBreakfastReady ? resolve("Had Breakfast") : reject ("Breakfast Not Ready")

   });

 }



You have given A and B as two lists with may have repeated element in the respective list. Write a python function Merge_List(A, B) which take list A and B as input and return a merged list. The function will merge the list B with A (means the list A will be expanded) such that the resultant A still contain no duplicates.

 

Example-1

Example-2

Example-3

Input:

A:

 1

 2

 3

 4

 5

 

B:

 1

 1

 1

 11

 2

 3

Output:

[1, 2, 3, 4, 5, 11]

Input:

A:

 1

 2

 3

 4

 5

 

B:

1

2

3

4

5

 

Output:

[1, 2, 3, 4, 5]

Input:

A:

 1

 2

 3

 

B:

4

5

 

Output:

[1, 2, 3, 4, 5]



the goal of this coding exam is to quickly get off you the ground with the array method every().

input

  • the input will be single line containing an array of objects candidatesList

output

  • the output should be single line containing an array with names of the selected candidates.


input1

[{'name': 'Blake Hodges', 'points':[76, 98, 88, 84]}

output1

['Blake Hodges]


"use strict";


process.stdin.resume();

process.stdin.setEncoding("utf-8");


let inputString = "";

let currentLine = 0;


process.stdin.on("data", (inputStdin) => {

 inputString += inputStdin;

});


process.stdin.on("end", (_) => {

 inputString = inputString.trim().split("\n").map((str) => str.trim());

 main();

});


function readLine() {

 return inputString[currentLine++];

}


function main() {

 const candidatesList = JSON.parse(readLine().replace(/'/g, '"'));



  

 // Write your code here

}



Bob a builder has come to you to build a program for his business. He needs to determine the square footage of a room in order to buy materials and calculate costs. Bob charges $125 per square metre. The program is going to ask the user to enter the name of a room. It will then ask for the width and length of the room (in meters) to be built. The program will calculate the room area and use this information to generate an approximate cost. Your program will display the room, the total area and the approximate cost to the screen.


3. Amaterial has a mass of 95 g and 68 g before and after abrasion, respectively. If the abrasive




ratio of 1.85, find the area of abrasion

LATEST TUTORIALS
APPROVED BY CLIENTS