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

What is the electric potential 15.0 cm from a point charge?


(a) Calculate the capacitance of a parallel-plate capacitor whose plates are 20 cm x 30 cm and are separated by a 1.0-mm air gap.


(b) what is the charge on each plate if a 12-V battery is connected across the two plates?


(c) What is the electric field between the plates?


Product of array Items

given an array integers,write JS program to get the product of the integers in the given array.

input

the input will be containing single line integers.

output

the output should be single line containing the product as shown in sample outputs.


input1

[1,2,3]

output1

[1 * 2 * 3 = 6]

input2

[-1, -2, -3]

output2

[-1*-2*-3 = -6]


Note: The Output should be displayed as [1 * 2 * 3 = 6]


"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() {

 let integers = JSON.parse(readLine());


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


 /* Write your code here and log the output */

}



Create an console application to book train tickets. Create a Passanger class with (Name, Age) and write a function called TicketBooking(no_of_tickets) that takes no.of tickets to be booked. If the no of tickets is > 2 per booking, raise an user defined exception, and print "cannot book more than 2 tickets". Else Print "Ticket Booked Successfully". Add a Test class to call TicketBooking method by accepting all required details.


Create a list of numbers consisting of your student number

and find any s

pecific number inside the list

,

you can use listsearch or binary

search

this list. Then do a sorting to sort the numbers in this list from

least to greatest.

Keep the

repetitive

numbers as it is.



if A=2i+j+k, B=i-2j+2k and C=3i-4j+2k , find the projection A+C in the direction of B.



Select one:



A 173




B 203




C 143




D 193


Given the following thermochemical equations:


1.) 4NH3)+302(g) → 2N₂(g) + 6H₂0 (1) ∆H°-1531 kJ


2.) N₂O(g) + H₂(g) → N₂(g) + H₂O(0) ∆H°-367.4 k]


3.) H₂(0)+02 (0)→ H₂0 (1)


∆H°= -285.9 kJ



Find the value of AH" for the reaction:


2NH3(g) + 3N₂0(g) → 4N₂(g) + 3H₂O(1)

Chlorine trifluoride is a colorless, poisonous, and corrosive gas. It is produced from the reaction between chlorine fluoride and fluorine gas.



CIF(g) + F2 (g) → CLF3 (9)



Determine the ∆H° for the overall reaction based on the three-step thermochemical process below:


1.) 2CLF(g) + O2(g) → Cl₂0(g) + F₂0 (g) ∆°H-167.5 k]


2.) 2C1F3(g) +202(g) → Cl₂0(g) + 3F₂0(g)


∆H° =-341.4 k]


3.) 3F₂0)→2F2 (g) + O2(g)


∆H° = 43.4 kJ

A particle moves along the space curve r=e-t(cos⁡t i+sin⁡t j+k). Find the magnitude of the veloctiy at any time t.



Select one:



A 5e-1




B 5e-t




C 3e-1




D 3e-t


A system absorbs 50J of heat during a transformation. Determine the change in internal energy if 


the system perform, (a) 15J and (b) 65J of work on the surrounding.


Find the ∆E


a) When 175J of work is done on a system that evolves 50J of heat to the surrounding.


b) When a gas absorbs 28kJ of heat and 13kJ of work done on it.

LATEST TUTORIALS
APPROVED BY CLIENTS