0% found this document useful (0 votes)
17 views10 pages

Del Every Yy

The document contains multiple choice questions about HTML, CSS, JavaScript, Java and other programming concepts. It asks about tags, languages, frameworks, outputs, and concepts related to front-end and back-end development.

Uploaded by

Prasad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views10 pages

Del Every Yy

The document contains multiple choice questions about HTML, CSS, JavaScript, Java and other programming concepts. It asks about tags, languages, frameworks, outputs, and concepts related to front-end and back-end development.

Uploaded by

Prasad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

1) Which HTML tag is used to create vector graphics and illustrations?

<canvas>

<video>

<svg>

<details>

2) Amongst which of the following is true about ECMAScripl?

It is an alternative to JavaScript.

It is used to add interactivity to HTML pages

It is a standard for scripting languages, including JavaScript.

It is a subset of JavaScript.

3) Amongst which of the following statement is TRUE about backend development?

Back-end development handles the user interface and interactions,

Front-end and back-end development are responsible for the same tasks and can be used
interchangeably.

Back-end development manages data storage and server-side logic.

Back-end development focuses on the client-side code.

4) Please refer below

What will be the output of the following Java program?

import java.util .*;

class Collection_iterators

public static void main(String arge[])

LinkedList list = new LinkedList();

list.add(new Integer(2));

list.add(new Integer(8));

list.add(new Integer (5));

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

5) Please refer below

What will be the output of the following Java program?

class Output

public static void main(String args[])

int arr[] = {1, 2, 3, 4, 5};

for ( int i = 0; i <arr.length- 2; ++i)

System.out.printin(arr[i] +" ");

12345

1234

12

123

6) class overload

int x;

double y;

void add(int a , int b)


{

x=a+b;

void add(double c , double d)

y =c +d;

overload ()

this.x = 0;

this.y = 0;

class Overload_methods

public static void main (String args[])

overload obj = new overload() ;

int a = 2;

double b = 3.2;

obj.add(a, a);

obj.add(b, b);

System.out.printin(obj.x + " "+obj.y);

464

646

6464

66
7) What will be the output of the following Java code?

class increment (

public atatic void main(String args(])

int g = 3;

System.out.print(++g * 8);

32

33

24

25

8) A web server in Full Stack Development is________

Rendering the user interface

Handling client-side interactions

Executing server-side code and processing requests

Writing server-side logics

9) Which of the following is not an OOPS concept in Java?

Polymorphism

Inheritance

Compilation

Encapsulation

9) What is the significance of Spring Boot starter modules?

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.

To manage the application's configuration properties.

To handle request mapping and routing in a Spring Boot application.


10)

class Output

public static void main(String arge[])

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

12) class leftahift_operator

public static void main(String args[])

byte x = 64;

int i;

byte y;

i =x<< 2;

y =(byte) (x << 2);

System.out.print(i +" "+y);


}

0 256

0 64

256 0

64 0

13) Sass is_____________.

Sass is an alternative to CSS.

Sass is a pre-processor of CSS that allows the nesting of CSS rules.

Sass is a Front-end Framework

Sass is a programming language that is used to add styles and format HTML tags and elements.

14) What will be the output of the following Java program?

class variable_scope

public static void main(String args[])

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 func (int n)

int result;

if (n== 1)

return 1;

result = func (n - 1);

return result;

class Output

public static void main (String args[])

recursion obj = new recursion () ;

System.out.print(obj.func(5));

120

None of the mentioned

16) Amongst which of the following is TRUE about model-view-architecture?

The View accesses the data from the Model using AJAX calls.

Model and View are independent and do not communicate directly.

Model and View communicate via Controller.

Model and View communicate directly.


17)

class newthread extands Thread

Thread t;

nevthread ()

t1 = new Thread(this,"Thread_1");

t2 = new Thread(this, "Thread_2") ;

t1.start();

t2.start();

public void run ()

t2.setPriority(Thread.MAX_PRIORITY) ;

System.out.print(t1.equals(t2));

class multithreaded_programing

public static void main (String args[])

new newthread();

Truetrue

Falsefalse

True

False
18) In JavaScript, we can embed expressions or variables directly within the template literal
using____.

‘${}’

‘#’

‘$[]’

‘#{}’

19) The term "scalability" refers to ______ .

The ability of a server to compute complex queries.

The ability of a server to handle a large number of users.

The ability of a server to manage the rendering of HTML pages.

The ability of the server to load HTML pages fast.

20) DOM stands for ____.

Document Object Method

Direct Object Model

Document Object Model

Document Over Model

21) Which of the following is an array method in JavaScript?

map

every

reduce

All of the above

22) Which of the following is a type of pop-up box in JavaScript?

alert

DOM

canvas

console

23) Which of this keyword is used to define interfaces in Java?

intf

Intf
interface

Interface

24)

The term "deployment" refers to _____.

Running the project on a server to make it accessible to all

Bundling all the project files into a single file

Removing unnecessary files

Updating existing project

25) Which one of the following is not a Java feature?

Object-oriented

Use of pointers

Portable

Dynamic and Extensible

26) The purpose of the Front-end framework in Full stack development is ________.

To provide the client-side interface

To manage database

To reduce the server load

To send http requests

27) Amongst which of the following shows the responsibility of a backend developer?

To design the user interface and user experience of the website

To manage the project's version control and code repository

To manage server-side logic, data manipulation, and database operations

To perform testing and debugging of the front-end components

28) What is an API used for?

API is used for the communication between different software applications.

API is used for creating a software application

API is used to handle client-side requests.

API is a tool for designing the user interface.

You might also like