Programming Languages and Database Concepts
Test your knowledge of programming languages including Java, C#, and COBOL, along with .NET framework, SQL queries, and database concepts.
Questions
import java.util.regex.; class Regex2 { public static void main(String[] args) { Pattern p = Pattern.compile(args[0]); Matcher m = p.matcher(args[1]); boolean b = false; while(b = m.find()) { System.out.print(m.start() + m.group()); } } } And the command line: java Regex2 "\d" ab34ef
- 234
- 334
- 2334
- 0123456
- 01234456
- 12334567
- import java.io.*; 4. class Vehicle { } 5. class Wheels { } 6. class Car extends Vehicle implements Serializable { } 7. class Ford extends Car { } 8. class Dodge extends Car { 9. Wheels w = new Wheels(); 10. } Instances of which class(es) can be serialized? (Choose all that apply.)
- Car
- Ford
- Dodge
- Wheels
- Vehicle
public static void main(String[] args) { // INSERT DECLARATION HERE for (int i = 0; i <= 10; i++) { List row = new ArrayList(); for (int j = 0; j <= 10; j++) row.add(i * j); table.add(row); } for (List row : table) System.out.println(row); } Which statements could be inserted at // INSERT DECLARATION HERE to allow this code to compile and run? (Choose all that apply.)
- List<List<Integer>> table = new List<List<Integer>>();
- List<List<Integer>> table = new ArrayList<List<Integer>>();
- List<List<Integer>> table = new ArrayList<ArrayList<Integer>>();
- List<List, Integer> table = new List<List, Integer>();
- List<List, Integer> table = new ArrayList<List, Integer>();
- List<List, Integer> table = new ArrayList<ArrayList, Integer>();
public static void before() { Set set = new TreeSet(); set.add("2"); set.add(3); set.add("1"); Iterator it = set.iterator(); while (it.hasNext()) System.out.print(it.next() + " "); }
- The before() method will print 1 2
- The before() method will print 1 2 3
- The before() method will print three numbers, but the order cannot be determined
- The before() method will not compile
- The before() method will throw an exception at runtime
- import java.util.*; 4. class Dog { int size; Dog(int s) { size = s; } } 5. public class FirstGrade { 6. public static void main(String[] args) { 7. TreeSet i = new TreeSet(); 8. TreeSet d = new TreeSet(); 9. 10. d.add(new Dog(1)); d.add(new Dog(2)); d.add(new Dog(1)); 11. i.add(1); i.add(2); i.add(1); 12. System.out.println(d.size() + " " + i.size()); 13. } 14. }
- 1 2
- 2 2
- 2 3
- Compilation fails
- Exception occurs at runtime
How do you design a website with multilingual support in ASP.NET?
- True
- False
How many sections are there in data division
- 4
- 6
- 3
- 2
which of the following is mandatory for cobol program.
- identification division and program id
- identification division and data division
- identification division and report section
- identification division linkage section and program id
close with lock statement closes an opened file and it prevents the file from further being opened by the same program.
- True
- False
SEARCH can be applied to a table which does not have an INDEX defined.
- True
- False
Which is responsible for dot net framework language interoperability
- JIT
- Language Specific Compiler
- MSIL
- CTS
The above code compiles in __ language?
- JAVA
- C#
- works in java but not in C#
- works in C# but not in JAVA
- works in both languages
Create table temp (name varchar2 (20) , empid integer) ; insert into temp ('abc',100) ; savepoint a; insert into temp ('def' , 100); delete from temp; rollback to a; commit;
- 0
- 2
- error
- 1
Which of the following statements is true :
- inner join and intersect are same
- left join and union are same
- inner join when used with distinct can simulate intersect
- inner join and union are same