Questions Related to technology

Multiple choice technology programming languages
    1. The program will run successfully with no errors or warnings.
    1. The program will halt with a runtime exception.
    1. The program will halt with a compiler error.
    1. The program will run successfully with no errors but a warning will be generated.
Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
  1. 1 public class Cup extends ContainerClass {

  2. 2 public class Basket extends ContainerClass {

  3. 3 public class Caldron extends ContainerClass {

  4. 4 public class Bag extends ContainerClass {

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
    1. Change public abstract class Vehicles { } to public class Vehicles { }
    1. Change public class Bus { } to public class Bus extends Vehicles { }
    1. Change public class MyClass { to private class My Class {
    1. Change public abstract class Vehicles { } to protected abstract class Vehicles { }
Reveal answer Fill a bubble to check yourself
B Correct answer