Tuesday, 30 October 2018

A program of java using scanner class

Question:-Write a program to create a class employ and input number of days worked and rate perday Calculate wadges of the
employ and print all the details.

LET'S START OUR PROGRAM.

import java .util.*;
class employ
{
void main()
{
Scanner sc=new Scanner(System.in);//creating of object
System.out.println("enter per day rate of employ");
int r=sc.nextInt();
System.out.println("enter number of working day of employ");
int d=sc.nextInt();
int wedges=r*d;
System.out.println("wedges of employ is");
System.out.println(wedges);
}
}



THIS IS THE PROGRAM 
DO NOT FORGOT TO SHARE,LIKE,COMMENT ON MY VLOG.

THANKS FOR VISIT





A small java program using scanner class

A small java program for any platform not only for blue j

This is the program to calculate two variable given by user by using Scanner class.

import java.util.*;
class add
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("enre any two digits");
int n=sc.nextInt();
int n1=sc.nextInt();
int s=n+n1;
System.out.println(s);
}
}

this program will run in any platform without using blue j

Procedure i will give latter 

but ,dont forgot to like and share my vlog

THANKS FOR VISIT






Monday, 13 August 2018

Hii friends today I am going to give you the program of multiplication 
Class name-multiply
Let's go

Class multiply
{
Void main(int a,int b)
{
Int s=0;
S=a*b;
System.out.println(s);
}
}

This is the programme of multiplication in this numbers will be asked from user

Thank for visit........

Sunday, 12 August 2018

HAY THANK FOR VISIT


The program of java(blue j) for addition while asking the numbers from user

class name-add

here is the program-


class add
{
void main(int a,int b)
{
int s=0;
s=a+b;
System.out.println(s)
}
}


this is the program 
is you want to change the class name you can give any name to class which you want to give

How to recover deleted data with Wondershare Data Recovery

wondershare data recovery  click here to download it..........
  • Once you download it, install it on your PC. 
  • You will now see a shortcut of Windows Recovery software on your desktop. Click on it to open it.
  • Now, click on the requisite option depending on your need (You can register for the full version or try the trial version).
  • Move forward with the on-screen instructions and wait for some time until the whole process completes.
  • That’s it. You’re done. Select the type of Recovery (Recovery Modes). You can now see the files which have been deleted and the status of recovery possibility. Select the files and click on Recover button.

You can recover your deleted data regardless of the time period as long as the original lost data has not been overwritten by new data.

How To visible all Files Infected by Shortcut Virus from USB Pendrive

for-more-information-visit-to-our-blog-site-https://myviewsbyvishnu.blogspot.com/
    Just follow these steps ...........

  • Open My Computer.
  • Click on Tools option at the Top menu. Select Folder Options…
  • It will open a new window. Click on View tab.
  • Now, scroll down and look for the following option: Hidden files and folders. Under it, mark a check on Show hidden files and foldersoption.
  • Then just under it, you will see the following option: Hide protected operating system files (Recommended). Uncheck it.
  • Click on OK button.
  • That’s it. You’re done. Now, open your Pendrive and notice that all your files is visible now. However, it will not remove the shortcut virus but it will make all your files accessible.

thanks friends................

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...