Search results for 'java' in Knowledge

We've found '617' results.

Assignment of java

For more resources please see other content

Loop Statements in java

Available below is the related to looping statements in Java. This file includes following :- • Repetition of statements • The while statement • Input loop • Loop schemes • The for statement • The do statement • Nested loops • Flow control statements

Java How to Program

Java How to Program Fourth Edition - DCC.

HTML CODE: Scientific Calculator

This code in html and javascript creates a a scientific calculator which allows us to perform multiple operations like addition , multiplication , division , substraction , etc.

OOPS concept in java

This file contains basic oops concepts of java which every student must know before advanced concepts.

java patterns

patterns in java

java programs

it gives information about each topic in java in the form of programs

Java notes for bit student

Check out my other content

Binary search in Java

import java.util.Scanner; class BinarySearch {   public static void main(String args[])   {     int c, first, last, middle, n, search, array[];     Scanner in = new Scanner(System.in);     System.out.println("Enter number of elements");     n = in.nextInt();     array = new int[n];     System.out.println("Enter " + n + " integers");     for (c = 0; c < n; c++)       array[c] = in.nextInt();     System.out.println("Enter value to find");     search = in.nextInt();     first  = 0;     last   = n - 1;     middle = (first + last)/2;     while( first <= last )     {       if ( array[middle] < search )         first = middle + 1;           else if ( array[middle] == search )       {         System.out.println(search + " found at location " + (middle + 1) + ".");         break;       }       else          last = middle - 1;       middle = (first + last)/2;    }    if (first > last)       System.out.println(search + " isn't present in the list.\n");   } }

JavaScript and JQuery

Notes are avaliable for the student studying computer science as a course and subject is programming. The topics included and discussed are writing your first java script program , the grammer of java script, adding logic and control to your programms , getting started with jquerry, making pages come alive with events, animations and effects , improving your images , enchancing web form , expanding your interface. etc. #SVNIT

How OOPS concept in java works?

This file describes the most crucial oops concept that you should know if you want to become a java developer. This would also explain working of those modules.

What is Java Script and how to implement ?

JavaScript is a scripting language most often used for client-side web development.  JavaScript is an implementation of the ECMAScript standard.  The ECMAScript only defines the syntax/characteristics of the language and a basic set of commonly used objects such as Number, Date, Regular Expression, etc.  The JavaScript supported in the browsers typically support additional objects.  e.g., Window, Frame, Form, DOM object, etc.  Different brands or/and different versions of browsers may support different implementation of JavaScript.

Advance JAVA questions and answers

Following document contains some basic Question and answers of advance JAVA.

javascript: mouse

This code shows you how to use the dynamic language of javascript to change the web page dynamically