Вы находитесь на странице: 1из 6

Shri Ram Murti Smarak College of Engineering & Technology, Unnao

Mechanical Engineering Department


Off -Line Technical Test-3

Note: - Attempt all sections.

Section – I Marks: 1x30=30

1. Pick up the wrong statement. A refrigerant should have


(a) Tow specific heat of liquid (d) Higher critical temperature
(b) High boiling point (e) Low specific volume of vapour
(c) High latent heat of vaporization
2. A standard ice point temperature corresponds to the temperature of
(a) Water at 0°C (d) Mixture of ice, water and vapour under equilibrium
(b) Ice at - 4°C conditions under NTP conditions
(c) Solid and dry ice (e) Mixture of ice and water Under equilibrium
conditions.
3. Vapour compression refrigeration is somewhat like
(a) Carnot cycle (d) Reversed Rankine cycle
(b) Rankine cycle (e) None of the above.
(c) Reversed Carnot cycle
4. Which of the following cycles uses air as the refrigerant?
(a) Ericsson (d) Bell-coleman
(b) Stirling (e) none of the above.
(c) Carnot
5. Ammonia-absorption refrigeration cycle requires
(a) very little work input (d) zero work input
(b) maximum work input (e) none of the above.
(c) nearly same work input as for vapour compression
cycle
6. An important characteristic of absorption system of refrigeration is
(a) noisy operation (d) very little power consumption
(b) quiet operation (e) its input only in the form of heating.
(c) cooling below 0°C
7. The relative coefficient of performance is
(a) actual COP/fheoretical COP (d) 1-actual COP x theoretical COP
(b) theoretical COP/actual COP (e) 1-actual COP/fheoretical COP.
(c) actual COP x theoretical COP
8. Clapeyron equation is a relation between
(a) temperature, pressure and enthalpy (d) temperature, pressure, and specil volume
(b) specific volume and enthalpy (e) temperature, pressure, specific volur and'enthalpy.
(c) temperature and enthalpy
9. Clapeyron equation is applicable for registration at
(a) saturation point of vapour (d) triple point
(b) saturation point of liquid (e) critical point.
(c) sublimation temperature
10. In vapour compression cycle, the condition of refrigerant is saturated liquid
(a) After passing through the condenser (c) After passing through the expansion throttle valve
(b) Before passing through the condenser (d) Before entering the expansion valve
11. The recrystallization temperature is the temperature at which new strain-free grains are formed from the earlier
deformed ones. For steel this temperature is close to
(a). 350 ° C (c).800 ° C
(b). 560 ° C (d). 1025 ° C
12. Which is not true in the context of effort of cold working on metals?
(a). loss of ductility (d).surface finish is improved and close
(b).increase of strength and hardness if metal. tolerances maintained.
(c).refinement in grain structure
13. Metal extrusion process is generally used for producting
(a). uniform solid sections (c). uniform solid and hollow sections
(b). uniform hollow sections (d). Varying solid and hollow sections

14. The extrusion chamber, die and the ram are generally lubricated by
(a).grease (c).vegetable oil
(b). Solid lubricant (d). Kerosene oil
15. Consider the following statement :
The process of hot extrusion is used to produce
1. Curtain rods made of aluminum 3. Stainless steel tubes used in furniture
2. Steel pipes for domestic water supply 4. Large size pipes used in city water mains
Which of these statements are correct?
(a) 1 & 3 (c) 1 ,2 & 3
(b) 2 & 4 (d) 1 ,2 ,3 & 4
16. The process of putting a rod though several dies on decreasing diameter is known as
(a) Rolling (c) Trimming
(b) Stretch forming (d) Wire drawing
17. Dies for wire drawing are made of
(a) Cast iron (c) Mild steel
(b) Wrought iron (d) Carbides
18. A moving mandrel is used in
(a) Wire drawing (c) Metal cutting
(b) Tube drawing (d) Forging
19. Which process involves increasing of the cross-sectional area by pressing or hammering in a direction parallel to the
original ingot axis?
(a) Peening (c) Upsetting
(b) Swaging (d) Setting down
20. The property of a material by which it can be rolled into sheet is called
(a) Elasticity (c) Ductility
(b) Plasticity (d) Malleability
21. According to Gay-Lussac law, the absolute pressure of a given mass of a perfect gas varies __________ as its absolute
temperature, when the volume remains constant.
(A) Directly (B) Indirectly

22. A process, in which the temperature of the working substance remains constant during its expansion or compression, is called
(A) Isothermal (B) Hyperbolic
(C) Adiabatic (D) Polytropic
23. In a steady flow process, the ratio of
(A) Heat transfer is constant (B) Work transfer is constant
(C) mass flow at inlet and outlet is same (D) All of these
24. The entropy of the universe is continually on the increase.
(A) Correct (B) Incorrect
25. The behaviour of super-heated vapour is similar to that of
(A) Perfect gas (B) air (C) Steam (D) Ordinary Gas
26. Which of the following is a reversible non-flow process?
(A) Isochoric (B) Isobaric (C) Hyperbolic (D) All of these
27. If in the equation pvn = C, the value of n = ∝ , then the process is called
(A) Constant Volume (B) Adiabatic (C) Isobaric (D) None
28. Carnot cycle has maximum efficiency for
(A) Petrol (B) Diesel (C) Reversible Engine (D) Irreversible Engine

29. The entropy may be expressed as a function of

(A) Temperature and volume (B) Pressure and Temperature


(C) Pressure and volume (D) None
30. The entropy of water at 0°C is assumed to be
(A) 10 (B) -1 (C) 1 (D) 0

Section - II Marks: 1x20=20

1. What is the output of this C code?

1. #include <stdio.h>
2. void main()
3. {
4. int k = 5;
5. int *p = &k;
6. int **m = &p;
7. printf("%d%d%d\n", k, *p, **m);
8. }

a) 5 5 5 c) 5 junk junk
b) 5 5 junk value d) Run time error
2. What is the output of this C code?

1. #include <stdio.h>
2. void main()
3. {
4. int k = 5;
5. int *p = &k;
6. int **m = &p;
7. printf("%d%d%d\n", k, *p, **p);
8. }
a) 5 5 5 c) 5 junk junk
b) 5 5 junk value d) Compile time error
3. What is the output of this C code?

1. #include <stdio.h>
2. void main()
3. {
4. int k = 5;
5. int *p = &k;
6. int **m = &p;
7. **m = 6;
8. printf("%d\n", k);
9. }
a) 5 c) 6
b) Compile time error d) Junk
4. What is the output of this C code?
1. #include <stdio.h>
2. void main()
3. {
4. int a[3] = {1, 2, 3};
5. int *p = a;
6. int *r = &p;
7. printf("%d", (**r));
8. }
a) 1 c) Address of a
b) Compile time error d) Junk value
5. What is the output of this C code?

1. #include <stdio.h>
2. void main()
3. {
4. int a[3] = {1, 2, 3};
5. int *p = a;
6. int **r = &p;
7. printf("%p %p", *r, a);
8. }
a) Different address is printed c) Same address is printed.
b) 1 2 d) 1 1
6. What is the output of the code given below?

1. #include <stdio.h>
2. int main()
3. {
4. printf("%d ", 1);
5. goto l1;
6. printf("%d ", 2);
7. l1:goto l2;
8. printf("%d ", 3);
9. l2:printf("%d ", 4);
10. }
a) 1 4 c) 1 2 4
b) Compilation error d) 1 3 4
7. What is the output of code given below?

1. #include <stdio.h>
2. int main()
3. {
4. printf("%d ", 1);
5. l1:l2:
6. printf("%d ", 2);
7. printf("%d\n", 3);
8. }
a) Compilation error c) 1 2
b) 1 2 3 d) 1 3
8. What is the output of code given below?
1. #include <stdio.h>
2. int main()
3. {
4. printf("%d ", 1);
5. goto l1;
6. printf("%d ", 2);
7. }
8. void foo()
9. {
10. l1 : printf("3 ", 3);
11. }
a) 1 2 3 c) 1 3 2
b) 1 3 d) Compilation error
9. What is output of code given below?

1. #include <stdio.h>
2. int main()
3. {
4. int i = 0, j = 0;
5. while (i < 2)
6. {
7. l1 : i++;
8. while (j < 3)
9. {
10. printf("Loop\n");
11. goto l1;
12. }
13. }
14. }
a) Loop Loop c) Loop Loop Loop Loop
b) Compilation error d) Infinite Loop
10. What is the output of code given below?
1. #include <stdio.h>
2. int main()
3. {
4. int i = 0, j = 0;
5. while (l1: i < 2)
6. {
7. i++;
8. while (j < 3)
9. {
10. printf("loop\n");
11. goto l1;
12. }
13. }
14. }
a) loop loop c) loop loop loop loop
b) Compilation error d) Infinite loop
11. What is the output of the code given below?

1. #include <stdio.h>
2. int main()
3. {
4. int i = 0, j = 0;
5. l1: while (i < 2)
6. {
7. i++;
8. while (j < 3)
9. {
10. printf("loop\n");
11. goto l1;
12. }
13. }
14. }
a) loop loop c) oop loop loop loop
b) compilation error d) infinite loop
12. The output of the code below is

1. #include <stdio.h>
2. void main()
3. {
4. int i = 0;
5. if (i == 0)
6. {
7. goto label;
8. }
9. label: printf("Hello");
10. }
a) Nothing c) Infinite Hello
b) Error d) Hello
13. The output of the code below is
1. #include <stdio.h>
2. void main()
3. {
4. int i = 0, k;
5. if (i == 0)
6. goto label;
7. for (k = 0;k < 3; k++)
8. {
9. printf("hi\n");
10. label: k = printf("%03d", i);
11. }
12. }
c) 0 hi hi hi 0 0 0
a) 0
d) 0 0 0
b) hi hi hi 0 0 0
14. The output of the code below is
1. #include <stdio.h>
2. void main()
3. {
4. int i = 0, k;
5. label: printf("%d", i);
6. if (i == 0)
7. goto label;
8. }
c) Nothing
a) 0
d) Error
b) Infinite 0
15. The output of the code below is
1. #include <stdio.h>
2. void main()
3. {
4. int x = 5;
5. if (x < 1)
6. printf("hello");
7. if (x == 5)
8. printf("hi");
9. else
10. printf("no");
11. }
c) no
a) hi
d) none of the mentioned
b) hello
16. The output of the code below is
1. #include <stdio.h>
2. int x;
3. void main()
4. {
5. if (x)
6. printf("hi");
7. else
8. printf("how are u");
9. }
c) compile time error
a) hi
d) none of the mentioned
b) how are you
17. Comment on the following code below
1. #include <stdio.h>
2. void main()
3. {
4. int x = 5;
5. if (true);
6. printf("hello");
7. }
c) Nothing will be displayed
a) It will display hello
d) Compiler dependent
b) It will throw an error
18. The output of the code below is
1. #include <stdio.h>
2. void main()
3. {
4. int x = 0;
5. if (x == 0)
6. printf("hi");
7. else
8. printf("how are u");
9. printf("hello");
10. }
c) hello
a) hi
d) hihello
b) how are you
19. The output of the code below is
1. #include <stdio.h>
2. void main()
3. {
4. int x = 5;
5. if (x < 1);
6. printf("Hello");
7.
8. }
c) Hello
a) Nothing
d) Varie
b) Run time error
20. The output of the code below is(when 1 is entered)
1. #include <stdio.h>
2. void main()
3. {
4. double ch;
5. printf("enter a value btw 1 to 2:");
6. scanf("%lf", &ch);
7. switch (ch)
8. {
9. case 1:
10. printf("1");
11. break;
12. case 2:
13. printf("2");
14. break;
15. }
16. }
c) 2
a) Compile time error
d) Varies
b) 1

Вам также может понравиться