Pairs of markings a set distance apart are made on highways so that police can detect drivers exceeding the speed limit. Over a fixed distance, the speed R varies inversely with the time T. In one particular pair of markings, ris 71 mph when t is 2 seconds. Find the speed of a car that travels the given distance in 3 seconds.
From a population 0,4,8,12 construct sampling distribution of mean for samples of size 2 take without replacement and find its mean and standard error
For a population 0,4,8,12, construct the sampling distribution of mean for samples of size 2 taken with replacement and the find its mean and standard error
Solve the recurrence relation an=3an-1-3an-2-an-3 n>=3 initial conditions are a0=1 a1=-2 a2=-1
Area and circumference a circle
"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++];
}
/* Please do not modify anything above this line */
function Circle(radius) {
/* Write your code here */
}
/* Please do not modify anything below this line */
function main() {
const radius = JSON.parse(readLine());
const circle1 = new Circle(radius);
console.log(circle1.getArea());
console.log(circle1.getCircumference());
}
Input:7
Output:153.86
43.96
What is the opportunity cost value of?
1. Find the dimension of a rectangle with perimeter 200 m and whose area is as large as possible
2. The sum of two positive numbers is 10. Find the numbers if the sum of their squares is a minimum
X. 1 2 3 4 5
P(x) 1/6 a/6 5/24 a/6 a/12
Find a
Find P(4)
Find P(5)
Pa answer na po kaagad
List and indicate the functions of the major regions of the cerebral hemispheres, diencephalon, brain stem and cerebellum. (20%- 5 marks for each region).
Consider the following declaration and the statements (a) to (d) written in C. Identify the statement which are correct and the ones which has an error, by giving reason. If a statement has an error correct it.
int c = 1, *pc; // declaration
(a) pc = c;
(b) *pc = &c;
(c) pc = &c;
(d) *pc = c;