anime-line
Total Pageviews
Friday, November 30, 2012
Friday, November 9, 2012
JAVA Software
HERE'S THE Direct Download Link for JAVA JDK 6 update 38
http://www.java.net/download/jdk6/6u38/promoted/b04/binaries/jdk-6u38-ea-bin-b04-windows-i586-31_oct_2012.exe
ALTERNATE
Download
Netbeans and JDK (JDK 7u9 with NetBeans 7.2.1)
for 32bit version
jdk-7u9-nb-7_2_1-windows-i586-ml.exe
For 64bit version
jdk-7u9-nb-7_2_1-windows-x64-ml.exe
If Links don't work properly leave a message.
http://www.java.net/download/jdk6/6u38/promoted/b04/binaries/jdk-6u38-ea-bin-b04-windows-i586-31_oct_2012.exe
ALTERNATE
Download
Netbeans and JDK (JDK 7u9 with NetBeans 7.2.1)
for 32bit version
jdk-7u9-nb-7_2_1-windows-i586-ml.exe
For 64bit version
jdk-7u9-nb-7_2_1-windows-x64-ml.exe
If Links don't work properly leave a message.
Friday, May 25, 2012
EXAM 3 COMPLETED
Your performance was as follows:
You took 4 minutes on this assessment from Fri May 25 2012 12:10:53 GMT+0530 to Fri May 25 2012 12:14:16 GMT+0530.
Total score: 100.00
1.
Consider a Java program that contains two classes, Programmer and Person. The class Programmer is a subclass of the class Person, and both classes define a method sleep. Which of the following statements will be true about the program?
(a) The method sleep of Programmer will override that of Person when the program is executed.
(b) When the method sleep of Programmer is called, the method sleep of Person will be called first.
(c) The method sleep of Person will override that of Programmer when the program is executed.
(d) The program will not compile.
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See section 3.2, subsection "Overriding Methods," in the course notes.
2.
Consider the following Java program fragment.
import java.applet.Applet;
public class Hello extends Applet {
...
}
The fragment indicates that
(a) Applet is an instance of Hello
(b) Hello is a subclass of Applet
(c) Applet is a subclass of Hello
(d) Hello is an instance of Applet
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
3.
Which of the following kinds of relationships between classes does inheritance describe?
(a) has-a
(b) uses-a
(c) produces-a
(d) is-a-kind-of
Correct answer is (d)
Your score on this question is: 11.11
Feedback:
See section 3.1 "Introduction to Inheritance" in the course notes.
4.
If class A is a subclass of class B, which of the following statements is (are) true?
All public data and methods of class B are available to class A.
All public data and methods of class A are available to class B.
(a) I only
(b) II only
(c) None
(d) I and II
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
5.
Which of the following indicates that class Dog is a subclass of class Animal?
(a) public class Dog extends Animal
(b) public class Animal extends Dog
(c) public class Dog imports Animal
(d) public class Animal imports Dog
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
6.
Which of the following is true concerning the following example class definition?
public class Hello extends Applet { ...
}
Hello is a superclass of Applet
Hello inherits from Applet
Hello is a subclass of Applet
(a) I and II only
(b) II and III only
(c) III only
(d) II only
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
7.
If the following line of code is the beginning of a class definition, then class _____ is being defined, and it is a _____ of class _____.
public class Game extends Applet
(a) Applet, superclass, Game
(b) Game, subclass, Applet
(c) Game, superclass, Applet
(d) Applet, subclass, Game
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
8.
In the following program segment, the call super(len,wid) invokes the constructor for which class?
public class CustomWindow extends MyWindow implements ActionListener
{
public CustomWindow(int len, int wid, Font ft)
{
super(len, wid);
}
}
(a) MyWindow
(b) ActionListener
(c) Font
(d) CustomWindow
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See section 3.2 "Using Inheritance" in the course notes.
9.
Which of the following Java keywords can be used to invoke a superclass constructor for the class in which it appears?
(a) super
(b) this
(c) protected
(d) extends
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See Chapter 12, page 504, in the course textbook.
Go to top of assessment.
Total score: 100.00
© Copyright 2011 iCarnegie, Inc. All rights reserved.
You took 4 minutes on this assessment from Fri May 25 2012 12:10:53 GMT+0530 to Fri May 25 2012 12:14:16 GMT+0530.
Total score: 100.00
1.
Consider a Java program that contains two classes, Programmer and Person. The class Programmer is a subclass of the class Person, and both classes define a method sleep. Which of the following statements will be true about the program?
(a) The method sleep of Programmer will override that of Person when the program is executed.
(b) When the method sleep of Programmer is called, the method sleep of Person will be called first.
(c) The method sleep of Person will override that of Programmer when the program is executed.
(d) The program will not compile.
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See section 3.2, subsection "Overriding Methods," in the course notes.
2.
Consider the following Java program fragment.
import java.applet.Applet;
public class Hello extends Applet {
...
}
The fragment indicates that
(a) Applet is an instance of Hello
(b) Hello is a subclass of Applet
(c) Applet is a subclass of Hello
(d) Hello is an instance of Applet
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
3.
Which of the following kinds of relationships between classes does inheritance describe?
(a) has-a
(b) uses-a
(c) produces-a
(d) is-a-kind-of
Correct answer is (d)
Your score on this question is: 11.11
Feedback:
See section 3.1 "Introduction to Inheritance" in the course notes.
4.
If class A is a subclass of class B, which of the following statements is (are) true?
All public data and methods of class B are available to class A.
All public data and methods of class A are available to class B.
(a) I only
(b) II only
(c) None
(d) I and II
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
5.
Which of the following indicates that class Dog is a subclass of class Animal?
(a) public class Dog extends Animal
(b) public class Animal extends Dog
(c) public class Dog imports Animal
(d) public class Animal imports Dog
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
6.
Which of the following is true concerning the following example class definition?
public class Hello extends Applet { ...
}
Hello is a superclass of Applet
Hello inherits from Applet
Hello is a subclass of Applet
(a) I and II only
(b) II and III only
(c) III only
(d) II only
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
7.
If the following line of code is the beginning of a class definition, then class _____ is being defined, and it is a _____ of class _____.
public class Game extends Applet
(a) Applet, superclass, Game
(b) Game, subclass, Applet
(c) Game, superclass, Applet
(d) Applet, subclass, Game
Correct answer is (b)
Your score on this question is: 11.11
Feedback:
See sections 3.1 and 3.2 in the course notes.
8.
In the following program segment, the call super(len,wid) invokes the constructor for which class?
public class CustomWindow extends MyWindow implements ActionListener
{
public CustomWindow(int len, int wid, Font ft)
{
super(len, wid);
}
}
(a) MyWindow
(b) ActionListener
(c) Font
(d) CustomWindow
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See section 3.2 "Using Inheritance" in the course notes.
9.
Which of the following Java keywords can be used to invoke a superclass constructor for the class in which it appears?
(a) super
(b) this
(c) protected
(d) extends
Correct answer is (a)
Your score on this question is: 11.11
Feedback:
See Chapter 12, page 504, in the course textbook.
Go to top of assessment.
Total score: 100.00
© Copyright 2011 iCarnegie, Inc. All rights reserved.
Thursday, May 24, 2012
EXAM 1 COMPLETED
View Assessment Result: Exam 1 Multiple-Choice
What does "url" stand for? |
|
(a) |
5.00 |
|
In www.google.com; what does "www" stand for? |
|
(b) |
5.00 |
|
How do search engine companies like Google, Microsoft, and Yahoo make money? |
|
(d) |
5.00 |
|
What can be some unethical practices on the internet? |
|
(c) |
5.00 |
|
In the following URL, what is the name of the server? http://trestle.icarnegie.com/ssd1/course.html |
|
(a) |
5.00 |
|
HTML heading tags include which of the following?
|
|
(d) |
5.00 |
See section 1.2.3, subsections "Headings, Horizontal Lines, and Preformatted Text," in the course notes. |
Which of the following is a valid HTML segment that directs Web browsers to display green text? |
|
(d) |
5.00 |
See section 1.2.3, subsection "Size and Color," of the course notes. |
The <PRE> tag in HTML indicates the start of
|
|
(d) |
5.00 |
See section 1.2.3, subsections "Headings, Horizontal Lines, and Preformatted Text," of the course notes. |
Which of the statements is true about the following HTML
segment?<a href="www/cnn.com">CNN news</a> |
|
(d) |
5.00 |
See section 1.2.4 of the course notes. |
Consider the following table. Which of the following HTML sequences can be used to lay out the preceding table? |
|
(c) |
5.00 |
See section 1.2.4 of the course notes. |
Testing each element of your Web page as you add it has the effect of |
|
(c) |
5.00 |
See section 1.2.6 of the course notes. |
Which of the following path formats can be used to specify the value of the href attribute of the <a> tag?
|
|
(a) |
5.00 |
See section 1.2.4 in the course notes. |
What is the conceptual difference between logical and physical styles? |
|
(c) |
5.00 |
See section 1.2.3 of the course notes. |
Logical style tags in HTML include which of the following?
|
|
(d) |
0.00 |
See section 1.2.3, subsections "Physical Styles and Logical Styles," of the course notes. |
When a Web browser submits an HTML form to a Web server, the browser sends |
|
(c) |
5.00 |
See section 1.3.3, subsection "Form Submission and Servlets," in the course notes. |
In the name-value pairs that represent a submitted HTML form, names are separated from values by the character _____, and pairs are separated from one another by the character _____. |
|
(d) |
5.00 |
See section 1.3.3, subsection "Form Submission and Servlets," in the course notes. |
Which of the following statements is (are) true of Java servlets?
|
|
(b) |
0.00 |
See section 1.3.2 in the course notes. |
In an HTML FORM element, the values get and post are the only valid options for which of the following attributes?
|
|
(d) |
5.00 |
See section 1.3.1, subsection "The FORM Element," in the course notes. |
Typically, a request from a client browser is forwarded to a servlet by a |
|
(c) |
0.00 |
See section 1.3.2, subsection "An Overview of Servlets," in the course notes. |
In the client-side mechanism client-pull, _____ are generated _____. |
|
(b) |
0.00 |
See section 1.3.2, subsection "Server Push-Client Pull," in the course notes. |
Go to top of assessment. |
© Copyright 2011 iCarnegie, Inc. All rights reserved. |
Subscribe to:
Posts (Atom)