ENGINEERING AND TECHNOLOGY QUESTION PAPER
#1

ENGINEERING AND TECHNOLOGY QUESTION PAPER

[attachment=17359]

6) Write the HTML tag which shows details (like abbreviation) of the word when mouse pointer is moved on top of the word.
7) Write the CSS syntax for making the <H4> elements in the document Red in colour and Arial font.
8) Why do we use static keyword along with the main method while writing a Java program?
9) What is the value of the following expression, and why?
10) Consider the following class:

public class IdentifyMyParts {
public static int x = 7;
public int y = 3;
}
a. What are the class variables in the program?
b. What are the instance variables?



11) Write a Java program to compare two string values for equality.
12) Write a CSS code to make the hyperlink change its color during the different stages of the page link in the Html.
13) What is the output of the following Java program:

public class X
{
public static void main(String[] args)
{
int current, prev = 1, prevprev = 0;
for(int i = 0; i < 20; i++)
{
current = prev + prevprev;
System.out.print(current + " ");
prevprev = prev;
prev = current;
}
System.out.println();
}
}
14) Consider the following two classes:

public class ClassA {
public void methodOne(int i) {
}
public void methodTwo(int i) {
}
public static void methodThree(int i) {
}
public static void methodFour(int i) {
}
}


public class ClassB extends ClassA {
public static void methodOne(int i) {
}
public void methodTwo(int i) {
}
public void methodThree(int i) {
}
public static void methodFour(int i) {
}
}
a. Which method overrides a method in the superclass?
b. Which method hides a method in the superclass?
c. What do the other methods do?

15) Consider the following code snippet.
int i = 10;
int n = i++%5;
a. What are the values of i and n after the code is executed?
b. What are the final values of i and n if instead of using the postfix increment operator (i++), you use the prefix version (++i))?

Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: sggs college of engineering and technology, vl9252 question paper, gelet question paper, java question paper, engineering paper ampad, adeo question paper cgvyapam, doec question paper,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  A Paper Presentation on Software Development Automation by Computer Aided Software seminar paper 4 3,179 23-03-2016, 02:05 PM
Last Post: dhanabhagya
  Principles of Management technology seminar addict 6 14,982 30-10-2014, 06:37 PM
Last Post: seminar report asees
  SYLLABUS FOR ELECTRICAL ENGINEERING seminar addict 1 1,966 21-05-2014, 07:08 PM
Last Post: [email protected]
  NOKIA MORPH TECHNOLOGY abstract seminar details 3 5,853 08-04-2014, 10:35 PM
Last Post: seminar report asees
  HVDC LIGHT TECHNOLOGY seminar details 2 3,641 06-03-2013, 03:54 PM
Last Post: Guest
  PALM VEIN TECHNOLOGY ppt seminar details 2 6,366 06-02-2013, 07:36 PM
Last Post: Guest
  3g technology seminar addict 2 2,230 29-01-2013, 11:06 AM
Last Post: seminar details
  VLSI TECHNOLOGY seminar addict 1 4,526 29-01-2013, 10:38 AM
Last Post: seminar details
  Android (operating system) TECHNOLOGY seminar addict 1 2,266 21-12-2012, 09:40 AM
Last Post: seminar details
  PHARMACEUTICAL TECHNOLOGY seminar addict 1 3,066 19-12-2012, 12:02 PM
Last Post: seminar details

Forum Jump: