Give mechanism of the following:
(i) Hydrohalogenation of an alkyne
(ii) Ozonolysis of an alkyne
1. How would the classical views on the creation of wealth differ from those of the mercantilists?
Write the possible conformation of butane. Arrange these conformations in the increasing order of their stability giving reasons.
8. Within the classical form of the quantity theory, the demand for money is given by
Mu = kPY
(4.7)
Suppose income (Y) is given at 400 units, and the money supply (M) is fixed at 200 units.
Suppose k drops from its initial value of 0.5 to 0.25.
What is the initial price level? What is the new price level after the change in k? Explain the
process that leads to the change in the aggregate price level.
What is the flashback,mood and foreshadowing in the story of sapay koma by jhoanna lynn cruz
There are N intermediate stations between two places A and B. Find the number of ways in which a train can be made to stop at S number of these intermediate stations so that no two stopping stations are consecutive. Write a python module Station.py for above and import the module in RollNo_W12B_3.py. In RollNo_W12B_3.py, define a function Get_Stations(N, S) which takes value of N & S and return integer result as shown in example by calling the appropriate function implemented in Station.py module. Also handle the possible exceptions and display the exception message in form of string.
Example-1
Example-2
Example-3
Input:
12
4
Output:
126
Input:
16
5
Output:
792
Input:
2
4
Output:
The speed limit in a school zone is 40 km/hr. A driver traveling at this speed sees a child run onto the road 13 m ahead of his car. He applies the brakes, and the car decelerates at a uniform rate of 8 m/s². If the driver’s reaction time is 0.25 s, will the car stop before hitting the car?
The speed limit in a school zone is 40 km/hr. A driver traveling at this speed sees a child run onto the road 13 m ahead of his car. He applies the brakes, and the car decelerates at a uniform rate of 8 m/s². If the driver’s reaction time is 0.25 s, will the car stop before hitting the car?
Earthquake python program. shreya is learing about earthquakes and stumbles accroess an interesting fact: the magnitude of on earthquake is a logarithmic scale of the energy realeased by the earthquake. it is known that each time the magnitude increases by 1, the amount of energy ets multiplied by 32. your tas is to help shreya by determining, how many times is the amount of energy of a magnitude a earthquake compared to that of a magnitude B earthquake?
I/p : a=6 & b=4, 6 is 2 greater than 4, so a magnitude 6 earthquake has 32*32=1024 times as much energy as a magnitude 4 earthquake has. so, the output is 1024
Input : 6 4
O/p: 1024
I/p: 5 5
O/p: 1
Kalinjar Fort is a popular tourist place in Bundelkhand, Utter Pradesh. Everyday peoples registered to visit Fort as token provided based on first come basis. Everyday limited numbers of peoples are allowed to visit. The management selects a number N1 randomly every day and generates another number N2 as count of the total number of set bits (i.e., total no. of 1s) in binary representation of all numbers from 1 to N1. For example, N1=3 then N2=4 [1(01) +2(10) +3(11)]. So, write a python module CountBit.py to find N2 using N1. You need to import this module in RollNo_W12B_2.py. In RollNo_W12B_2.py, define a function Get_Token(n) which takes a number and return value as shown in example by calling the appropriate function implemented in CountBit.py module.
Example-1
Example-2
Example-3
Input:
3
Output:
4
Input:
7
Output:
12Input:
8
Output:
13