the volume of a certain quantity of n2 gas at 20 Celsius and 100.0 kPa is 15.0L. What will be its volume at 27 Celsius at 1.5 atm?
. A compressed spring above the piston exerts a force of 60 N on the piston. If the atmospheric pressure is 95 kpa, determine the pressure inside the cylinder.
There are various main objectives in the macroeconomics policy, each of which contributes to an explanation and understanding of macroeconomics. Briefly define the following macroeconomic objectives and explain in your own words how each can be applied to improve the economy:
Out of 25
"The changes that were brought about industrialisation mainly resulted in the deterioration of the living conditions of working people" Do you agree? Give reasons for your answer
Suppose the probability density of X is given by
f(x) = {(kxe)^(-x^2), X>0
=0, Otherwise
(a) find the value of k.
(b) find the distribution function of X, i.e., the cumulative density function of X.
Define realism
The poem 'TESTIMONY ' by Chris Mann
1.2 The word 'but ' in line 7 indicates a shift in the poem. What change occurs here? ((2))
1.3 In lines 9-11, the speaker mentions numerous aspects of life that have influenced his relationships with the addressee. Describe one of the life events that the speaker mentions. What did the experience teach the speaker and his partner about love ? ((3))
Given a list of different right and left foot shoes, write a python code to return the exact number of shoe pairs which can be formed from the given list. Also, return how many number of shoes of which foot are required to form pairs with the unpaired shoes.
Input Format
Input_list = ['R','L','L','R','R',R','R,'L']
Constraints
.
Output Format
Paired: 3
Unpaired: 2
Required left Shoes
Sample Input 0
8
L R L L R L R L
Sample Output 0
Paired: 3
Unpaired: 2
Required right shoes
Sample Input 1
9
R L R L R R L R R
Sample Output 1
Paired: 3
Unpaired: 3
Required left shoes
Sample Input 2
6
R R R R R R
Sample Output 2
Paired: 0
Unpaired: 6
Required left shoes
Sample Input 3
8
L L R L R R L R
Sample Output 3
Paired: 4
Unpaired: 0
Given the following student data:
image
Write a Python code to print('Welcome student name') if both username and password entered by user match for that student. Note: Check first username and then password
Input Format
Username: 122
Password: Ghi122
Constraints
i) If entered username is not present in the list of usernames, then print Enter a valid username
ii) If entered password is not present in the list of passwords, then print Password Incorrect
iii) If both username and password belong to the same student, then print Welcome student_name
iv) If username and password do not belong to the same student, then print Username and password do not match
Output Format
Output: Welcome Ghi
Q1) Write a Python program to find the list of reverse of the elements in the given list would be prime number.
Input Format
[ 74, 5, 33, 79, 12, 56]
Constraints
1.If there is no prime number in the given list then print**('No prime number')**
Output Format
List of prime numbers: [74, 5, 79]
(or)
No prime number