web technology Online Quiz - 121
Description: web technology Online Quiz - 121 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
XAML Stands for?
Xap Stands for
What was silverlight first call?
Which is Backend Programming language for Silverlight
We Can add normal project reference (normal class library) to the Silverlight project?
What does HTML stand for?
Who is making the Web standards?
Choose the correct HTML tag for the largest heading:
What is the correct HTML for adding a background color?
What is the correct HTML for creating a hyperlink?
Which of these tags are all tags?
package simplejava; public class TestConstructor1 { int p; TestConstructor1() { System.out.println("I am in Constructor"); } TestConstructor1(int p) { this.p =p; System.out.println("p = "+p); this(); } public static void main(String[] args) { TestConstructor1 tp1 = new TestConstructor1(10); } }
Main purpose to design XML is
Given: class Top { public Top(String s) { System.out.print("B"); } } public class Bottom2 extends Top { public Bottom2(String s) { System.out.print("D"); } public static void main(String [] args) { new Bottom2("C"); System.out.println(" "); } } What is the result?
Which statement(s) are true? (Choose all that apply.)
Given: 3. class Mammal { 4. String name = "furry "; 5. String makeNoise() { return "generic noise"; } 6. } 7. class Zebra extends Mammal { 8. String name = "stripes "; 9. String makeNoise() { return "bray"; } 10. } 11. public class ZooKeeper { 12. public static void main(String[] args) { new ZooKeeper().go(); } 13. void go() { 14. Mammal m = new Zebra(); 15. System.out.println(m.name + m.makeNoise()); 16. } 17. } What is the result?
Given: 3. import java.io.*; 4. public class ReadingFor { 5. public static void main(String[] args) { 6. String s; 7. try { 8. FileReader fr = new FileReader("myfile.txt"); 9. BufferedReader br = new BufferedReader(fr); 10. while((s = br.readLine()) != null) 11. System.out.println(s); 12. br.flush(); 13. } catch (IOException e) { System.out.println("io error"); } 16. } 17. } And given that myfile.txt contains the following two lines of data: ab cd What is the result?
XML stands for