programming languages Online Quiz - 23
Description: programming languages Online Quiz - 23 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How to include mxml file?
5.Flex application implements RIA Concepts.
Flex Application requires Adobe Flash Player
Sequence of Event Propagation
xml version =“1.0” encoding=”utf-8” ?> which tags are not mandatory for mxml file
10.Compilation of mxml file gives
1.Which tag is must for compilation of mxml file?
2.Which two languages are used in Flex?
Can we create custom components ?
How to include mxml file?
5.Flex application implements RIA Concepts.
Flex Application requires Adobe Flash Player
Sequence of Event Propagation
xml version =“1.0” encoding=”utf-8” ?> which tags are not mandatory for mxml file
10.Compilation of mxml file gives
What is the output for the below code ? import java.util.NavigableMap; import java.util.concurrent.ConcurrentSkipListMap; public class Test { public static void main(String... args) { NavigableMap navMap = new ConcurrentSkipListMap(); System.out.print(navMap.lastEntry()); } }
What is the output for the below code ? import java.util.NavigableMap; import java.util.concurrent.ConcurrentSkipListMap; public class Test { public static void main(String... args) { NavigableMapnavMap = new ConcurrentSkipListMap(); navMap.put(4, "April"); navMap.put(5, "May"); navMap.put(6, "June"); navMap.put(1, "January"); navMap.put(2, "February"); System.out.print(navMap.floorKey(3)); } }
What is the output for the below code ? import java.util.NavigableMap; import java.util.concurrent.ConcurrentSkipListMap; public class Test { public static void main(String... args) { NavigableMapnavMap = new ConcurrentSkipListMap(); navMap.put(4, "April"); navMap.put(5, "May"); navMap.put(6, "June"); navMap.put(1, "January"); navMap.put(2, "February"); System.out.print(navMap.floorKey(3)); } }
What is the output for the below code ? import java.io.Console; public class Test { public static void main(String... args) { Console con = System.console(); boolean auth = false; if (con != null) { int count = 0; do { String uname = con.readLine(null); char[] pwd = con.readPassword("Enter %s's password: ", uname); con.writer().write("\n\n"); } while (!auth && ++count < 3); } } }
interface I{ final class C1 { //1 static int i=9;; //2 } } class C2 implements I{ public static void main(String a[]){ System.out.println(I.C1.i); ///3 }}