banner

Wednesday, December 7, 2016

LAB EXAM ON 13-12-16 (TUESDAY)

Schedule            9:30 AM - 12:00 PM  (Roll No : 1-28 ) 1:30 PM - 4:00 PM (Roll No : 29-57 ) Program  Create a database app... thumbnail 1 summary
  • Schedule            9:30 AM - 12:00 PM  (Roll No : 1-28 ) 1:30 PM - 4:00 PM (Roll No : 29-57 ) Program  Create a database app...

    Thursday, November 10, 2016

    MySQL and NetBeans

    Visit this links and follow the demonstration Creating Connecting and testing the connection - PHPMyAdmin https://www.youtube.com/wat... thumbnail 1 summary
  • Visit this links and follow the demonstration Creating Connecting and testing the connection - PHPMyAdmin https://www.youtube.com/wat...

    Thursday, November 3, 2016

    PROTOTYPE EVALUATION CRITERIA

    Each member of the group is expected to maintain a record of the tasks he/she has performed in the development of the prototype. Pleas... thumbnail 1 summary
  • Each member of the group is expected to maintain a record of the tasks he/she has performed in the development of the prototype. Pleas...

    Monday, October 31, 2016

    ASSESSMENT EXERCISES - FIRST BATCH

    First question carries 5 marks and second question carries 10 marks . Create a class called Invoice that a hardware store might use t... thumbnail 1 summary
  • First question carries 5 marks and second question carries 10 marks . Create a class called Invoice that a hardware store might use t...

    Thursday, October 27, 2016

    LAB ASSIGNMENT

    Today we will build a simple java GUI application as an assignment. For this application you will be making use of the GUI builder features... thumbnail 1 summary
  • Today we will build a simple java GUI application as an assignment. For this application you will be making use of the GUI builder features...

    REVISED MARKS DISTRIBUTION

    Following is the revised assessment of PMC 1622 based on our discussions      Lab Exercises     : 15 (5 + 10)      Lab Assignment : 10... thumbnail 1 summary
  • Following is the revised assessment of PMC 1622 based on our discussions      Lab Exercises     : 15 (5 + 10)      Lab Assignment : 10...

    Friday, October 21, 2016

    LIST OF PROGRAMMING EXERCISES

    Ask the user to enter two integers and print their sum, product, difference and quotient  Read a string from the keyboard, and output t... thumbnail 1 summary
  • Ask the user to enter two integers and print their sum, product, difference and quotient  Read a string from the keyboard, and output t...

    Thursday, October 20, 2016

    PE10 : Temperature Conversion Using APPLET

    a)Write a temperature conversion applet that converts from Fahrenheit to Celsius . The Fahrenheit temperature should be entered from the... thumbnail 1 summary
  • a)Write a temperature conversion applet that converts from Fahrenheit to Celsius . The Fahrenheit temperature should be entered from the...

    FIRST CONTINUOUS ASSESSMENT ON OCT 31, 2016

    Dear Students,     First assessment of  your Java lab  performance for  the calculation of  internal marks will be held on October 31,... thumbnail 1 summary
  • Dear Students,     First assessment of  your Java lab  performance for  the calculation of  internal marks will be held on October 31,...

    Monday, October 17, 2016

    PE9 : SIMPLE CALCULATOR USING APPLET

    Write a Java program that works as a simple calculator . Use a grid layout to arrange buttons for the digits and for the + – * % operation... thumbnail 1 summary
  • Write a Java program that works as a simple calculator . Use a grid layout to arrange buttons for the digits and for the + – * % operation...

    Thursday, October 6, 2016

    Programming with NetBeans IDE

    Session Objectives Get familiar with programming in NetBeans IDE. Migrate all your java programs done till now to NetBeans. Creat... thumbnail 1 summary
  • Session Objectives Get familiar with programming in NetBeans IDE. Migrate all your java programs done till now to NetBeans. Creat...

    Thursday, September 29, 2016

    PE8: Inheriting the Car Class

    a) Create a super class called Car . The Car class has the following fields and methods. int speed; double regularPrice; String c... thumbnail 1 summary
  • a) Create a super class called Car . The Car class has the following fields and methods. int speed; double regularPrice; String c...

    Monday, September 26, 2016

    PE7 : Computing the Employee Salary

    Create a class called Employee that includes three pieces of information as instance variables— a first name (typeString), a last n... thumbnail 1 summary
  • Create a class called Employee that includes three pieces of information as instance variables— a first name (typeString), a last n...

    Thursday, September 22, 2016

    PE6: Savings Account Class Operations

    /* Create a class SavingsAccount . Use a static variable annualInterestRate to store the annual interest rate for all account holder... thumbnail 1 summary
  • /* Create a class SavingsAccount . Use a static variable annualInterestRate to store the annual interest rate for all account holder...

    Thursday, September 8, 2016

    PE5: (Array) Calculation of average marks

    /* Write a Java program that allows the user to enter up to 10 integer marks into an array. Your main method should call an Average method... thumbnail 1 summary
  • /* Write a Java program that allows the user to enter up to 10 integer marks into an array. Your main method should call an Average method...

    Monday, September 5, 2016

    PROGRAM DEMO : SORTING AN ARRAY

    import java.util.Arrays ; public class ArrayDemo { public static void main (String[] args) { // initializing unsorted int ... thumbnail 1 summary
  • import java.util.Arrays ; public class ArrayDemo { public static void main (String[] args) { // initializing unsorted int ...

    PE4 : (ARRAY) Find missing numbers

    Write a program to find missing numbers in an  array /* To find missing numbers in an array first we need to make sure that arra... thumbnail 1 summary
  • Write a program to find missing numbers in an  array /* To find missing numbers in an array first we need to make sure that arra...

    PE 3 : Program to check if a string is a palindrome or not.

    Write a Java program to check if a string is a palindrome or not .  /* Remember a string is a palindrome, if it remains unchanged when ... thumbnail 1 summary
  • Write a Java program to check if a string is a palindrome or not .  /* Remember a string is a palindrome, if it remains unchanged when ...