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

CMC Interview Questions
Questions Answers Views Company eMail

how to draw a rectangle using 3 lines?

9 56955

I had faced in one of the interview that " you have found the bug and assigned to the corresponding developer, but the developer did not accept your bug. what will you do at this situation. can any one help me with clear answer ? I answered like, I will show the SRS,GUI document and show the image of the bug where i got. and again they asked me , still they did not accpet your bug. what you will do ? Answer me....

5 7326

28. If we have three plants & one material, then how to extend single material to all three plants?

2 6174

tricks to handle the customer or client in sap, specifically when he is negative for particular business requirement

1632

If i have 3 different company codes,operating in different countries with different currencies so what will be my controlling area currency is it different for all company codes or only one. how will i get consolidated report.

1672

int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 6677

what are metrics and what are metrics did u collect in you are project

1933

What is the best mixture ratio in building a power plant? what is the weight of a 1 sack cement? what is the density of a cement?

1 5558

what is the usage of Enhancement category in tables?   

1 25106

How can I map a tank?  Tank 15m h and 42m dia. we just fixed radar type lit. its reading shows over range. Now its required mapping ?

1 2691

How can to check the working of a sensor deployed in a project?

1260

There are 5 red shoes, 4 green shoes. If one drasw randomly a shoe what is the probability of getting redshoe is

942

Two circles , one circle is inscribed and another circle is N outscribed over a square. What is the ratio of area of inner to outer circle.

811

1/3 of girls and 1/2 of boys is goto canteen. What factor & total no. of class mates goto canteen.

757

15 lit of water containing 20 % of alcohol ,then added 5 lit of water .What is the % of alcohol?

781

Post New CMC Interview Questions


CMC Interview Questions


Un-Answered Questions

what are different ways the context switch happens from user to kernel space or vice-versa ?

2144


How does linkedlist work in java?

509


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

3866


Write ajax call syntax?

433


How to assign a computed value to the same array back?

79






What is slim framework?

509


What are route parameters?

421


Which method is executed if space is passed for the method parameter of macro swc_call_method ?

446


Why is arraylist faster than linkedlist?

515


Define balancing condition for AVL Tree.

552


What is the import procurement cycle? What are the customization steps in sap?

523


You may undergone many projects. Do all the projects match up with customer’s expectations?

708


What is py4j?

420


What are different types of relationship in salesforce? : salesforce objects & fields

203


Will count(column) include columns with null values in its count?

671