Illustrate the phase diagram of a substance given with the following points: a
triple point at 0.70 atm and 80 ºC; a normal freezing point at 100 ºC; a normal
boiling point at 350 ºC; and a critical point at 1.6 atm and 810 ºC. For this,
complete the following:
1. Roughly sketch the phase diagram, using units of atmosphere and degree
Celsius. Label the area 1, 2, and 3, and points T and C on the diagram.
2. Describe what one would see at pressures and temperatures above 1.25 atm
and 300 ºC.
3. Describe the phase changes from 100 ºC to 200 ºC at 1.5 atm.
4. What exists in a system that is at 1 atm and 100 ºC?
5. What exists in a system that is at 1 atm and 325 ºC?
Tournament Training:
To prepare for the upcoming marthon.Ramesh trains one long distancerun each saturday .He considers a saturday to be a progress day if he runs more kilometers thsn the previous saturday Ramesh wants to track the no.of progress day
Given the no.of kilometer run by rsmesh on each aturday print the total no.of progress days
The 1st line of input contains space-seperated integers
i/p:
12 11 10 12 11 13
o/p:2
i/p:1 2 1 1 1
o/p:1
Create a new project, and copy your code from Task 1 to the new project (copy the contents of the Main() method and the displayDetails() method) Adapt your Main() method to capture and display the details for 4 different people. The displayDetails() method should remain unchanged.
Create a user defined method named calcCost() that accepts two double values as input (length and width), and then computes the estimated cost of painting a room (walls only, not ceiling), assuming the room is rectangular and has four full walls and the walls are 2.6 meter high. The rate for the painting job is R20 per square meter. Your method should return the estimated cost to the calling method. Create a program whose Main() method prompts a user for the length and the width of a room in meter, then calls calcCost to calculate the estimated cost. Once calculated, you should display the estimated cost.
Write a program that prompts the user for the following values: nickname and favourite movie/series. Write a user defined method named displayDetails() that accepts two string values as input, and then displays these values. Add the required instructions to your Main() program to allow it to display the text Hello World and then calls the displayDetails() method to display your information.
Number of moves:
you are given a nxn square chessboard with one bishop and k number of obstacles placed on it. A bishop can go to different places in a single move. find the total no.of places that are possible for the bishop in a single move. Each square is referenced by a type describing the row, R, and column, C, where the square is located.
explanation: given N=6 K=2
bishop position 5 2
obstacle positions (2 2), (1 5)
the bishop can move in so o/p is 6
I/p:
6 2
5 2
2 2
1 6
O/p:
6
I/p:
6 4
3 3
1 3
3 1
5 1
1 5
O/p: 7
Dice Score:
two friends are playing a dice game, the game is played with five six-sided dice. scores for each type of throws are mentioned below.
three 1's = 1000 points
three 6's = 600
three 5's = 500
three 4's = 400
three 3's = 300
three 2's = 200
one 1 = 100
one 5 = 50
I/p: 2
1 1 1 1 1
6 6 6 1 5
O/p: 1200
750
I/p: 2
2 1 5 2 2
1 1 1 2 2
O/p: 350
1000
For How Long Must A Current Of 1.5 Ampere Be Passed Through An Aqueous Solution Of A Copper Salt During Electrolysis In Order To Deposit 2.50g Of Copper (cu=63.5)
In a medical study, patients are classified in 8 ways according to whether they have
blood type AB+, AB−, A+, A−, B+, B− , O+, or O−, and also according to whether their
blood pressure is low, normal, or high. Find the number of ways in which a patient can
be classified.
Pager:
Imagine a paper with only one button. for the letter "A", you press the button one time, for "B", you press it 2 times for "E", you press it five times. for "G", it's pressed seven times, etc.
Given a string s, print the total number of times the button should be pressed
explanation: given string is abde. then the total no. of times the button pressed is 1+2+4+5=12
I/p: abde
O/p: 12
I/p: xyz
O/p: 75