Admission to the Engineering course at Cambridge is highly competitive, both in terms of the numbers and quality of applicants. In considering applicants, Colleges look for evidence both of academic ability and of motivation towards Engineering. There are no absolute standards required of A Level achievement, but it should be noted that the average entrant to the Department has three A* grades. You need to get top marks in Maths and Physics.All Colleges strongly prefer applicants for Engineering to be taking a third subject that is relevant to Engineering.
Hope that helps and good luck if you are applying. Can you please mark this as brainliest and press the thank you button and if you have any further questions please let me know!!
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer:Counter,
0.799,
1.921
Explanation:
Given data




Since outlet temperature of cold liquid is greater than hot fluid outlet temperature therefore it is counter flow heat exchanger
Equating Heat exchange
![m_hc_{ph}\left [ T_{h_i}-T_{h_o}\right ]=m_cc_{pc}\left [ T_{c_o}-T_{c_i}\right ]](https://tex.z-dn.net/?f=m_hc_%7Bph%7D%5Cleft%20%5B%20T_%7Bh_i%7D-T_%7Bh_o%7D%5Cright%20%5D%3Dm_cc_%7Bpc%7D%5Cleft%20%5B%20T_%7Bc_o%7D-T_%7Bc_i%7D%5Cright%20%5D)
=
we can see that heat capacity of hot fluid is minimum
Also from energy balance

=


NTU=1.921





Answer:
The power developed by engine is 167.55 KW
Explanation:
Given that

Mean effective pressure = 6.4 bar
Speed = 2000 rpm
We know that power is the work done per second.
So

We have to notice one point that we divide by 120 instead of 60, because it is a 4 cylinder engine.
P=167.55 KW
So the power developed by engine is 167.55 KW