Some financial theories consider the variance of the distribution of expected rates of return to be a good measure of uncertainty. Discuss the reasoning behind this measure of risk and it's purpose.
Three point charges 10 C, -20 C, and -50 C are at the three consecutive corners of a square 10 cm on a side. What is the potential energy of the system?
Let p = “The Exams are decided” and q = “The Papers have been set”
Express each of these compound propositions as English sentences. And state
whether it is Contradiction, Tautology or Contingency.
a) ¬ p :
b) p ∨ q :
c) q → p :
d) p ↔ q :
e) ¬ p ∧ q :
f) ¬ p → ¬ q :
g) ¬ q → ¬ p :
h) ¬ q ∨ (¬ p ∧ q) :
Discuss free radical reaction of mechanism in methane chlorination as an example of substitution reactions of alkanes
Find the First Value
Given an array myArray of positive integers, write a JS program to find the smallest integer divisible by 2 and 3.
input
the input will be a single line containing an myArray
output
the output should be a single line containing a number divisible by 2 and 3 or undefined.
input1
[51,18,15,12]
output1
12
input2
[41,29,17,19,31]
output2
undefined
"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 myArray = JSON.parse(readLine());
/* Write your code here and log the output */
}
Discuss the oxidation reaction of methane
Define energy of activation in relation to methane
Given a string of numbers S, the task is to find the maximum value from the string S, you can add a ‘+’ or ‘*’ sign between any two numbers.
For example, S=891. As 8*9*1 = 72 and 8*9+1 = 73. So, 73 is maximum.
Write a python module MaxValue.py for solve the above task. You need to import this module in your file which takes a string and return maximum value or error message as shown in example by calling the appropriate function implemented in MaxValue.py module. Also handle the possible exceptions and display the exception message in form of string.
Example-1
Input:
01231
Output:
10
example 2
Input:
891
Output:
73
example 3
Input:
0000
Output:
example 4
Input:
45f
Output:
Invalid Number
Write a program to print the area and parimeter of a triangle having side of 3,4 and 5 unit by creating a class named 'triangle' with the constructor having the three sides as it's parameters.
create a program that will ask the user to give a number for the divided and the divisor and then program will compute and display the quotient and its remainder on the screen
// quotient.cpp
// Author: Mr jake R. pomperada, BSCS, MAED- IT
// Date: august 14, 2018 Tuesday
// Location: Bacolod City, Negros occidental
// Website: http://www.jakerpompereda.com