Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Topic :: Temperature





Temperature Interview Questions
Questions Answers Views Company eMail

1.how can you obtain D flip-flop and t flip -flop using jk flip- flop? 2.2 derive the expression of susceptibility of atiferromagnetic materials above neel temperature?

UITS University Information Technology Services,

2133

how can we judge the percentage of load on the basis of temperature differences readings between WTI and OTI in a transformer

Toshiba,

1 4947

How does work A temperature valve or fv control valve in process plz brief me

Jindal,

2373

The company where I am working, their is rosemount 5400 series radar type level transmitter, it is meant to show level of filled tank, but along with the level it is showing temperature also, so my question is how a onon-contact type radar type level transmitter can show temperature even if it does not have any contact with the fluid?

Process Control Technologies,

2214

If a normal magnetic type flow transmitter that can measure flow, temperature and show this parameters on field, is it possible by any means to get this (flow and temperature) parameters info. On dcs? And if yes then with HART, FO communication or any other communication system?

Process Control Technologies,

1 2794

If a flow transmitter (magnetic type FT) that can measure flow and temperature, then why in some industries people use flow transmitter and temperature transmitter in the same line 1 after another? Even after 1 single flow FT is capable of measuring flow as well as temperature.

Process Control Technologies,

1 4573

what is the temperature rise test? explain in brief.with formula.

1 3411

Due to the sensitive earth fault Our Power plant Get Tripped Several Times, It happens in the morning time daily, When temperature rises that means sun rises the earth fault current get lower, in this situation What should I do to get rid of this Problem?

2 4093

The room temperature is hot. Here the hot (use of linguistic variable is used) can be represented by _______ . a) Fuzzy Set b) Crisp Set

1 4767

What is CCT (Correlated Color Temperature) ?

1901

Importance of fault current in power transformers and how to monitor the same? How is it different from winding temperature?

Impulse,

1768

what is meant by runaway temperature in a reactor?

Cairn,

3 4656

Why winding temperature ct placed in B-Phase of the transformers?? 

3 4032

Chemical Engineering Energy Balance - Please match the term A - E as follow with the stated definition : A. Yield. B. Selectivity. C. Relative saturation. D. Molal saturation. E. Absolute saturation. i. Answer : ? (moles of desired product formed) / (moles that would have been formed if there were no side reactions and the limiting reactant has reacted completely). ii. Answer : ? (moles of desired product formed) / (moles of undesired product formed). iii. Answer : ? (relative humidity 40 % means partial pressure of water vapour equals 4 / 10 of the vapour pressure of water at the system temperature). iv. Answer : ? (moles of vapour) / (moles of vapour dry gas). v. Answer : ? (mass of vapour) / (mass of dry gas).

1 2882

if suppose boiler has high heavy tube leakage, so in which time we feed the water in a boiler. can we stop the feed water at particular combustion temperature.

4 6483




Related Topics


Un-Answered Questions { Temperature }

How does Vbe and Ic change with temperature?

3466


what are the microbes that grow if proper temperatures are not maintained during fermentation process?

2008


At what temperature should fresh sweet potato leaves be stored and dried?

1800


How the plants can survive in Tundra where temperature reaches -57oC?

1876


I currently use 17-7 PH stainless which is hardened to condition CH after forming. raw matl is .1.75"X .12" X .008". Its main usage after hardening is silicon wafer retainer where it's contantly cycled up and down to putin and remove wafer after 40-60 sec process at 400C temp. At this high temperature this part seemed to deform after a a couple of hundred wafer which is what it was designed for in the first place. THere is a proposal to go to a different material to increase lifeline of this part. My question is..... can 321 SST be a plugin replacement. I know this has a higher temp rating but how about its forming characteristics, will it have spring properties, and wont become brittle after prolonged exposure to 400C.

2325


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2277


An ice-box is built of wood 1.75 cm thick, lined with cork 3 cm thick. If in the steady state the temperature of the inner surface of the cork is 0 ºC and that of the outer surface of wood is 12 ºC, what is the temperature of the wood-cork interface? The thermal conductivities of wood and cork are 0.2 W/m-K and 0.04 W/m-K respectively

2622


What is the temperature PROFILE OF A FLUID W. R. T. Distance from a sphere to which it is IN CONTACT which is at constant temp.?

2010


In which working principal temperature transmitter work.explain in detailed.

2281


hii..i am doin a project called Forecaster..wat it does is it asks user to enter a zip code..then it establishes urlconnection with a weather website n fetches data n data is converted into graphical representation..but it doesnt show any output..i am not able it figure out the reason..can u plzzzz help me out..i am givin u code import java.io.*; import java.awt.*; import java.net.*; import java.awt.image.*; import java.awt.event.*; public class Forecast extends Frame { OkCancelDialog textDialog; BufferedImage image = null; public static void main(String[] args) { new Forecast(); } public Forecast() { String zip =""; File zipFile = new File("zip.txt"); String hiTemperature[] = new String[4]; String loTemperature[] = new String[4]; try { if(zipFile.exists()){ FileReader filereader = new FileReader("zip.txt"); BufferedReader bufferedreader = new BufferedReader(filereader); zip = bufferedreader.readLine(); } else { textDialog = new OkCancelDialog(this, "Enter your five-digit zip code", true); textDialog.setVisible(true); zip = textDialog.data.trim(); FileOutputStream fileoutputstream = new FileOutputStream("zip.txt"); fileoutputstream.write(zip.getBytes()); } int character; URL url = new URL ("http://www.srh.noaa.gov/zipcity.php?inputstring=" + zip); URLConnection urlconnection = url.openConnection(); InputStream in = urlconnection.getInputStream(); String input = ""; String hiSearch; String loSearch; String inchar; char[] cc = new char[1]; while ((character = in.read()) != -1) { char z = (char)character; cc[0] = z; inchar = new String(cc); input += inchar; } in.close(); if(input.indexOf("Hi ") >= 0){ hiSearch = "Hi "; } else{ hiSearch= "Hi: "; } int currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(hiSearch, currentPosition); int end = input.indexOf("°", location); hiTemperature[loopIndex] = input.substring(location + hiSearch.length(), end); currentPosition = end + 1; } if(input.indexOf("Lo ") >= 0){ loSearch = "Lo "; } else{ loSearch= "Lo: "; } currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(loSearch, currentPosition); int end = input.indexOf("°", location); loTemperature[loopIndex] = input.substring(location + loSearch.length(), end); currentPosition = end + 1; } boolean evening = false; if(input.indexOf(loSearch) < input.indexOf(hiSearch)){ evening = true; hiTemperature[3] = hiTemperature[2]; hiTemperature[2] = hiTemperature[1]; hiTemperature[1] = hiTemperature[0]; } image = new BufferedImage(225, 201, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.setColor(Color.white); g.fillRect(0, 0, 224, 201); g.setColor(Color.gray); for(int loopIndex = 0; loopIndex < 21; loopIndex++){ g.drawLine(25, loopIndex * 10, 224, loopIndex * 10); g.drawLine(loopIndex * 10 + 25, 0, loopIndex * 10 + 25, 199); } g.setColor(Color.blue); Font font = new Font("Courier", Font.PLAIN, 18); g.setFont(font); for(int loopIndex = 20; loopIndex < 200; loopIndex += 20){ g.drawString(String.valueOf(100 - loopIndex / 2), 0, loopIndex + 5); } g.setColor(Color.red); if(!evening){ g.drawOval(65 - 4, 200 - (Integer.parseInt( hiTemperature[0]) * 2) - 4, 8, 8); } g.drawOval(105 - 4, 200 - (Integer.parseInt( hiTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( hiTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( hiTemperature[3]) * 2) - 4, 8, 8); if(!evening){ g.drawLine(65, 200 - (Integer.parseInt( hiTemperature[0]) * 2), 105, 200 - (Integer.parseInt(hiTemperature[1]) * 2)); } g.drawLine(105, 200 - (Integer.parseInt(hiTemperature[1]) * 2), 145, 200 - (Integer.parseInt(hiTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(hiTemperature[2]) * 2), 185, 200 - (Integer.parseInt(hiTemperature[3]) * 2)); g.setColor(Color.blue); g.drawOval(65 - 4, 200 - (Integer.parseInt( loTemperature[0]) * 2) - 4, 8, 8); g.drawOval(105 - 4, 200 - (Integer.parseInt( loTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( loTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( loTemperature[3]) * 2) - 4, 8, 8); g.drawLine(65, 200 - (Integer.parseInt(loTemperature[0]) * 2), 105, 200 - (Integer.parseInt(loTemperature[1]) * 2)); g.drawLine(105, 200 - (Integer.parseInt(loTemperature[1]) * 2), 145, 200 - (Integer.parseInt(loTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(loTemperature[2]) * 2), 185, 200 - (Integer.parseInt(loTemperature[3]) * 2)); g.setColor(Color.white); g.fillRect(55, 160, 140, 30); g.setColor(Color.blue); g.drawRect(55, 160, 140, 30); font = new Font("Courier", Font.PLAIN, 12); g.setFont(font); g.drawString("Four-Day Forecast", 65, 172); font = new Font("Courier", Font.PLAIN, 9); g.setFont(font); g.drawString("Source: Nat. Weather Srvce.", 58, 185); setTitle("The Forecaster"); setResizable(false); setSize(250, 240); setVisible(true); this.addWindowListener(new WindowAdapter(){ public void windowClosing( WindowEvent e){ System.exit(0); } } ); } catch (Exception e) { System.out.println(e.getMessage()); } } public void paint(Graphics g) { if(image != null){ g.drawImage(image, 10, 30, this); } } } class OkCancelDialog extends Dialog implements ActionListener { Button ok, cancel; TextField text; public String data; OkCancelDialog(Frame hostFrame, String title, boolean dModal) { super(hostFrame, title, dModal); setSize(280, 100); setLayout(new FlowLayout()); text = new TextField(30); add(text); ok = new Button("OK"); add(ok); ok.addActionListener((ActionListener)this); cancel = new Button("Cancel"); add(cancel); cancel.addActionListener(this); data = new String(""); } public void actionPerformed(ActionEvent event) { if(event.getSource() == ok){ data = text.getText(); } else { data = ""; } setVisible(false); } }

2251


IN 1000kva transformer where the oil and winding temperature sensors is connected

2464


1600kva capacity Transformers how the bucholz relay,Oil temperature,winding,surge relay relays setting are to be done

1853


What is critical pressure ?. What will happen if water is heated above critical pressure and temperature?. What importance it is having related to Boiler?. Upto what presrure natural circulation is possible in Boilers?.

2433


For the requirement of a furnace of temperature range up to 1200 oC using silicon carbide rods, What is the required rate of transformer needed (please do it with all details)?

1893


What is the maximum cylinder head temperature of a 1200 KW, 12 cylinders DG set

1882