BlueJ and Python For ICSE ISC and CBSE
Enter a key term, phrase, name or location to get a selection of only relevant news from all RSS channels.
Enter a domain's or RSS channel's URL to read their news in a convenient way and get a complete analytics on this RSS feed.
This is a menu driven program with string manipulation. import java.io.*; class String1 { String s1,s2; BufferedReader br=new BufferedReader(new InputStreamReader...
This is a program on inheritance which deals with spare parts. This program shows alarm while stock is below certain specified numbers. import java...
This is a program on inheritance where personal records of Employees will be managed in super class and the sub class will deal with professional records...
import java.util.*; class Even_series { int arr[][]=new int [5][5]; int i,j, sum_row, sum_col; Scanner sc=new Scanner(System.in); public void take() ...
Write a program to declare a square matrix M [ ] [ ] of order ‘N’ where ‘N’ must be greater than 3 and less than 10. Allow the user to accept three different...
Take 10 numbers in an array and show the numbers having more odd digits in it compared to even digits in the same number E.G: input values 23 205...
Take 10 numbers in an array and show the numbers having at least one zero in them E.G: input values 23 205 54 …… Output would be 205………. import java...
Take 10 numbers in an array and reverse the numbers using a second function e.g: input values 23 25 54 …… Output would be 32 52 45………. import java...
A class DeciOct has been defined to convert a decimal number into its equivalent octal number. Some of the members of the class are given below: Class...
Unfortunately BlueJ and Python For ICSE ISC and CBSE has no news yet.
But you may check out related channels listed below.
[...] 'A': case 'E': case 'I': case 'O': case 'U': bool=true; } return bool; } public static void main(String args[])throws Exception { String1 ob=new String1(); ob.show(); } } All the three programs are [...]
[...] ()+ s1; i--; } System.out.println("Modified Name:"+s1); } public static void main(String args[])throws Exception { A ob=new A(); ob.takeName(); } } [...]
[...] from where the execution of the program starts and ends.'public static void main (String args[])' is that main function and the function cannot be overloaded like 'public void main [...]
[...] #62;=i;j--) { System.out.print(s.charAt(i)); } System.out.println(); } } public static void main(String args[])throws Exception { PatternPrint ob=new PatternPrint(); ob.show(); } } [...]
[...] In this BlueJ program, user will enter a sentence and the sentence will be displayed after converting every [...]
[...] This is a BlueJ program to input a positive natural number N and output all combinations of consecutive natural number, [...]
[...] This is a BlueJ program to input a positive natural number N and output all combinations of consecutive natural number, [...]
[...] In this BlueJ program, number of objects of an user defined class will be created and values on all the objects will [...]
[...] Four user defined functions are used in this program and they are void takeString(), void show(), private void check(char ch) and private char alter(char ch). Function void takeString() [...]
[...] P1 { int i=1,j,n,x=1; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); void show() throws Exception { System.out.print("\nEnter the Last Number of the series:"); n= [...]
[...] np) : parameterised constructor to assign the parameters n to name, a to author and np to p. void show( ) : displays the book details Class Name : Compute Data members/instance variables : d : number [...]
[...] ,n; int a[],a1[]; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); void show() throws Exception { System.out.println("How many Elements You Want to Store?:") [...]
[...] (System.in)); String str,s1,maxword; StringTokenizer stk; int i,len,max=0,c; public void show()throws Exception { System.out.print("\nEnter the sentence:"); str=br.readLine(); [...]
[...] pattern: 1 2 2 3 3 3 4 4 4 4 n n n n n 4 4 4 4 3 3 3 2 2 1 public class A { int i,j,x,y; public void show() { x=1; y=1; for(i=1;i<=9;i++) { for(j=1;j<=x;j++) { if(i==5) System.out.print(& [...]
[...] * 5 1 2 * 4 5 1 * 3 4 5 * 2 3 4 5 Here is the BlueJ program. class S { int i,j; int x; public void show() { for(i=0;i< 5;i++) { x=1; for(j=0;j< 5;j++) { if(i+j==4) System.out.print(& [...]
[...] Here is the BlueJ program. class S { int i; long lg=0; public void show() { for(i=1;i< 20;i++) { lg=lg+(i*(i+1)); } System.out.println("Series="+lg); } [...]
[...] In this program user will enter a sentence and the program will count upper case, lower case characters, digits and [...]
[...] In this program user will enter a sentence and the program will count upper case, lower case characters, digits and [...]
[...] In this program user will enter any number and the first digit of the number is to be extracted. Suppose the number [...]
[...] In this program user will enter any sentence and a particular character and every occurrence of the character in [...]
[...] location and 4rth value at the (size-2) location of the array and so on. Here is the BlueJ program import java.io.*; class Ab1 { BufferedReader br=new BufferedReader(new InputStreamReader( [...]
[...] – upper case characters will be converted into lower case and vice versa. Here is the BlueJ program import java.io.*; class CaseSentence { String s1,s2=""; char ch; int i,len; [...]
[...] output will be like: The smallest number: The second higher number: The highest number: BlueJ Program import java.io.*; class Num { BufferedReader br=new BufferedReader(new InputStreamReader(System. [...]
[...] ]) throws Exception { Str ob=new Str(); ob.takeString(); } } Sample input and output of the program Sample Input :- India is My Countery Output :- Country India is My [...]
[...] ; ob.takeNumber(); } } Sample input and output of the program Sample Input: 25 Sample Output: Nearest Prime number is 23 [...]
[...] ; ob.takeText(); } } Sample input and output of the program Sample Input: Disari Public College is located in Haldia. It is co-ed residential cum day boarding [...]
[...] 'A': case 'E': case 'I': case 'O': case 'U': bool=true; } return bool; } public static void main(String args[])throws Exception { String1 ob=new String1(); ob.show(); } } All the three programs are [...]
[...] ()+ s1; i--; } System.out.println("Modified Name:"+s1); } public static void main(String args[])throws Exception { A ob=new A(); ob.takeName(); } } [...]
[...] from where the execution of the program starts and ends.'public static void main (String args[])' is that main function and the function cannot be overloaded like 'public void main [...]
[...] #62;=i;j--) { System.out.print(s.charAt(i)); } System.out.println(); } } public static void main(String args[])throws Exception { PatternPrint ob=new PatternPrint(); ob.show(); } } [...]
Related channels
-
Online CBSE ICSE NCERT Solutions - K12 Gyaan
Free online NCERT Solutions with CBSE Solved question paper, ICSE Guess question papers, CBSE Model papers, CBSE Sample ...
-
Northeast Today
A digital news media platform covering news, opinions and narratives from, of and for Northeast India
-
Bangalore Schools, Karnataka, India
Information about CBSE, ICSE, IGCSE & International schools in Bangalore, India
-
Free classifieds Site for Online Ad Posting
World class global classified advertising website to post freeads for Business, Buy and Sell, Education and Learning, He...
-
School Books India : Online School, College, University & Entrance Books ...
Online School, College, University & Entrance Books of India : Selling NCERT Books, CBSE Books, ICSE Books Online