Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Internet Blogs  >  Tutorial Site On Computer Programming Languages f internet Blog  > 

Tutorial Site On Computer Programming Languages F Blog


schooljava.blogspot.com
Programs and technical analysis on BlueJ for ICSE and ISC Students, C, C++ and Data structure through C for college students.
2024-01-30 14:23
 What is the Pell series?Pell series starts with the first term as 0 and the second term as 1. The next term will be an addition to the second last term and two times to the last term… Read More
2023-12-08 06:52
  Write a program in java to accept a number from user and check whether the number us a boring number or not.Boring number is a positive number having all the digits at even position i… Read More
2022-12-06 02:22
 Design a class to overload a function series() as follows:(a) void series(int x, int n): to display the sum of the series given below:x1 + x2 + x3 + … + xn terms(b) void series(… Read More
2022-12-06 02:12
 What is Keith Number and How to CheckKeith Number: Let's check the number 742 is a Keith number or not.First, we will separate each digit, as 7, 4, 2To find the next term of the above… Read More
Multiplexer - MUX For ISC Students
2022-11-06 04:06
A Multiplexer (MUX) can be described as a combinational logic circuit used to select only one input among several inputs based on selection lines This can act as a digital switch This is als… Read More
2022-10-18 11:40
 In this program a two dimensional array will be filled up with only prime numbers and the numbers will be generated using a function.public class Main{ int arr[][]=new int[4][3]; int i… Read More
2022-03-15 11:17
  Consider the sequence of natural numbers1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,Removing every second number pro… Read More
2022-01-30 04:42
 Write a program in Java to enter a number and check whether it is a Smith number or not.Sample Input: 666Sum of the digits: 6 + 6 + 6 = 18Prime factors are: 2, 3, 3, 37Sum of the digit… Read More
2022-01-30 04:41
 A number is said to Bouncy number if the digits of the number are unsorted.For example,22344 - It is not a Bouncy number because the digits are sorted in ascending order.774410 - It is… Read More
2022-01-10 03:43
 FileReaderFileReader(String file) It takes filename in string. It opens the given file in read mode. If file doesn't exist, it throws FileNotFoundException.FileReader(File file) It tak… Read More
2021-11-06 03:29
 This is a program on inheritance which deals with spare parts. This program shows alarm while stock is below certain specified numbers.import java.io.*; class Parts {  … Read More
2021-07-03 14:10
An Evil number is a positive whole number which has even number of 1’s in its binary equivalent.Example: Binary equivalent of 9 is 1001, which contains even number of 1’s. T… Read More
2021-07-03 14:06
 Take a number (Sample Input OutputEnter a Number: 8Output: EightEnter a Number: 18Output: 0018class MenuDriven{     void show(int a, int b)     &nbsp&hell…Read More
2021-04-29 10:35
A tech number has even number of digits. If the number is split in two equal halves, then the square of sum of these halves is equal to the number itself. Write a program to generate and pri… Read More
2021-03-03 12:39
 Write a menu driven program to read a sparse matrix of integer values, search and print the appropriately triple that represents the elements in the sparse matrix:Expected Tasks:=>… Read More
2021-01-15 22:30
In this program Roll Number and marks on English, Mathematics, Physics, Chemistry of 'n' number of students are taken in separate 1 d arrays. Promotion is granted according to the following… Read More
2021-01-14 22:30
Method Description clear() Removes all the elements from the dictionary copy() Returns a copy of the dictionary fromkeys() Returns a dictionary with t… Read More
2021-01-13 22:30
 Python Dictionaries are storage location and values are stored in key:value pair. It cannot have duplicate key and if we insert duplicate key, it will overwrite the existing one.mdict… Read More
2021-01-11 23:00
Python’s built-in set type has the following characteristics:Sets are unordered.Set elements are unique. Duplicate elements are not allowed.A set itself may be modified, but the elemen… Read More
2021-01-11 22:30
 Tuples are used to store multiple items in a single variable. It is like list in Python with few differences. A tuple is a collection which is ordered and unchangeable.Tuples are writt… Read More
2021-01-09 22:30
In Python there are several techniques to join lists and one of the easiest ways are by using the + operator.mlist1 = ["a", "b", "c"]mlist2 = [1, 2, 3]mlist3 = mlist1 + mlist2Now mlist3 woul… Read More
2021-01-08 22:30
 To copy an existing list to another in Python, we can use copy () function and the function is invoked on the existing list object. This function returns a new object in which the elem… Read More
2021-01-07 22:30
 List objects in Python have a sort() method that will sort the list alphanumerically, ascending, by default:ExampleSort the list alphabetically:mylist = ["Assam", "Asansol", "Banaras"… Read More
2021-01-06 22:30
In Python, we can remove elements from list using the value stored in the list or index numberThe remove() method removes the specified item.ExampleRemove "Banaras":mylist = ["Assam","Banara… Read More
2021-01-05 22:30
Like many other programming languages, change value in List is possible in Python. Change Item Value To change the value of a specific item, refer to the index number:  Example Change t… Read More
2021-01-05 01:09
 List items are indexed in Python and we can use index number to access them. Index starts from 0 and ends at length of the list -1  Example Print the second item of the list: &nbs&hell…Read More
2021-01-04 11:22
   Collection means storage location of number of values in same named space location. There are four collection data types in the Python programming language: •  … Read More
2021-01-03 15:02
Python Operators Like all other programming languages, Python has different operators. Arithmetic operators Assignment operators Comparison operators Logical operators Identity operator… Read More
2021-01-03 14:30
True and False are two Boolean values.  Any expression using relational operators give one of two answers, True or False.  Example print(10 > 3) print(10 == 3) print(10 When yo… Read More
2020-11-14 10:46
   import java.util.*;class Restaurant{ String item[]={"Pasta","Cheese Pizza","Mini Burgers with Cheeze","Corn Dogs","Grilled Chicken","Chicken soup","Tomato soup","Meatloaf"… Read More

Share the post

Tutorial Site On Computer Programming Languages f

×

Subscribe to Tutorial Site On Computer Programming Languages F

Get updates delivered right to your inbox!

Thank you for your subscription

×