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...

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Bhel Electrical Engineering Interview Questions
Questions Answers Views Company eMail

why there is a high voltage line in multiplication of 11?i.e.- -66kv,11,kv,22kv

4 9460

the input mechanical power of a single alternator is increased,its RPM increased but in case of an alternator synchronised with grid its RPM does not increased with increase of input mechanical power. why?

3 8713

without any excitation we can strt any dc or ac moter?

6 12658

What is Nominal voltage?

3 10060

how braking & making capacity of circuit breaker are calculated?

2304

What is the minimum IR value of HT/ LT cable? Pls post separetely!!!!!

2448

If a contactor need to replace with faulty one. what I want to check?

2 4410

What are the test performed on A faulty transformer ?

2 5865

How damper winding in synchronous motor suppress Hunting?

2 26029

why microprocessors are named as 8085 ,8086 etc? what's the reason for this???

15 44833

what is relay multiplier

1 6378

How do you reset circuit breaker?

1 3326

Why Alternator has 0.8 power factor?

2 8087

WHY 6.6KV MOTORS ARE STAR CONNECTED AND WHY NOT DELTA CONNECTED,

15 34606

how do u gauge the size of the cable ?for eg. consider a 300 sqmm L.T Cable.How do u determine the size of the cable seeing it pratically?

2114

Post New Bhel Electrical Engineering Interview Questions


Bhel Electrical Engineering Interview Questions


Un-Answered Questions

What is a spreadsheet column?

637


What is the use of application context in spring?

414


How does the electron transport chain work during the Calvin Cycle?

2021


Does exist in php?

984


What are the 5 types of research methods?

1142


I want to use the markerfor playing a video using the jmf.Suppose my video length is of 2 hours.I want it to play ex-15 mintue or 20 mintue and should stop after assigning the time.I am providing my piece of code............please help me.... package com.jha.cdac.lila.praveen; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; import java.net.URL; import javax.media.ControllerAdapter; import javax.media.Manager; /** * * @author vinays */ import javax.media.Player; import javax.media.RealizeCompleteEvent; import javax.media.Time; import javax.swing.JFrame; public class PlayVideo extends javax.swing.JFrame{ Player player; Component center; Component south; // this code is required for playing the video file of mpeg,mp4,mp3,3gp,rm,flv, //wmf,mpv,vob,qt and the asf extension public PlayVideo() { File file = new File("Lesson1.mpg"); try { load(file); // load() } catch (Exception ex) { //Logger.getLogger(LessonNarrative.class.getName ()).log(Level.SEVERE, null, ex); System.out.println("Error while loading file............"+ex); } } //the piece of code given below is used to load the file which user want to play. public void load(final File file) //load the file throws Exception { URL url = file.toURL(); final Container contentPane = getContentPane(); if (player != null) { player.stop(); } // MediaLocator mediaLocator=new MediaLocator (file.toURL()); // DataSource dataSource=Manager.createDataSource (mediaLocator); // player=Manager.createPlayer(url); player = Manager.createRealizedPlayer(url); ControllerAdapter listener = new ControllerAdapter() { @Override public void realizeComplete( RealizeCompleteEvent event) { Component vc = player.getVisualComponent(); player.getVisualComponent(); if (vc != null) { contentPane.add(vc, BorderLayout.CENTER); center = vc; } else { if (center != null) { contentPane.remove(center); contentPane.validate(); } } Component cpc = player.getControlPanelComponent(); if (cpc != null) { contentPane.add(cpc, BorderLayout.SOUTH); south=cpc; } else { if (south != null) { contentPane.remove(south); contentPane.validate(); } } pack(); // //setTitle(file.getName()); //to get the title of Video or Audio File } }; Time tm=new Time(30.4402403); Time tm1=new Time(5.7256199); player.addControllerListener(listener); player.setMediaTime(tm1); player.setStopTime(tm); // player.setMediaTime(new Time(5.0)); //player.setStopTime(new Time(73)); player.realize(); player.start(); } public static void main(String args[]) throws ClassNotFoundException { PlayVideo pv = new PlayVideo(); JFrame f = new JFrame("Lesson1"); f.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { System.exit(0); } }); f.getContentPane().add("Center", pv); f.pack(); Dimension screenSize = Toolkit.getDefaultToolkit ().getScreenSize(); int w = 420; int h = 140; pv.setLocation(screenSize.width/2 - w/2, screenSize.height/2 - h/2); pv.setSize(w, h); pv.setVisible(true); }

4214


What is pptx file format?

875


What is order by clause?

909


What are the core requirements for a Business Blockchain?

5


What is import wizard? : salesforce Data Management

489


Can someone please share me the FSD for SAP MM related?? It would be great help and thanks in advance.

1835


Does swift support multiple inheritance?

879


Name few "optional" classes introduced with java 8 ?

1140


What is cte?

983


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1036