What are the correct answers ?

after doing one sample swing application, i assumed the exam will be easy. when i took the exam, i couldn't do anything...
what are the correct answers ??/
  Which one of the following converts the Image i into the BufferedImage bi? 
Choice 1  
bi = new BufferedImage(0, 0, BufferedImage.TYPE_INT_RGB);
Graphics2D g = (Graphics2D)bi.createGraphics();
g.drawImage(i,i.getHeight(this),i.getWidth(this)); 
Choice 2  
bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
bi.drawImage(i,0,0,this); 
Choice 3  
bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
Graphics2D g = (Graphics2D)bi.createGraphics();
g.drawImage(i,0,0,this); 
Choice 4  
bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this), BufferedImage.TYPE_INT_RGB); 
Choice 5  
bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this)); 
CardLayout
BorderLayout
FlowLayout
GridBagLayout
GridLayout 
  Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself? 
Choice 1  
CardLayout, FlowLayout, GridBagLayout, GridLayout 
Choice 2  
GridBagLayout 
Choice 3  
BorderLayout, GridLayout 
Choice 4  
BorderLayout, FlowLayout, GridLayout 
Choice 5  
BorderLayout, CardLayout, FlowLayout, GridBagLayout, GridLayout 
JFrame jf = new JFrame();
jf.setSize(400,400);
JTextField jtf = new JTextField("JTextField");
JButton jb = new JButton("JButton");
jf.getContentPane().setLayout(
                      new FlowLayout(FlowLayout.LEFT,1,2));
jf.getContentPane().add(jtf);
jf.getContentPane().add(jb); 
  Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other? 
Choice 1  
jtf and jb are in the top-center of the Jframe; jtf is to the left of jb, 2 pixels apart. 
Choice 2  
jb is in the top-right corner of the JFrame with jtf 1 pixel to the left of it. 
Choice 3  
jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it. 
Choice 4  
jb is in the top-right corner of the JFrame with jtf 2 pixels to the left of it. 
Choice 5  
jtf is in the top-left corner of the JFrame with jb 2 pixels to the right of it
public void drawText(Graphics2D g, String text){
  Font f = new Font("Century Gothic", Font.BOLD, 10);
  g.setFont(f);
  g.drawString(text, 20, 20);
  Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
Choice 1  
The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
Choice 2  
"Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
Choice 3  
The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
Choice 4  
The Font() constructor throws an IllegalArgumentException. 
Choice 5  
A default Font object is returned and is used
Sample Code 
public void drawText(Graphics2D g, String text){
  Font f = new Font("Century Gothic", Font.BOLD, 10);
  g.setFont(f);
  g.drawString(text, 20, 20);
  Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
Choice 1  
The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
Choice 2  
"Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
Choice 3  
The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
Choice 4  
The Font() constructor throws an IllegalArgumentException. 
Choice 5  
A default Font object is returned and is used. 
How must do you interact with a JTextField in order to generate an ActionEvent? 
Choice 1  
Tab into the JTextField from another Component. 
Choice 2  
Type in the JTextField. 
Choice 3  
Activate the cursor in the JTextField. 
Choice 4  
Hit <RETURN> while the cursor is in the JTextField. 
Choice 5  
Hit the spacebar while typing in the JTextField. 
double-buffering
public class TimerTest implements ActionListener{
  public static void main(String[] args){
    TimerTest test = new TimerTest();
    javax.swing.Timer timer = new javax.swing.Timer(100,test);
  public void actionPerformed(ActionEvent ev){
    System.out.println("Timer ticked.");
  Given the above sample code, what is the result when the code is run? 
Choice 1  
The words "Timer ticked." are printed to the console once after 100 milliseconds. 
Choice 2  
The words "Timer ticked." are printed to the console every 100 microseconds. 
Choice 3  
The words "Timer ticked." are printed to the console every 100 seconds. 
Choice 4  
The words "Timer ticked." are printed to the console every 100 milliseconds. 
Choice 5  
Nothing, the Timer is not started. 
1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
2. slider1.setPaintTicks(false);
3. slider1.setMajorTickSpacing(10);
4. slider1.setMinorTickSpacing(2); 
  What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick? 
Choice 1  
Replace line 3 with slider1.setMajorTickSpacing(17); 
Choice 2  
Replace line 2 with slider1.setPaintTicks(true);
Replace line 3 with slider1.setMajorTickSpacing(17);
Replace line 4 with slider1.setMinorTickSpacing(5); 
Choice 3  
Replace line 3 with slider1.setMajorTickSpacing(5);
Replace line 4 with slider1.setMinorTickSpacing(4); 
Choice 4  
Replace line 2 with slider1.setPaintTicks(true);
Replace line 3 with slider1.setMajorTickSpacing(20);
Replace line 4 with slider1.setMinorTickSpacing(4); 
Choice 5  
Replace line 4 with slider1.setMinorTickSpacing(6); 
   Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time? 
Choice 1  
ButtonGroup g = new ButtonGroup();
g.add(b1); g.add(b2); g.add(b3); 
Choice 2  
b1.group(true); b2.group(true); b3.group(true); 
Choice 3  
JRadioButton jbs[] = {b1, b2, b3};
ButtonGroup g = new ButtonGroup(jbs); 
Choice 4  
The default behavior of JRadioButtons is such that only one can be selected at a time as long as they are in the same Container. 
Choice 5  
ButtonGroup g = new ButtonGroup(b1, b2, b3); 
Sample Code 
public static void main(String args[]){
  What is the role of the method in the code above? 
Choice 1  
To provide a place for initialization code when instantiating the current class. 
Choice 2  
It is the first method run when a class is run with the Java Interpreter. 
Choice 3  
It serves no specific function. It is a residual method from Java 1.0. 
Choice 4  
It is the first method that the Java Compiler converts to bytecode when creating a .class file. 
Choice 5  
To process command-line parameters when running the Java Interpreter 
How do you create a menu item, Save, with a shortcut key of Ctrl+S? 
Choice 1  
You have to override the KeyPressed event of the top level Frame and handle the Ctrl+S to call the menu item's actionPerformed. 
Choice 2  
JMenuItem save = new JMenuItem("Save");
save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK)); 
Choice 3  
JMenuItem save = new JMenuItem("Save");
save.enableShortcut(KeyEvent.CTRL_KEY + KeyEvent.S); 
Choice 4  
JMenuItem save = new JMenuItem("Save");
save.setMnemonic("Ctrl+S"); 
Choice 5  
JMenuItem save = new JMenuItem("Save");
save.addShortcutKey( new KeyStroke(KeyStroke.S | KeyStroke.CTRL_KEY) ); 
GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
gbl.addLayoutComponent(jb,gbc1); 
  In regards to the above code, which one of the following indicates jb's grid position? 
Choice 1  
Grid position 2,1 
Choice 2  
Grid position 1,2 
Choice 3  
Grid position 1, 1 
Choice 4  
Grid position 10, 1 
Choice 5  
Grid position 1, 3 
GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
gbl.addLayoutComponent(jb,gbc1); 
  In regards to the above code, which one of the following indicates jb's grid position? 
Choice 1  
Grid position 2,1 
Choice 2  
Grid position 1,2 
Choice 3  
Grid position 1, 1 
Choice 4  
Grid position 10, 1 
Choice 5  
Grid position 1, 3 
Which one of the following is necessary when changing an Applet to a standalone application? 
Choice 1  
Add a no-argument constructor. 
Choice 2  
Remove the init(), start() and stop() methods. 
Choice 3  
Remove "extends JApplet" or "extends Applet". 
Choice 4  
Add a main() method. 
Choice 5  
Change the import statement so that it imports an Application container rather than Applet or JApplet. 
Which one of the following adds the String "Java" to the JComboBox jcb? 
Choice 1  
ComboBoxModel cbm = jcb.getModel();
cbm.addItem("Java"); 
Choice 2  
jcb.setText("Java"); 
Choice 3  
ComboBoxModel cbm = jcb.getModel();
cbm.add("Java"); 
Choice 4  
jcb.add("Java"); 
Choice 5  
jcb.addItem("Java");

I'll have a go but I am not saying they are all correct...
Question 1.
Which one of the following converts the Image i into the BufferedImage bi?
Choice 3 (assuming this implements the imageobserver interface)
bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);  //1 is BufferedImage.TYPE_INT_RGB
Graphics2D g = (Graphics2D)  
bi.createGraphics();
g.drawImage(i,0,0,this);Good luck with your homework...
nes
Question 2.
CardLayout
BorderLayout
FlowLayout
GridBagLayout
GridLayout
Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself?
Choice 4
BorderLayout,
FlowLayout,
GridLayout
(GridBagLayout uses GridBagConstraints to decide component spacing, card layout does not provided component spacing due to the deck nature used)
Question 3.
JFrame jf = new JFrame();
jf.setSize(400,400);
JTextField jtf = new JTextField("JTextField");
JButton jb = new JButton("JButton");
jf.getContentPane().setLayout( new FlowLayout(FlowLayout.LEFT,1,2));
jf.getContentPane().add(jtf);
jf.getContentPane().add(jb);    Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other?
Choice 3 jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it.
Question 4
public void drawText(Graphics2D g, String text)
     Font f = new Font("Century Gothic", Font.BOLD, 10);  
     g.setFont(f);  
     g.drawString(text, 20, 20);
}    Given the above sample code, what happens if the "Century Gothic" font is NOT available?
Choice 5 A default Font object is returned and is used
Question 5.
How must do you interact with a JTextField in order to generate an ActionEvent?
Choice 4 Hit <RETURN> while the cursor is in the JTextField.
Question 6.
public class TimerTest implements ActionListener
     public static void main(String[] args)
           TimerTest test = new TimerTest();    
           javax.swing.Timer timer = new javax.swing.Timer(100,test);  
     public void actionPerformed(ActionEvent ev)
          System.out.println("Timer ticked.");  
}    Given the above sample code, what is the result when the code is run?
Choice 5 Nothing, the Timer is not started.
Question 7.
1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
2. slider1.setPaintTicks(false);
3. slider1.setMajorTickSpacing(10);
4. slider1.setMinorTickSpacing(2);    What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick?
Choice 4 Replace line 2 with slider1.setPaintTicks(true); Replace line 3 with slider1.setMajorTickSpacing(20); Replace line 4 with slider1.setMinorTickSpacing(4);
Question 8.
Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time?
Choice 1 ButtonGroup g = new ButtonGroup(); g.add(b1); g.add(b2); g.add(b3);
Question 9.
Sample Code
public static void main(String args[]){ }
TYPO - should be public static void main(String[] args){ }
What is the role of the method in the code above?
Choice 2 It is the first method run when a class is run with the Java Interpreter.
Question 10.
How do you create a menu item, Save, with a shortcut key of Ctrl+S?
Choice 2 JMenuItem save = new JMenuItem("Save");
save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK));
Question 11.
GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1); gbl.addLayoutComponent(jb,gbc1);
In regards to the above code, which one of the following indicates jb's grid position?
Choice 3 Grid position 1, 1
Question 12
Which one of the following is necessary when changing an Applet to a standalone application?
Choice 1 Add a no-argument constructor.
Choice 2 Remove the init(), start() and stop() methods.
Choice 3 Remove "extends JApplet" or "extends Applet".
Choice 4 Add a main() method.
Choice 5 Change the import statement so that it imports an Application container rather than Applet or JApplet.
mmm. not a good choice of answers. look at the following link...
http://forum.java.sun.com/thread.jsp?forum=57&thread=218096
Question 13.
Which one of the following adds the String "Java" to the JComboBox jcb?
Choice 5 jcb.addItem("Java");

Similar Messages

  • What are the correct steps for installing Oracle Entitlement Server SSM?

    Can somebody explain what are the correct steps to install OES SSM 10.1.4.3? I have installed OES admin 10.1.4.3 and applied the CP2 patch. it is allowing me to open Entitlement Administration, where I can define the policy.
    Is it sufficient to have this Entitlement Admin to call the policy from BPM? Do I need a SSM ?
    When I try to configure Java SSM using ConfigTool.bat -process myssm_config.properties I am getting the following error
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • What Are The Correct Gray OS X Discs For This Imac?

    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    There has to be a serial or model number right? I have Leopard installed on it and I missing having the DVD player so could I connect the iMac to my PowerMac G5 using Target Disc Mode, and then install Panther or Tiger onto the iMac through it?

    Liquidus wrote:
    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    The correct Mac OS restore discs are Mac OS X 10.1.2 and Mac OS 9.2.2. I have restore discs for a 600MHz Late 2001 iMac G3, which has the same identical software as the iMac G4. That part number for the disc set is 603-0372.
    For the second part of your question, you can install Panther or Tiger through Target Disc Mode from your PM G5.
    -Brian

  • What are the correct domain settings @ Go Daddy?

    I will set up a Mac Mini Lion Server using server assistant.  I bought a domain name from Go Daddy. What are the correct domain (DNS, host) settings @ Go Daddy - need step by step guide; thanks in advance.

    I do not fully understand how the PTR pointer works
    PTRs map IP addresses back to hostnames - also known as 'reverse DNS'.
    The way it works is that when you (or any client) looks up an IP address they first query the root servers that maintain a map of the main IP address allocations. You then query the server that's authoritative for the IP address in question. That server may respond, or may further delegate responsibility to another server.
    As an illustration, imagine a company - MegaISP - who's been allocated a large block of IP addresses - say 1.0.0.0 through 1.255.255.255. As an ISP they provide access service in all 50 states so they may further subdivide their network into chunks and delegate control of each chunk to a different server, e.g. 1.1.0.0 - 1.1.255.255 -> CA, 1.2.0.0 - 1.2.255.255 -> NY, etc.
    Now you, as a customer of MegaISP, connect to their server and are allocated a dynamic address from the 1.2.0.0 - 1.2.255.255 subnet - let's say 1.2.3.4
    When you perform a reverse lookup on 1.2.3.4 your query first goes to the root servers which say something like 'hey, those IPs are owned by MegaISP's DNS servers, so go ask them'. You then query MegaISP's main servers which then say 'hey, that IP is somewhere in the New York subnet, so go query the New York DNS server. Your query then goes to MegaISP's New York server that replies something like 'host-1-2-3-4.ny.megaisp.net' and that' your reverse lookup.
    (of course, this is greatly simplified, and the whole process takes a fraction of a second, but hopefully you get the idea).
    The problem you now have is that MegaISP have no idea what services you're running on your connection, so they just return a generic response (e.g. host-1-2-3-4.ny.megaisp.net) and not something that relates to your domain (e.g. www.yourdomain.net). Nobody knows to ask your DNS server what hostname your IP address should map to.
    In order for that last step, MegaISP either have to change their DNS servers to map your IP address to your domain name rather than the generic hostname, or they have to further delegate your IP address's lookup to your own server (i.e. add another link in the chain - like 'hey, that IP address is delegated to yourdomain.net, so go ask their server').
    Most ISPs are happy to either delegate or have a custom entry for your domain, but not on dynamic or residential-grade connections - it's not worth the time and effort to keep it up to date as your IP address changes, which is why it's typically only something that comes with business-grade services.
    and what limitations this will lead to
    Any service that relies on valid reverse DNS is doomed to fail. For the most part, http doesn't matter/care, but don't expect to run a mail server or certain other services.

  • What are the correct Time Capsule Airport Utility Disk options?

    During configuration of the Time Capsule what are the correct options/settins in the Airport Utility on the Disk tab?  Does File Sharing interfere with Server File Saring>

    You can turn on file sharing.. it will not interfere with your server since it has a different IP address.
    You can use either device password or disk password.. do not use the profiles as that complicates things.. and Apple did not build in a link to Server to use standard user login which is a great pity.. when you have an active directory type setup it .. the TC could have been made a lot more business like.. However apple really have the TC aimed at the domestic market and users without a server.
    What are you intending to use the TC for?
    Most people would be better buying an airport extreme rather than TC when they are running business setup.

  • Transfer ADOBE creative Suite from an old Mac to a new Mac, I have the code but I don't have a CD. What are the correct steps?

    Hi
    I bought a new Mac and I want to transfer my Adobe Creative Suit CS6 to it from my old one. What are the correct steps? Please note that I don't have a CD because I downloaded it via the net. It was an upgrade for the student edition. I heard something about deactivation and reactivation but I don't want to do something wrong then lose my precious software. Please help. Thanks.

    You can download the software and install it using the page linked below.
    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    You are allowed to have the software installed and activated on two machines, so there should be no reason to deactivate it on your other machine, or at least you can wait until you see it loaded and working on the new one.

  • My new 4s cannot send emails; emails are rejected by server. What are the correct settings?

    What are the correct settings when my new 4s can receive but will not send messages. The emails are rejected by the server,

    You're going to have to ask your e-mail provider. We don't have the slightest clue who that is, much less what the correct settings would be.

  • What are the correct settings for my WRT54GS for using remote access on a Windows Home Server?

    I can not remotely access my Windows Home Server from outside.  What are the correct settings for my WRT54GS?

    I have opened ports 80, 443,and 4125 to PCP.  The  router address is http://192.168.1.1, my address is 221.40.138.170.
    Thank you.

  • What are the correct Premiere Pro CS4 settings for producing WMV/MP4 to FLV/F4V videos?

    Greetings.
    I have recently purchased CS4 Production Suite.  My task is to convert WMV/MP4 videos to FLV/F4V videos that contain titles, transitions, and credits for streaming from Flash Media Server.
    My test videos are experiencing audio sync issues when using Adobe Media Encoder as the export tool.  When I use Flash Video Export tool using the source WMV/MP4, I do not experience sync issues.
    I can control the WMV/MP4 output settings since we record our own sessions using Windows Media Encoder.  I can also utilize Flash Media Live Encoder to capture the source.
    The video source comes from a video capture card (Osprey) that is connected to an IP based camera(s) which are controlled by video technicians.
    We record from that capture card into WMV format.
    My question is, what are the settings in Premiere to produce FLV/F4V for streaming in 480p quality?
    I am new to video production and gladly appreciate any assistance.
    Regards,
    Shack

    Classification: UNCLASSIFIED
    Caveats: NONE
    Jim,
    Thank you for your response.  I am a total noob at video, but have the requirement to produce recorded video to our FMS servers.
    Here is my situation.  We have classrooms and auditoriums hard wired with IP cameras.  Our video techs can record to DVR and then finalize to DVD (VOB).  We also have a control center that can capture those cameras using Windows Media Encoder to record.
    I have been given CS4 to produce these videos.  Each time that I transcode, the audio gets out of sync.  I am trying to figure out a suitable way to take VOB and WMV files into PP and output to FLV/MP4.
    Appreciate any advice...
    Shack

  • What are the correct steps for installing SP1 over Sharepoint 2010

    Hi,
    I have SharePoint 2010 (Release To Manufacturing) environment and am planning to to upgrade it to SP1. May I please know the correct steps
    to install SP1 on to my environment(2WFE + 2APP servers & 64 bit OS).

    SP2 provides key updates and fixes across our servers, services and applications including security,
    stability, and performance enhancements and provides better compatibility with Windows 8, Internet Explorer 10, Office 2013, and SharePoint 2013.
    also your Sharepoint is upto date version, you will get all the functionality which
    you will losing since you are prior to SP1.
    i.e Site Recycle bin,
    Content Deployment fixes, . you can go throw all the kB articles which will tell you what fixes in it.
    http://blogs.technet.com/b/stefan_gossner/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • What are the correct settings for the Canon 5D mark II in FCP 7 ?

    I am shooting full HD at 23s97 fps.. tried making a preset for the Canon but when I import fils FCP always wants to change to appropriate settings for this file type but doesn't tell me what that is...
    (latest firmware installed)
    Please, can someone provide all the correct settings for me?
    And also, why doesn't the camera show up on the desktop/in the menus when attached to the mac? I have ro use EOS utility every time I want to get anything off of the camera... and FCP doesn't see it either. That's just not right - FCP MUST recognise my camera!! : (
    Please help - I don't want to start editing until I have the right settings for this footage.
    Thanks
    Jim

    Welcome to the Boards
    Not sure what you mean with the following, looks like a word dropped?
    I have ro use EOS utility every time I want to get anything off of the camera...
    Anyway, some more specs on your system could help point where the issue is. With the new Plug-In by Canon you can Log & Transfer from the Flash Card (not sure how you connected the camera.) Alternatively you could just drag the files in (but make sure to keep all files such as THM in case you use Log and Transfer later.)
    Generally it is best to transcode to Pro Res to be able to work with the files in Final Cut. (Log & Transfer should do that, or using Compressor/Mpeg Streamclip.)
    It (Final Cut) is probably changing the timeline to match the codec, or depending on your last preset used, just switching things around. In other words if you were editing in DV and had a set up for that, new sequences would default to that and if you try to ad anything else you will get the message.
    Take a look at the search over there -> to look for the Canon 5D threads for some more info.
    What I would do is just pull one of the clips in to start and look at what the sequence settings are aftr Final Cut changes them for you - they should be fine generally, though you will want to change Codecs to Pro Res.
    I like just batch conversion of all my clips from the 5D Markk II and then work from there. (I do not hook up the camera to the computer, just use a card reader.)

  • What are the correct iphone 5 H.264 export settings?

    I have scoured the internet for help trying to find the correct way in which to make a proper H.264 mp4 video file that will play on the iPhone 5. I am using Adobe Premiere CS 6. There exist presets for the iphone 4, but not the iphone 5. I tried the iphone 4 presets but they will not play on the iphone 5.
    I tried checking Apple's iphone 5 video specs to make sure I am not over spec: https://www.apple.com/iphone/specs.html, which says: Video formats supported: H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Here is how I have my video export settings set up in Adobe Media Exporter and the multiplexer is set to iPod:
    I've tried other slight variations, but nothing will play. I am hosting these videos on a site and just trying to access them from the URL bar such as: http://harbourak.us/videos/iOS_mp4.mp4. I cannot use m4v or mov formats because of the flash script that is used on other flash supporting browsers that can convert the mp4 quickly on the fly.
    If anyone has any suggestions for how to get this to work I would be greatly appreciative! Thank you!

    So yeah, there is no setting I can find that allows you to properly export your video in h.264 .mp4 that will play on the iphone from Adobe Premiere CS6. What is the point? I just don't get it. It's like secretly apple has decided to not allow any mp4 to be downloaded from the web and be played on the iphone, but then lie to everyone when they say on their spec page that the iphone will play mp4s that are 640x480, 30fps, AAC 48kHz, < 2.5Mbps. Ugh, I've exported so many different versions of .mp4s and for each and everyone the iphone says "sorry, broken play button image" and no explanation. So helpful! </sarc>
    Okay, you want examples that work FINE in regular PC browsers? Well, I set up a dummy page with the HTML5 embed code here:
    http://housemajority.org/wp-content/themes/candidate/video-test.php. Works fine in Safari for Mac & PC.
    This currently has the 640x480, 30fps, AAC 48kHz, < 2.5Mbps h.264 codec .mp4. Plays fine in Safri on the PC or Mac but not the iphone. This file completely coorelates with Apple's spec sheet so I'm at a total loss. The actual file can be found here: http://housemajority.org/vids/iOS_30fps.mp4
    Other video attempts:
    /vids/iOS_preset.mp4 - 29.97 fps before changing to 30fps
    /vids/iOS_mp4.mp4 - 720x480 before changing to 640x480. makes no sense
    /vids/H264_w29.mp4 - another version of the 720x480 version.
    /vids/iOS_converted.mp4 - tried using one of those "convert videos to iphone version" shareware apps that also doesn't work.

  • What are the correct parameter names for a JDBC pool connection?

    Looking in the admin console I notice the differences in the properties name (type casting) of PointBasePool and __TimerPool pool connections properties and the create wizard properties.
    PointBasePool and __TimerPool uses this name parameters: User,Password, and DatabaseName.
    Create wizard uses these: databaseName, user, password.
    So, then, what is the standard names for a connection in SOA8? What is the standard for JDBC?
    For example, Tomcat 4 uses username, password, url, driverClassName as parameters names.
    Please help,
    This is getting more and more confising,
    Thanks,
    Lorenzo Jimenez

    The properties that you specify when creating the connection pool are unique to the vendor.
    Any or the properties that you specify user,password, url...etc we expect to have setters (setUser, setPassword, setUrl)
    let me know if need more info

  • Sync Errors - What Are the Correct Folder Permissions?

    I've been having problems recently on the PB getting it to successfully sync.
    Decided to open the log using Console and see what was happening - all sorts of errors! One seems to relate to permissions, the other to a possible problem at .Mac
    It had attempted to create a folder 'Syndication' under '~/Library/Application Support' and couldn't. What should the group be to get this to work properly - clearly it isn't 'staff'!
    In the other one it seems that a http 404 error occurs (not found) when trying to retrieve keychains from .Mac - going to keep an eye on this.
    Cheers
    Powermac G5 DP 2.3 GHz   Mac OS X (10.4.4)   4.5 GByte RAM

    .Mac sync got a lot of problems this week and Apple has disabled it for now. Check www.mac.com and I think you should follow .Mac forum instead of iSync one as this is a .Mac problem (iSync does not handle .Mac sync). People are discussing the issues you experience there.

  • What is the correct answer is this question is sql ?

    hi .. please i need correct answer in this question ..
    View the Exhibit and examine the structure of the PRODUCTS table.
    Using the PRODUCTS table, you issue the following query to generate the names, current list price, and
    discounted list price for all those products whose list price falls below $10 after a discount of 25% is applied
    on it.
    SQL>SELECT prod_name, prod_list_price,
    prod_list_price - (prod_list_price * .25) "DISCOUNTED_PRICE"
    FROM products
    WHERE discounted_price < 10;
    The query generates an error.
    What is the reason for the error?
    A-The parenthesis should be added to enclose the entire expression.
    B-The double quotation marks should be removed from the column alias.
    C-The column alias should be replaced with the expression in the WHERE clause.
    D-The column alias should be put in uppercase and enclosed with in double quotation marks in the WHERE clause.

    Hi,
    Have you taken the time to determine what happens when you perform the requested actions?
    If you have access to Oracle Database it should be less than a 10 minute exercise.
    At a minimum, using hosted Oracle Application Express you have access to Oracle Database.
    If you've done it, what were the results? There should be a telling error message.
    Regards,
    Mark

Maybe you are looking for

  • How to send mail to all the receipients in distribution list

    Hi All, As per my requirement I need to send error log in doc format. I am using the help of following code suggested by someone in sdn. Mehr Beispile unter BCS_EXAMPLE_* mit se38 Mehr Beispile unter BCS_TEST*     mit se38 DATA: SEND_REQUEST       TY

  • Problems with Time machine caused by removing PKCS11.log?

    I haven't yet found a solution to my Time Machine no longer backing up: "while an error occurred while copying files to the backup disk" I requested help before, but so far nobody could help me solve this problem! I noticed that I removed, in a file

  • GX60 - Cannot install windows 7

    I just bought a GX60 3AE-216US. I don't want Windows 8 so i decided to install windows 7 on it. i have a boot-able USB drive but after the initial "install now" screen, it asks for drivers. I thought the USB drive would have all the required drivers

  • Hi,  I'd like to drag and drop some of my iTunes 11 music onto a

    former WD backup bootable drive to later view/and play on a PC laptop running a Microsoft OS.  What problems might I encounter for compatibilty?  The laptop is a new ssd drive Toshiba with a factory "media player". Thank you, Scott

  • Error in 5.1 logs on startup

    Hi, I seem to be getting the following error every once in a while, does anyone know what this could be caused by? cos_cache_getref: no cos cache created thanks