Tuesday, 31 January 2017

EASSY PROGRAMMING OF BLUE J

A PROGRAMMING TO PRINT THE ELECTRICITY BILL 
if a=100 =200;
if a>100&&a<=300=200+1.00 per unit
if a>300&&a<=500=200+1.55 per unit
if a>500=200+2.10 per unit

public class electricity {

void main(int a)
{  double t=0;
    if(a<=100)
    {
        t=200;
    }
    if(a>100&&a<=300)
    {
        t=((a-100)*1.00)+200;
    }
    if(a>300&&a<=500)
    {
        t=(a-300)*1.55+(200*1.00)+200;
    }
    if(a>500)
    {
        t=(a-500)*2.10+(200*1.55)+200+(1*200);
    }
    System.out.print(t);

}}

this is an example related to this type of programing

PROGRAMING IS NOT TOUGH

PROGRAMING IS NOT TOUGH

JUST FOLLOW THE EASY PROCEDURE

1)FIRST BELIEVE YOURSELF
2)IMAGINE THE OUTPUT YOU ARE GOING TO GET AND ACCORDING TO THAT PROCEDE
3)TYPE THE PROGRAME AND LEARN FROM YOUR  MISTAKES

Monday, 30 January 2017

WINDOWS 8 NEW ENTERY IMFORMATION

WINDOWS 8 NEW ENTERY IMFORMATION




windows 8 is an operating system developed by microsoft for use on personal computer, including home and business desktops,laptops,tablets and even home threater pcs.
windows 8 features a new touch user interface featuring a new start a new screen with a grid of dynamically updating tiles that represent applications.
 the transition from windows 7 to windows 8 introduced a number of new features across various applications of operating system.
among these included a greater focous on  optimizing  the operating system  for touch screen - based devices (such as tablets )and cloud computing.

Program(python):-Find duplicates in an array (Geeks for geek problem)

QUESTION:- Given an array  a  of size  N  which contains elements from  0  to  N-1 , you need to find all the elements occurring more than o...