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

HAL Interview Questions
Questions Answers Views Company eMail

Can ROM be used as stack?

4 22493

What is the difference between C++ & Java?

78 177406

1) what is ur short term and long term career plans 2) can u tell me any two reasons , why i should hire u ? 3) why r u looking for change ? 4) what is ur strengths and weakness ?

3 42277

What is the need for modulation?

82 311705

How long you are going to be in bench?

2550

Explain the procedure of smooth muscle cell culture ?

1817

Placement Paper of HAl [ 26 November Bangalore ]

11 27515

What is the function of Clapper box in a shaper?

11 56430

What are the various machining processes?

7 19372

The first History book was written by: (a) Othelo (b) Julius Caesar (c) Herodotus (d) Aristotle

3 15346

When an electric bulb breaks, there is a mild bang due to (A) The chemical reaction between the enclosed gases. (B) The compressed gases rushing out suddenly. (C) The air rushing in to fill the evacuated space (D) Some other reason

2 11307

hi, how can model questions of DRDO,NTPC,HAL,BHEL exam for engineering level exam.If you know please send me.

5 26465

The Hindustan Aeronautics Ltd. (HAL) is located in 1 Kanpur 2 Ahmedabad 3 Bangalore 4 Nagpur

5 12064

i want model questions which will be asked in hindustan aeronautics online test for the post of managenent trainee

2384

HI I am going to write HAL for the post of management trainee. I need model / Sample Question . Plz help me

2002

Post New HAL Interview Questions




Un-Answered Questions

X flies from Hyd to bangalore using different methods of transportation. write the test scenarios and test cases for this?

2011


one kg of gas is compressed adiabatically from 1 kg/sq.cm,1 cubic metre volume and 300 kelvin to 5 kg/sq.cm,0.5 cubic metre and 400 kelvin.work transfer in this process will be

7263


Explain about GUID?

826


What is a standalone command task?

1168


What are the methods required for posting a purchase order?

171


What is str_replace()?

987


If a 16 story building has 12000ft on each floor. Company a rents 7 floors and company b rents 4 floors. What is the number of square feet of unrented floor space?

1013


What are tokens in python?

934


What are the difference between power classes in bluetooth?

851


Is python good for making apps?

770


Is deep learning better than machine learning?

5


why the path of a satellite is always elliptical with earth not at the centre of the ellipse?

3069


What is Tableau Repository?

491


What are the types of assertion in jmeter?

601


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

4179