Tag: 3rd Sem BIM Notes
JAVA 2015 Old paper Solutions
Year 2015 Group B Q.no 11 Write a Java Program to display all the even numbers from 1 to 500 public class tu15Q11 { public static void main(String[] args) { int i; for(i=1;i<=500;i++){ if(i%2==0){ System.out.println(i); } } } } /** * * @author bim study notes */ 12. Make a thread using Runnable interface to […]
Continue ReadingJAVA Model Questions || BIM STUDY NOTES
Model Questions Write a Java program to display all the numbers between -300 to -1 which when divided by 17 gives 7 as remainder and also displays sum of those numbers. public class Sum { public static void main(String[] args) { int i,s=0; for(i=-300;i<-1;i++) { if(i%17==-7){ System.out.print(i+ ” “); […]
Continue ReadingSt Xavier’s College Pre board 2021 || BIM STUDY NOTES
< St Xavier’s College Pre board 2021 || BIM STUDY NOTES
Continue Reading