Write a program based on Java script program.
Answer / Naval Singh
Here's an example of a simple JavaScript program that displays 'Hello, World!' in the browser's console:nn```javascriptnconsole.log('Hello, World!');n```
| Is This Answer Correct ? | 0 Yes | 0 No |
What is an array in java?
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
What happens when a thrown exception is not handled?
What are the common uses of "this" keyword in java ?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
GoldMansachs Interview process....
What is a string token?
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC
Java support call by reference (pass by reference) ?
How does serialization work
I have a Arraylist object, it has duplecate values also. Now question is i want delete duplecate data in that objet with out using Set?
What are the names of Component subclasses that support painting?