Ask For Help!Hurry!!

Hi, everyone, I am a new comer of Java, now I got a problem that i need to finish the following test as soon as possible, but I have no time to do it, so please help me to finish it if you can, ok? It is very very important to me, and I know it is quite a lot questions, so just do as much as you guys could, ok? I appreciate for that seriously!
Group A. Multiple Choice (1 Mark for each question):
     �� PLEASE CHOOSE ONLY ONE ANSWER FROM : a), b), c), d).
A.1. The CPU, RAM, and the soundcard communicate through the:
     a) CPU Heatsink.
     b) Bus.
     c) Magnetic coil.
     d) Thyristors.
A.2. In the early 1990, Byarne Stroustrup and James Gosling respectively introduced:
     a) Pascal and Java.
     b) Object Pascal and Java.
     c) C++ and Java.
     d) Java and C++.
A.3. Which of the following are illegal identifier in Java?
     a) 3Input
     b) _Currency
     c) $cents
     d) Second22
A.4. A function-type method will always:
     a) destroy an object.
     b) create a component.
     c) return a value.
     d) return itself back.
A.4. The keyword ��void�� is only legal in:
     a) Inner-Class declaration.
     b) Method declaration.
     c) Instance variable declaration.
     d) Interface declaration.
A.5. What is the size and range of the ��int�� primitive data type in Java?
     a) Size: 32-bit, Range: -128 to 127.
     b) Size: 32-bit, Range: 0 to 65,535.
     c) Size: 32-bit, Range: -2 Billion to +2 Billion.
     d) Size: 32-bit, Range: -1.7 Trillion to +1.7 Trillion.
A.6. What is the size and range of the ��char�� primitive data type in Java?
     a) Size: 8-bit, Range: -128 to +127.
     b) Size: 8-bit, Range: 0 to 65,535.
     c) Size: 8-bit, Range: -2 Billion to +2 Billion.
     d) Size: 8-bit, Range: -1.7 Trillion to 1.7 Trillion.
A.7. Which of the following is not Java keyword?
     a) abstract.
     b) for.
     c) switch.
     d) then.
A.8. Which of the following is an illegal array declaration?
     a) int [ ] [ ] myChairs [ ];
     b) char [ ] myChairs;
     c) int [6] myChairs;
     d) char myChairs [ ];
A.9. In Java, a ��constructor�� is used for?
     a) initializing instance variables of an object.
     b) creating a valid interface of an object.
     c) creating a duplicate class.
     d) repeating heap table.
A.10. In Java, each object belongs to:
     a) a class.
     b) a method.
     c) an abstract class.
     d) an applet.
A.11. Constructor name is always the same as:
     a) the first string variable name.
     b) the class name.
     c) the stack name.
     d) the statement name.
A.12. Which is false?
     a) if ( name = = harry )
     b) if ( name = = ��harry�� )
     c) if ( name.equals(��harry��) )
     d) if ( name.equalsIgnoreCase(��harry��) )
A.13. A Java ��interface�� is to provide a way to:
     a) approximate inheritance from 2 parents.
     b) approximate a class instance.
     c) create a new string.
     d) create random enumeration.
A.14. Which one of the following is false:
     a) for ( int i = 1 , j = 2 ; i < 5 ; i + +, j + + )
     b) for ( int i = 1 , i < 5 ; i + + )
     c) for ( int i = 1 ; i <= 5 ; i + + )
     d) for ( int i = 1 ; i <= 10 ; i +=2 )
A.15. To ��override�� a method is :
     a) to supply a different implement of a method that exists in the superclass.
     b) to simply change the name of a method.
     c) to supply a fresh new method that does not exists in the superclass.
     d) to supply a duplicate method.
A.16. After executing statements in a ��try�� block, if there was no exception occur, then:
     a) ��catch�� clauses are skipped.
     b) ��catch�� clauses are executed once.
     c) ��catch�� clauses are executed twice.
     d) ��try�� block is executed again.
A.17. Which is false in Java:
     a) arrays have fixed length.
     b) arrays have elements of a specific type.
     c) arrays use [ ] to access elements.
     d) arrays does not have a fixed length.
A.18. Testing a program without understanding its internal structure is called:
     a) white-box testing.
     b) black-box testing.
     c) blue-box testing.
     d) regression testing.
A.19. The default layout manager in Java is:
     a) Border layout.
     b) Flow layout.
     c) Grid layout.
     d) Card layout.
A.20. Which of the following is false:
     a) Applet runs inside a web-browser.
     b) Applet is platform neutral.
     c) Applet can be used to create animation.
     d) Applet has a ��main�� method.
A.21. To respond to user mouse click we need :
     a) a runnable interface.
     b) an event handler.
     c) a constructor.
     d) a string tokenizer.
A.22. The topmost super class in Java is:
     a) This class.
     b) Object class.
     c) Container class.
     d) Java class.
A.23. In 40 randomly-ordered items, Selection sort is much slower than:
     a) Bubble sort.
     b) Insertion sort.
     c) Quick sort.
     d) Bi-directional Bubble sort.
A.24. A sorting algorithm with a complexity of O( nlog(n) ) is:
     a) Insertion sort.
     b) Selection sort.
     c) Quick sort.
     d) Bubble sort.
A.25. In Java, the abstraction for enabling network communication is achieved by:
     a) Container.
     b) Socket.
     c) Frame.
     d) Template.
A.26. Which of the following is legal for using one line to declare, construct, and initialize an array?
     a) int [ ] myList = (5,8,9);
     b) int [ ] myList = {2,3,4};
     c) int myList [ ] = [3,4,5];
     d) int [ ] myList = {2;3;4};
A.27. Which of the following is a true statement?
     a) An abstract class is not allowed to have non-abstract methods.
     b) if a class has abstract methods, it must be declared abstract.
     c) A non-abstract class is allowed to have abstract methods.
     d) A non-abstract class is allowed to have abstract methods as long as they are also static. .
A.28. In Object Oriented terms, if you read ��A Hotdog is a Food��, which of the following is true:
     a) Class Food extends class Hotdog.
     b) Class Hotdog extends class Food.
     c) Class Food extends class Food.
     d) Class Hotdog is in the package Food.
A.29. Which of the following is a false statement about constructors?
     a) Constructors are not inherited.
     b) Constructors cannot be overloaded.
     c) The first statement of every constructor is a call to: super.
     d) The first statement of every constructor is a call to: this.
A.30. Given the statement String str = ��jawbreaker��; which of the followings will return the word
     the word ��break��
     a) str.substring(3,5)
     b) str.substring(4,6)
     c) str.substring(3,8)
     d) str.substring(4,8)
A.31. Which of the following is false statement about Java constructors?
     a) A constructor��s name must exactly match the name of the class.
     b) Constructors must not have a return type.
     c) Constructors may have a return type.
     d) If you don��t type a constructor, the Java compiler will insert a default constructor.
A.32. Which of the following is not a Java standard layout manager?
     a) GridBagLayout.
     b) FlowLayout.
     c) GridLayout.
     d) GridCardLayout.
A.33. In Java, multiple inheritance is implemented by:
     a) an interface.
     b) a call back function.
     c) an extension.
     d) a dummy method.
A.34. We can shorten the statement: String word2 = new String (��Charles��); with the following:
     a) String word2 = ��Charles��;
     b) String word2 = ��Charles��;
     c) String word2 = [Charles];
     d) String word2 = {Charles};
A.35. In Java, we can change the statement: sum = sum + 1; with the following :
     a) sum += 1; or by using: sum ++;
     b) sum =+1; or by using: sum+;
     c) sum ++ 1; or by using: sum +1;
     d) none of the above.
A.36. A ��main�� method is found in the following:
     a) Standalone Java program.
     b) A Java Applet program.
     c) A Java constructor.
     d) A Java interface.
A.37. In business world, large data usually stored in:
     a) Relational database system.
     b) Flat database system.
     c) Simple array database system.
     d) Single Link database system.
A.38. To access a large relational database, we usually use:
     a) MS Access Language.
     b) Structured Query Language.
     c) Structured Quantitative Language.
     d) Structured Recursive Language.
A.39. In method overloading we are usually:
     a) adding more arguments.
     b) adding more iterations.
     c) adding more recursions.
     d) adding more classes.
A.40. Which sorting algorithm uses a pivot-item:
     a) Merge sort.
     b) Quick sort.
     c) Bubble sort.
     d) Selection sort.
Group B. Find The Mistake (5 Marks for each question):
B.1. Please indicate where the mistake is, and suggest a correction:
     import java.awt.* ;
     import hsa.Console ;
     public class BlueRect
     {     static public void  main( String [ ] args )
          {      Console c;
               c.setColor( Color.blue ) ;
               c.fillRect( 0,0,50,100 ) ;
B.2. Please indicate where the mistake is, and suggest the correction:
     public class Test
          public static void main(String [ ] args)
          String [ ] names = new String();
          c.println( names [2] );     
B.3. Please correct the following Delphi code so that it does not generate compiler error:
     procedure Tform1.Button1Click(Sender: TObject);
     var
     MyArray : array[0..8] of Integer;
     X : Integer;
     begin
          X := MyArray[3] + MyArray[8] + MyArray[9];
     end;
B.4. Somewhere in your Java for-Loop code:
����.
     for (int square = 1, square <=36, square ++);
          for (int side =1, side <=4, side --)
          t.move(60);
�� ��
Group C. Short Questions (5 Marks for each question):
C.1. What is a Class in Object Oriented Programming? You may use an example if you wish.
C.2. What is the difference between = and = = in Java? You may use an example if you wish.
C.3. Why don��t we use double numbers all the time, everywhere? Why bother with Integers?
C.4 What are the three fundamental concepts in object-oriented programming which every Java user
needs to understand?
C.5 What is displayed when the following code is compiled and executed?
String s1 = new String(��Cambridge��);
String s2 = new String(��Cambridge��);
if ( s1 = = s2 )
     System.out.println(��Same��);
if ( s1.equals(s2) )
     System.out.println(��Equals��);
Circle one of the following answer:
a) Same
b) Equals
c) Same Equals
Group D. Complete The Codes (20 Marks):
D.1. In this program the computer user enters his/her 5 names and will get the 5 names printed on screen.
     import has.Console;
     public class MyList
     public static void main (String[ ] args)
          Console c ;
          ��������������������;
          int [ ] somelist = new int [5];
          c.println(��Enter your ������);
          for (����.. i=0; i<5; i��..) {
          somelist[i] = c.read����();
          c.println(�������������� );
     }/*end of main*/
     }/*end of MyList*/
Group E. Describe this Program (20 Marks for this question):
E.1. Given the following Java standalone program, please describe what will this program compute if
     you gave it the proper data. You can write your comments after each line of code. Try your best.
     Give an input and output examples.
     import has.Console;
     public class MyStuff
     public static void main (String[ ] args)
          Console c = new Console();
          int [ ] stuff = new int [5];
          c.println(��Enter your data��);
          for (int i=0; i<5; i++)
          stuff[i] = c.readInt();
          c.println(��The ����������. is �� + myFunction(stuff));
     }/*end of main*/
     public static int myFunction(int [ ] list)
          int top = list[0];
          for (int i=1; i<list.length; i++)
               if (list[i] > top)
               top = list;
          return top;
     }/*end of myFunction*/
     }/* end of MyStuff */

>
A.1. The CPU, RAM, and the soundcard communicate
through the:
     a) CPU Heatsink.
     b) Bus.
     c) Magnetic coil.
     d) Thyristors.c
A.2. In the early 1990, Byarne Stroustrup and James
Gosling respectively introduced:
     a) Pascal and Java.
     b) Object Pascal and Java.
     c) C++ and Java.
     d) Java and C++. a
A.3. Which of the following are illegal identifier in
Java?
     a) 3Input
     b) _Currency
     c) $cents
     d) Second22c
A.4. A function-type method will always:
     a) destroy an object.
     b) create a component.
     c) return a value.
     d) return itself back.d
A.4. The keyword ��void�� is only legal in:
     a) Inner-Class declaration.
     b) Method declaration.
     c) Instance variable declaration.
     d) Interface declaration.d
A.5. What is the size and range of the ��int��
primitive data type in Java?
     a) Size: 32-bit, Range: -128 to 127.
     b) Size: 32-bit, Range: 0 to 65,535.
     c) Size: 32-bit, Range: -2 Billion to +2 Billion.
d) Size: 32-bit, Range: -1.7 Trillion to +1.7
Trillion.d
A.6. What is the size and range of the ��char��
primitive data type in Java?
     a) Size: 8-bit, Range: -128 to +127.
     b) Size: 8-bit, Range: 0 to 65,535.
     c) Size: 8-bit, Range: -2 Billion to +2 Billion.
d) Size: 8-bit, Range: -1.7 Trillion to 1.7
Trillion.a
A.7. Which of the following is not Java keyword?
     a) abstract.
     b) for.
     c) switch.
     d) then.a
A.8. Which of the following is an illegal array
declaration?
     a) int [ ] [ ] myChairs [ ];
     b) char [ ] myChairs;
     c) int [6] myChairs;
     d) char myChairs [ ];a
A.9. In Java, a ��constructor�� is used for?
     a) initializing instance variables of an object.
     b) creating a valid interface of an object.
     c) creating a duplicate class.
     d) repeating heap table.b
A.10. In Java, each object belongs to:
     a) a class.
     b) a method.
     c) an abstract class.
     d) an applet.b
A.11. Constructor name is always the same as:
     a) the first string variable name.
     b) the class name.
     c) the stack name.
     d) the statement name.d
A.12. Which is false?
     a) if ( name = = harry )
     b) if ( name = = ��harry�� )
     c) if ( name.equals(��harry��) )
     d) if ( name.equalsIgnoreCase(��harry��) )b
A.13. A Java ��interface�� is to provide a way to:
     a) approximate inheritance from 2 parents.
     b) approximate a class instance.
     c) create a new string.
     d) create random enumeration.b
A.14. Which one of the following is false:
     a) for ( int i = 1 , j = 2 ; i < 5 ; i + +, j + + )
     b) for ( int i = 1 , i < 5 ; i + + )
     c) for ( int i = 1 ; i <= 5 ; i + + )
     d) for ( int i = 1 ; i <= 10 ; i +=2 )a
A.15. To ��override�� a method is :
a) to supply a different implement of a method that
exists in the superclass.
     b) to simply change the name of a method.
c) to supply a fresh new method that does not exists
in the superclass.
     d) to supply a duplicate method.d
A.16. After executing statements in a ��try�� block,
if there was no exception occur, then:
     a) ��catch�� clauses are skipped.
     b) ��catch�� clauses are executed once.
     c) ��catch�� clauses are executed twice.
     d) ��try�� block is executed again. b
A.17. Which is false in Java:
     a) arrays have fixed length.
     b) arrays have elements of a specific type.
     c) arrays use [ ] to access elements.
     d) arrays does not have a fixed length.a
A.18. Testing a program without understanding its
internal structure is called:
     a) white-box testing.
     b) black-box testing.
     c) blue-box testing.
     d) regression testing.d
A.19. The default layout manager in Java is:
     a) Border layout.
     b) Flow layout.
     c) Grid layout.
     d) Card layout.b
A.20. Which of the following is false:
     a) Applet runs inside a web-browser.
     b) Applet is platform neutral.
     c) Applet can be used to create animation.
     d) Applet has a ��main�� method.b
A.21. To respond to user mouse click we need :
     a) a runnable interface.
     b) an event handler.
     c) a constructor.
     d) a string tokenizer.c
A.22. The topmost super class in Java is:
     a) This class.
     b) Object class.
     c) Container class.
     d) Java class.a
A.23. In 40 randomly-ordered items, Selection sort is
much slower than:
     a) Bubble sort.
     b) Insertion sort.
     c) Quick sort.
     d) Bi-directional Bubble sort.b
A.24. A sorting algorithm with a complexity of O(
nlog(n) ) is:
     a) Insertion sort.
     b) Selection sort.
     c) Quick sort.
     d) Bubble sort.b
A.25. In Java, the abstraction for enabling network
communication is achieved by:
     a) Container.
     b) Socket.
     c) Frame.
     d) Template.d
A.26. Which of the following is legal for using one
line to declare, construct, and initialize an array?
     a) int [ ] myList = (5,8,9);
     b) int [ ] myList = {2,3,4};
     c) int myList [ ] = [3,4,5];
     d) int [ ] myList = {2;3;4};c
A.27. Which of the following is a true statement?
a) An abstract class is not allowed to have
non-abstract methods.
b) if a class has abstract methods, it must be
declared abstract.
c) A non-abstract class is allowed to have abstract
methods.
d) A non-abstract class is allowed to have abstract
methods as long as they are also static. . a
A.28. In Object Oriented terms, if you read ��A
Hotdog is a Food��, which of the following is true:
     a) Class Food extends class Hotdog.
     b) Class Hotdog extends class Food.
     c) Class Food extends class Food.
     d) Class Hotdog is in the package Food.d
A.29. Which of the following is a false statement
about constructors?
     a) Constructors are not inherited.
     b) Constructors cannot be overloaded.
c) The first statement of every constructor is a call
to: super.
d) The first statement of every constructor is a call
to: this.a
A.30. Given the statement String str =
��jawbreaker��; which of the followings will return
the word
     the word ��break��
     a) str.substring(3,5)
     b) str.substring(4,6)
     c) str.substring(3,8)
     d) str.substring(4,8)a
A.31. Which of the following is false statement about
Java constructors?
a) A constructor��s name must exactly match the name
of the class.
     b) Constructors must not have a return type.
     c) Constructors may have a return type.
d) If you don��t type a constructor, the Java
compiler will insert a default constructor.d
A.32. Which of the following is not a Java standard
layout manager?
     a) GridBagLayout.
     b) FlowLayout.
     c) GridLayout.
     d) GridCardLayout.a
A.33. In Java, multiple inheritance is implemented
by:
     a) an interface.
     b) a call back function.
     c) an extension.
     d) a dummy method.c
A.34. We can shorten the statement: String word2 =
new String (��Charles��); with the following:
     a) String word2 = ��Charles��;
     b) String word2 = ��Charles��;
     c) String word2 = [Charles];
     d) String word2 = {Charles};d
A.35. In Java, we can change the statement: sum =
sum + 1; with the following :
     a) sum += 1; or by using: sum ++;
     b) sum =+1; or by using: sum+;
     c) sum ++ 1; or by using: sum +1;
     d) none of the above.c
A.36. A ��main�� method is found in the following:
     a) Standalone Java program.
     b) A Java Applet program.
     c) A Java constructor.
     d) A Java interface.c
A.37. In business world, large data usually stored
in:
     a) Relational database system.
     b) Flat database system.
     c) Simple array database system.
     d) Single Link database system.d
A.38. To access a large relational database, we
usually use:
     a) MS Access Language.
     b) Structured Query Language.
     c) Structured Quantitative Language.
     d) Structured Recursive Language. a
A.39. In method overloading we are usually:
     a) adding more arguments.
     b) adding more iterations.
     c) adding more recursions.
     d) adding more classes.b
A.40. Which sorting algorithm uses a pivot-item:
     a) Merge sort.
     b) Quick sort.
     c) Bubble sort.
     d) Selection sort.b
Group B. Find The Mistake (5 Marks for each
question):
B.1. Please indicate where the mistake is, and suggest
a correction:
     import java.awt.* ;
     import hsa.Console ;
     public class BlueRect
     {     static public void  main( String [ ] args )
          {      Console c;
               c.setColor( Color.blue ) ;
               c.fillRect( 0,0,50,100 ) ;
     }"static public" should be "public static". it's reversed.
B.2. Please indicate where the mistake is, and suggest
the correction:
     public class Test
          public static void main(String [ ] args)
          String [ ] names = new String();
          c.println( names [2] );     
     } When declaring an array, do not put a space between the brackets. It should be "String[]".
B.3. Please correct the following Delphi code so that
it does not generate compiler error:
     procedure Tform1.Button1Click(Sender: TObject);
     var
     MyArray : array[0..8] of Integer;
     X : Integer;
     begin
          X := MyArray[3] + MyArray[8] + MyArray[9];
     end;
B.4. Somewhere in your Java for-Loop code:
����.
     for (int square = 1, square <=36, square ++);
          for (int side =1, side <=4, side --)
          t.move(60);
�� �� The object "t" was never declared or initialized. You probably need the following line:
Turtle t = new Turtle();
Group C. Short Questions (5 Marks for each question):
C.1. What is a Class in Object Oriented Programming?
You may use an example if you wish.A class describes what your program can do. For example:
class FileCopier {
// put code here
C.2. What is the difference between = and = =
in Java? You may use an example if you wish.= is for bitwise comparison, while == is for value comparison
C.3. Why don��t we use double numbers all the time,
everywhere? Why bother with Integers?An Integer is an object. Sometimes you need to store a number in a Vector; in this case, having an object is ideal.
C.4 What are the three fundamental concepts in
object-oriented programming which every Java user
needs to understand?Hiding information, hierarchy, member variables.
C.5 What is displayed when the following code is
compiled and executed?
String s1 = new String(��Cambridge��);
String s2 = new String(��Cambridge��);
if ( s1 = = s2 )
     System.out.println(��Same��);
if ( s1.equals(s2) )
     System.out.println(��Equals��);
Circle one of the following answer:
a) Same
b) Equals
c) Same Equals b
Group D. Complete The Codes (20 Marks):
D.1. In this program the computer user enters
his/her 5 names and will get the 5 names printed on
screen.
     import has.Console;
     public class MyList
     public static void main (String[ ] args)
          Console c ;
          ��������������������;
          int [ ] somelist = new int [5];
          c.println(��Enter your ������);
          for (����.. i=0; i<5; i��..) {
          somelist[i] = c.read����();
          c.println(�������������� );
     }/*end of main*/
     }/*end of MyList*/
Group E. Describe this Program (20 Marks for this
question):
E.1. Given the following Java standalone program,
please describe what will this program compute if
you gave it the proper data. You can write your
comments after each line of code. Try your best.
     Give an input and output examples.
     import has.Console;
     public class MyStuff
     public static void main (String[ ] args)
          Console c = new Console();
          int [ ] stuff = new int [5];
          c.println(��Enter your data��);
          for (int i=0; i<5; i++)
          stuff[i] = c.readInt();
c.println(��The ����������. is �� +
+ myFunction(stuff));
     }/*end of main*/
     public static int myFunction(int [ ] list)
          int top = list[0];
          for (int i=1; i<list.length; i++)
               if (list[i] > top)
               top = list;
          return top;
     }/*end of myFunction*/
     }/* end of MyStuff */
The program asks the user to enter 5 numbers. Then, it checks which number is greater than 0, and prints that number.

Similar Messages

  • I am writing to this forum to ask for help in determining whether Aperture will satisfy my needs when I switch from Windows to MAC in the near future.

     I am writing to this forum to ask for help in determining whether Aperture will satisfy my needs when I switch from Windows to MAC in the near future.  
    I am currently using Photoshop Elements 8 on Windows 7.  After several years of use, I am self taught and adequately proficient for an amateur.  What I didn't realize (until I started researching my upcoming migration on the Internet) is that I actually use PE8 for two functions: digital asset management and digital editing. 
    Regarding Digital Asset Management: My research leads me to understand that PE on MAC does not provide the same level of organizational capability that I am used to having on Windows, instead providing Adobe's Bridge which does not look very robust.  Furthermore, iPhoto, which come on MAC will not support the hierarchical keyword tagging that I require to organize my library of photos. The two SW applications which I am thinking of switching to are either Aperture or Adobe's Lightroom.  Frankly, I'm thinking that it would be smoother to stay within the Apple product line. 
    So the remaining question is whether Aperture will support my digital editing needs. The tweaks that I do to my photos are not very complex (no, I do not want to put people's heads on other animal bodies).  But could someone who uses Aperture tell me whether It will allow me to do the following kinds of edits?:
    - If I have a photo where someone's face is too shadowed, can I lighten just that person's face, and leave the rest of the photo as-is?  
    - if I have a photo where the background is cluttered (eg, 2 people in front of the Parthenon which is undergoing renovation), can I remove just the construction cranes?  
    - Can it splice together several separate photos to give a panoramic?  
    If, once I get Aperture, I find that it cannot enable the kinds of editing that I do, I would probably get PE11 in the future. However, if people in this forum tell me that Aperture will definitely not  support the kinds of editing which I've described in the previous paragraph, I would prefer to get PE11 with my initial configuration (since someone will be helping me with my migration).  
    Thanks in advance for your consideration and help! 

    I am concerned, however,  about using a non-Apple Digital Asset Manager in OSX. I would really like to avoid integration problems. Is using PE11 to import and catalog my digital photos likely to cause conflicts?
    Thanks for any insight on this
    Amy,
    Not so much conflicts as maybe a little less seamless integration with Apple software and perhaps some third-party software providers in the Mac App Store where some programs build in direct access to iPhoto and Aperture libraries for getting images into those programs easily. Typically, there is a manual command to go to Finder (think Windows Explorer) to browse folders.
    One caution to mention however, is that the organization you set-up in PE Organizer is unlikely to transfer over to either iPhoto or Aperture if you decide to change at some point.
    The only real stumbling block that I see in your opening comment is that you want hierarchical keywording (Kirby or Léonie can go into the details on keywording limitations as I stay at one level). If you can work with the keywording schemes of either iPhoto or Aperture, then using PE for your external editor (either program supports setting an external editor) would probably be ideal since you know PE well. This is the idea with the Mac App Store version of PE (editor with no organizer).
    Note - I use Photoshop CS6 (full version) with Aperture and it works really well. The only downside is that Aperture has to make either a TIFF or PSD file to send to an external editor so that the original file is protected by not sending it to the pixel editor. While TIFF or PSD files protect the integrity of the image information without degrading it, they are typically much larger file sizes on disk than either RAW or JPEG files. Therefore, your library size (iPhoto or Aperture) will balloon quite a bit if you send a lot of files to external editors.
    One other possibility for an external editor would be a program called Pixelmator. It is pretty similar to early versions of Photoshop, but built for Mac. Other than the panoramics you want, it will do most pixel editing that PE can do. It is not an organizer, so it is built to go with either iPhoto or Aperture. It does have differences in how you complete certain procedures, so there is bit of a learning curve when you are used to doing it the Adobe way.

  • HT201363 Sir/Madam,  can I ask for help to know what's my secret questions and answer in my apple ID? Coz i'm not the one who make my apple ID when i first buy my phone. I can't ask my friend On what he put in my secret questions coz i'm already here in p

    Sir/Madam,
    can I ask for help to know what's my secret questions and answer in my apple ID?
    Coz i'm not the one who make my apple ID when i first buy my phone. I can't ask my friend
    On what he put in my secret questions coz i'm already here in philippines right now and my friend who made my apple ID is still in bahrain.. I wish i could get a feedback through this matter. Thanks and i'm kyztle Romanes . Thanks you so much i wish i'd get any feedback to your side.. I wanna purchase a builder in my clash of clans account coz my clanmate philip sent me a gift card for 25$ that's why i need your help.. Thanks again Apple company..
    Sent from my iPhone
    On Jan 1, 2014, at 4:53 PM, iTunes Store <[email protected]> wrote:
    $25
    Buy that builder
    Philip sent you an iTunes Gift
    You can redeem this gift on your iPad, iPhone, iPod touch, or on your computer using iTunes. Once you redeem your gift and verify your Apple ID, you will be credited with $25 and can purchase the latest music, apps, and more.
    Valid only on iTunes Store for U.S. Requires iTunes account and prior acceptance of license and usage terms. To open an account you must be 13+ and in the U.S. Compatible software, hardware, and Internet access required. Not redeemable for cash, no refunds or exchanges (except as required by law). Code may not be used to purchase any other merchandise, allowances or iTunes gifting. Data collection and use subject to Apple Customer Privacy Policy, see www.apple.com/privacy, unless stated otherwise. Risk of loss and title for code passes to purchaser on transfer. Codes are issued and managed by Apple Value Services, LLC (“Issuer”). Neither Apple nor Issuer is responsible for any loss or damage resulting from lost or stolen codes or use without permission. Apple and its licensees, affiliates, and licensors make no warranties, express or implied, with respect to code or the iTunes Store and disclaim any warranty to the fullest extent available. These limitations may not apply to you. Void where prohibited. Not for resale. Subject to full terms and conditions, see www.apple.com/legal/itunes/us/gifts.html. Content and pricing subject to availability at the time of actual download. Content purchased from the iTunes Store is for personal lawful use only. Don’t steal music. © 2012 Apple Inc. All rights reserved.
    Apple respects your privacy.
    Information regarding your personal information can be viewed at https://www.apple.com/legal/privacy/.
    Copyright ©2014 Apple Inc. All rights reserved.
    <Email Edited by Host>

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • Even I cant believe this is happening again! i'm once again asking for help with my account.  Since im very sick I ask that u look into my account and read the hell verizon has put me through and assist ending the hell once and for all even if that means

    Even I cant believe this is happening again! i'm once again asking for help with my account.  Since im very sick I ask that u look into my account and read the hell verizon has put me through and assist ending the hell once and for all even if that means ending my contract, i just want the hell over. I went into my bill tonight and the mess was still there I paid $110. that's what I owe

    I guess I spoke too soon!  I really can't believe this nightmare is not over yet! My account is still wrong.  The credit that I was due totaled $63.00  I am looking at a message on my phone saying that $21.01 was credited which makes my balance $219.72.  I received a text the following day that says, I processed your credit of $30.00 and your new balance $216.73 how is that possible?  None of the late fees were credited and the amount due for my monthly charges are wrong.  Before any changes were made to my data plan back in Nov. My monthly charges were $140.00, I needed my hot spot back and i was told that the hot spot will increase my bill $10 for each phone that totals $20.  The customer rep that change my data plan at that time also gave me a credit of $20 to compensate for the increase until I had time to talk with customer service about the mix-up with my Hot spot. I originally had the hot spot, but the rep that change my plan almost a year prior told me nothing was changing except I was getting more for less money.  I explained to that rep that I need my hot spot 4 times a year...and I don't want my plan to have any changes. To verify what I'm telling u check my account and see that I called from Albany New York wanting to know where my hot spot was and I was told I didn't have the hot spot on my account since the last data change!  I lost money once again due to the verizon rep's.  so my current data plan the rep promised would increase $20 which makes my monthly charges that were $140 prior to the change $160 after the hot spot was returned to my account.  Then I was given a $12 credit per month for 12 months because of so many mistakes made to my account so with that $12 credit my monthly charges should $148 + surcharges + taxes and that's not what I see. I do know this much right now my account is in such a shambles I can hardly see the light at the end if there is an end!  I need real help!
    >> Personal information removed by Verizon Moderator to comply with the Verizon Wireless Terms of Service <<

  • My iphone4s was stolen, how do I want to come back, ask for help产品序列号(SN)   013189003958713

    My iphone4s was stolen,how do I want to come back, ask for help .the product serial numble 013189003958713

    The only way to locate/disable/erase any lost/stolen iPhone is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords.

  • I have a mac OSX desktop version 10.6.8 and all of a sudden I can't get a full screen view in Safari when I ask for help the response is use the arrows on the top right of the screen ... I don't have them  ... can anyone help?

    I have a mac OSX desktop version 10.6.8 and all of a sudden I can't get a full screen view in Safari when I ask for help the response is use the arrows on the top right of the screen ... I don't have them  ... can anyone help?

    Hi Mary,
    I don't remember those arrows in 10.6, only 10.7 & up!?
    I have 10.6.8, as you do. To make your Safari full screen, make sure you have the left hand side of your safari page moved  all the way to the left.  Then move your cursor to the BOTTOM RIGHT CORNER of the safari page, and simply drag your page towards the lower right hand corner of the screen. NOTE: you will see a series of lines on the bottom right corner of the page, indicating where to place you cursor arrow.
    By wuzradioman here...
    https://discussions.apple.com/thread/4218928?start=0&tstart=0

  • Problem with A300, Ask for help

    Hello from Bulgaria!
    In the beginning I want to apologize if I bother you at the wrong place. This was the only place i found in all your sites at "Contact us" menu. If I'm in mistake please redirect me to the right e-mail or topic.
    I have extremely big problem with one of your products, and I'm afraid I can't solve him without your help. Few months ago I bought a laptop witch exact model is TOSHIBA SATTELITE PRO A300 - 1GQ. Model No.: PSAG1E - 00900NF3, Serial No.: 88549776Q. If you need another information I can tell you everything. Badly i got serious virus and the situation reach fall windows start. I know about integrated Toshiba Recovery and I used it. Windows Vista was successfully installed but the partion was not formated. Some of the system files was still corrupted and I resorted to Toshiba DVD comming with the laptop. I ran it, there was no problems until I saw Windows XP logo. I was pretty surprised because I expected Windows Vista like original one which came with the laptop from the shop. Another problem was that that installation formated whole HDD including partitions different from C:\ with Windows system files. All of my data is gone without I could be able to do something. However, th
    e question is that I need Windows Vista very badly and I dont want XP. I tried to use hidden partition with Toshiba recovery again but I cant no longer access it. So I left with original XP with drivers integrated with it. The problem is that I need Vista with integrated drivers. It wouldn't be hard also if I found that drivers in your sites. Nowhere in your sites with download I could find the exact model to take it. The nearest was A210 which I think is pretty far from mine.
    And it the end I ask for help if you can tell me where to download the needed drivers or anyway to put Vista back. Preliminary I thank you and I apologize again for the disturbing. I need that information badly and I don't know where I can get it from. At least show me valid e-mail to contact with Toshiba Support.

    Satellite Pro A300-1GQ 
    This was the only place i found in all your sites at "Contact us" menu. If I'm in mistake please redirect me to the right e-mail or topic.
    These forums are for United States computers. For that European machine, you probably want to post elsewhere.
       Toshiba Support Forums Europe 
    You need to obtain a recovery disc that restores the hard drive to factory-new.
    -Jerry

  • I am at starbucks and when I try to download my free music on itunes, my password is always rejected, even when i am forced to create a new one!!!  what am I doing wrong, who do I ask for help

    I am at starbucks and when I try to download my free music on itunes, my password is always rejected, even when i am forced to create a new one!!!  what am I doing wrong, who do I ask for help?

    Due to recent security issues and identify theft (mostly due to phishing scams), the iTunes Store seems to be requiring more frequent verification of credit card information when a card is registered in your account, even if you have a balance from a prepaid card. Either just go through the verification process or, if you have a credit card entered and you don't expect to need the card anytime soon, go into the Payment information in your account and set the payment method to "none" which should then stop the regular requirements for verification  (it may still ask - mine does - but you should just be able to click through the buttons without problems).
    Hope this helps.

  • I want to ask for help on your apple tv, where I noticed that the language Arabic has been deleted from the dictionary after update

    I want to ask for help on your apple tv, where I noticed that the language Arabic has been deleted from the dictionary after update

    You can ask Apple to add this via
    http://www.apple.com/feedback

  • I ask for help, I can not cancel a monthly subscription to Adobe! contrary to the tutorial does not appear  scribed CANCEL PLAN on my page management plan, is not worse than any serial number of my subscription, where is it? how can I cancel monthly charg

    I ask for help, I can not cancel a monthly subscription to Adobe.
    contrary to the tutorial does not appear scribed "CANCEL PLAN" on my page management plan, is not worse than any serial number of my subscription, where is it? how can I cancel monthly charge? 

    Just to clarify: This is a user to user Forum, so you are not really addressing Adobe here, even though some Adobe employees thankfully have been dropping by.
    Have you done a Forum search?
    How can I delete my account? There is no "cancel plan" in my creative cloud free membership.
    Contact Customer Care

  • Hello! I bought an iphone on ebay. I feel the introduction says that is not a service. need to unlock official data on where the contract but I am not asking for help

    Hello! I bought an iphone on ebay. I feel the introduction says that is not a service. need to unlock official data on where the contract but I am not asking for help

    I'm sorry but your post doesn't make much sense in English. You may want to try posting again in your native language.
    Best of luck.

  • Seek ask for help: Global procurement case studies

    Hi everybody,
    I am Seeking ask for any global procurement case studies, telecomn industry case studies is more better:
    --- Client biz model is : Oversea subsidiary is responsibility for selling equipment, so need to buy equipment from HK subsidiary, HK subsidiary buy it from china HQ, and china HQ manufacturing & drop shipping equipment to Oversea subsidiary
    --- provide solution:
    1. oversea sub create so
    2. oversea sub create PR
    3. HK sub create po ---global po with receipt org is oversea sub
    4. china HQ create so & shipping
    --- Customer hope to provide Case studies like this biz model
    seek ask for help to provide case studies like this,
    any globle PO case is ok
    thanks very much!
    Ryan

    Urgent! urgent! urgent!
    Who can help me, thanks a lot in advance!

  • Yesterday, I recieved an e-mail, which informed me I had bought a game or an aplication (I don´t even know what it is) that I didn´t bye. Right now I have no idea what to do or who should I contact to ask for help, so I can have my money (20 dolars) back.

    Yesterday, I recieved an e-mail, which informed me I had bought a game or an aplication (I don´t even know what it is) that I DIDN´T bye. Right now I have no idea what to do or who should I contact to ask for help, so I can have my money (20 dolars) back. Can someone tell me what canI do plaese?

    http://www.apple.com/support/itunes/contact/

  • Deception, no or few replies to people asking for help

    I'm so sad about this new forum. There are many questions asked and few replies or replies that don't go deep.
    I remember that in the old forum there were very interesting discussions, very deep (technically speaking), I always found a solution or at least I found out that I wasn't the only one to have that bug/problem.
    I could read some of the discussions, even if I didn't have that particular problem, only because they could teach me something.
    Now it is difficult to follow what the people ask and what others reply. It's a sort of chat with 20 people who ask for help during the same minute.... how to follow that How to help?

    Patrizia Franchini wrote:
    And remember also that in Europe Apple and the Mac are not so important (or weren't before the iDevices). In the shops you couldn't find ONE webcam compatible with your Mac, ONE software for the Mac, ONE book, .. It was necessary to order the items on the Internet. No version of the State tax program for the Mac,... It is/was a fight, a challenge.
    It was the same way in the US before the Apple Stores. There is nothing Apple can do about tax software. Contact the company that makes it and ask for a Mac version.
    Here the price difference with the PC are enormous... in the United States the prices are more competitive.
    Because the US doesn't have a VAT. I've been to Europe many times. Everything is more expensive there. I live in Canada now and it is much the same here. Currency exchange rates are meaningless. Everything is more expensive in Canada. If anything, Apple products are actually marked up less than other products.
    And you also have some privileges: there are many promotions only available in the United States. You lose all your purchased music? In the United States there is a way to have it back with a click, but not in Europe. In your iTunes store there are many free songs and video,.... In Europe it's only a year or two that there is ONE free song each week.
    I sincerely doubt Apple is responsible for that. Europe is a huge, wealthy market. Apple would love to offer Europeans the same deals that they do in the US. It has taken years for Apple to make agreements with all of the various rights holders to make iTunes the market that it is. Compare iTunes to the iBookstore. These things just take time. The European companies just don't want to make any deals.
    Well, just to explain why Apple has/had a little part of the market here, and why it is/was difficult to find Apple products and help for Apple products.
    Keep in mind that Apple's newfound success is due to its intense focus on devices for consumers. The PC industry is still 85% PC. Just try to use a Mac at work. I dare you. Given the entreprenurial nature of the US vs the heavily industrial nature of Europe, I can see why it would be worse there.
    I forgot to say that to obtain help from Apple is very difficult where I live. No phone service from Apple, no chat with the customer care, no Genius bar (or very far away, 300 km), no companies that can help you if you lose your data from the hard disk. The Apple Store is in German and French and customer service people only speak French and German, and not Italian. If you want to speak Italian, you must contact the Italian Apple Store, but they can't help you with a problem in the Swiss Apple Store.
    You have to find yourself the solution.
    It is the same everywhere. Apple Stores are only in major markets. Many people in the US or Canada still have to drive 300 km to find one. I can't help much with the language. There are something like 500,000 Italian speakers in Switzerland. How many of them own Macs? If Apple hired some Italian speaking customer care representatives would they then have to increase the price for Apple products for everyone in Switzerland?
    The best option for avoiding data loss is Time Machine.

  • Signed up on furefox desktop 2/2. No problem. Today password not accepted. Asked for help 3 hrs ago and never got email and nit in spam

    Was sucesssful signing up and using firefox on desktop yesterday. Today user name and or password not accepted. Can't get emails-nothing. Asked for help with password and never got email. This was 3 hrs ago and not in spam folder

    Password for what? Signing up for what?
    Firefox doesn't need a password for a person to be able to use it.
    Firefox shouldn't affect your ability to get email - Firefox doesn't do email, but it will allow you to access your web-mail service.

  • I forgot my Apple ID security question answers and cannot contact iTunes support by phone. The only way I can ask for help is via email. How can I make that happen?             Thanks

    Hi! So I haven't used iTunes in a few months but I just got an iTunes gift card and want to make a purchase. iTunes redeemed it just fine but now that I want to make a purchase I am having problems. I can't remember my security question answers and iTunes is requesting them. I have two other verified emails but the are NOT rescue emails. I can't contact iTunes over the phone because my phone lines are out and are going to be out for a long time. The only way I can contact them is by email. How can I do this? Is there an easy way to just reset all my security questions? Please help a girl out. I just want my music!
    Thanks so much

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

Maybe you are looking for