Del Every Yy
Del Every Yy
<canvas>
<video>
<svg>
<details>
It is an alternative to JavaScript.
It is a subset of JavaScript.
Front-end and back-end development are responsible for the same tasks and can be used
interchangeably.
class Collection_iterators
list.add(new Integer(2));
list.add(new Integer(8));
list.add(new Integer(1));
Iterator i = list.iterator();
Collections.reverse(list) ;
Collections.sort(list);
while(i.hasNext())
System.out.print(i.next() + “ “);
1258
2185
1582
2851
class Output
12345
1234
12
123
6) class overload
int x;
double y;
x=a+b;
y =c +d;
overload ()
this.x = 0;
this.y = 0;
class Overload_methods
int a = 2;
double b = 3.2;
obj.add(a, a);
obj.add(b, b);
464
646
6464
66
7) What will be the output of the following Java code?
class increment (
int g = 3;
System.out.print(++g * 8);
32
33
24
25
Polymorphism
Inheritance
Compilation
Encapsulation
To add common functionality and dependencies to a project based on the selected starter.
To provide the application's entry point for the Spring Boot application.
class Output
double x=2.0;
double y = 3.0:
double x =Math.pow(x,y);
Symtem.out.print(x);
11) Amongst which of the following is not a NoSQL database used in Full Stack Development?
MongoDB
PostgreSQL3
CouchDB
Hadoop
byte x = 64;
int i;
byte y;
i =x<< 2;
0 256
0 64
256 0
64 0
Sass is a programming language that is used to add styles and format HTML tags and elements.
class variable_scope
int x;
x=5;
int y = 6;
System.out.print(x+" "+y);
System.out.println(x+" "+y);
Compilation error
Runtime error
5656
565
15) class recursion
int result;
if (n== 1)
return 1;
return result;
class Output
System.out.print(obj.func(5));
120
The View accesses the data from the Model using AJAX calls.
Thread t;
nevthread ()
t1 = new Thread(this,"Thread_1");
t1.start();
t2.start();
t2.setPriority(Thread.MAX_PRIORITY) ;
System.out.print(t1.equals(t2));
class multithreaded_programing
new newthread();
Truetrue
Falsefalse
True
False
18) In JavaScript, we can embed expressions or variables directly within the template literal
using____.
‘${}’
‘#’
‘$[]’
‘#{}’
map
every
reduce
alert
DOM
canvas
console
intf
Intf
interface
Interface
24)
Object-oriented
Use of pointers
Portable
26) The purpose of the Front-end framework in Full stack development is ________.
To manage database
27) Amongst which of the following shows the responsibility of a backend developer?