adplus-dvertising

Welcome to the Web Technologies MCQs Page

Dive deep into the fascinating world of Web Technologies with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Web Technologies, a crucial aspect of UGC CBSE NET Exam. In this section, you will encounter a diverse range of MCQs that cover various aspects of Web Technologies, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within UGC CBSE NET Exam.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Web Technologies. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of UGC CBSE NET Exam.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Web Technologies. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Web Technologies MCQs | Page 4 of 36

Q31.
The best known example of a MAN is:
Discuss
Answer: (b).Cable Television
Q32.
Which of following file retrieval methods use hypermedia?
Discuss
Answer: (d).HTTP
Q33.
Which of following is an example of a client-server model?
Discuss
Answer: (d).All the above
Q34.
SaaS is a popular term in the field of:
Discuss
Answer: (d).Cloud Computing
Q35.
Consider the following recursive Java function f that takes two long arguments and returns a float value.
Which of the following integers best approximates the value of f(2, 3)?
public static float f(long m, long n)
{
float result = (float) m/ (float) n;
if (m < 0 || n< 0)
return 0.0f;
else
result += f(m*2, n*3);
return result;
}

a.

3

b.

2

c.

0

d.

1

Discuss
Answer: (b).2
Q36.
What does the following Java function perform? (Assume int occupies four bytes of storage)
public static int f(int a)
{   // Pre-conditions : a > 0 and no overflow/underflow occurs
    int b=0;
    for (int i=0; i<32; i++)
    {
        b = b<<1;
        b = b | (a & 1);
        a = a >>>1; // This is a logical shift
    }
    return b;
}
Discuss
Answer: (b).Return the int that has the reversed binary representation of integer a
Q37.
The definitions in an XML document are said to be .............. when the tagging system and definitions in the DTD are all in compliance.
Discuss
Answer: (c).valid
Q38.
Consider the JavaScript Code. If M is the number of alert dialog boxes generated by this JavaScript code and D1, D2, ............, DM represents the content displayed in each of the M dialog boxes, then:
var y= “12”;
function f( ) {
var y = “6”;
alert (this.y);
function g( ) {alert (y); }
g( );
}
f( );
Discuss
Answer: (d).M=2; D1 displays “12”; D2 displays “6”.
Q39.
What is the output of the following JAVA program?
class simple
{
public static void main(String[ ] args)
{
simple obj = new simple( );
obj.start( );
}
void start( )
{
long [ ] P= {3, 4, 5};
long [ ] Q= method (P);
System.out.print (P[0] + P[1] + P[2]+”:”);
System.out.print (Q[0] + Q[1] + Q[2]);
}
long [ ] method (long [ ] R)
{
R [1]=7;
return R;
}
} //end of class
Discuss
Answer: (d).15 : 15
Q40.
In Java, which of the following statements is/are True?

S1: The ‘final’ keyword applied to a class definition prevents the class from being extended through derivation.
S2: A class can only inherit one class but can implement multiple interfaces.
S3: Java permits a class to replace the implementation of a method that it has inherited. It is called method overloading.
Discuss
Answer: (a).S1 and S2 only
Page 4 of 36

Suggested Topics

Are you eager to expand your knowledge beyond Web Technologies? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!