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

L&T Interview Questions
Questions Answers Views Company eMail

What is the max demand on your transformer and your company?

10 50588

How do you connect the capacitors on polyphase circuits?

10 36300

Do you know how to measure the earth resistance? if so explain it

42 152875

Why a starter is used for a motor?

50 133784

What meant by lagging and leading? When if they are occurred what preventive methods should be taken?

14 50636

Whats meant by trivector meter where it is connected at the substation?

20 105573

What happens when a main method is declared as private?

22 54521

What Name space does the web page belon in the .net framework class hierarchy?

1 7185

Method of findingthe dry ingredient quantity of 1 m3 concrete.

25 188295

tell me about yourself?

10 22112

What is Liquidity Ratio?

19 39238

How can you clean up objects holding resources from within the code?

2 6030

What is a Quality Factor?

19 50120

what are active and Passive Components?

102 198117

tell about yourself, please do give with example .

40 115101

Post New L&T Interview Questions


L&T Interview Questions


Un-Answered Questions

What are nested classes in c#?

552


What's the difference between a hashtable and a hashmap?

454


What is parallelize in pyspark?

3


What is the shortcut for undo?

318


HOW CAN TAKE THE MAXIMUM GRAUITY (EX RS.3.5 LAC)

1629






What is range and xrange in python?

539


What phases does a site lifecycle consist of?

266


Is math an abstract class in java?

531


Explain me what is casing?

1


Tell me what is the main difference between php 4 and php 5?

534


Who has the largest database?

472


Define thermal resistance in the context of power amplifier.

598


We have a few local competitors at Apple. In your opinion, what makes us stand out from the rest?

676


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); }

3858


Why python is referred as glue code?

489