Skip to content
Hypatia’s Blog
Hypatia's Blog
Education, Learning, Training and Research
  • Home
  • C Programming
    • Function In C
      • How to add two number by using function in C.
      • How to find max of two number using function in C
      • How to find compound interest using function by C
      • How to find area of triangle using function in C
      • How to find area of circle using function in C
    • Simple Arithmetic
      • Area Of Circle In C
      • Rounding Of Number In C
      • Changing Kilometer into Meter,Centimeter,Inch,Foot,Yard&Mile By using C
      • Finding ASCII value of a char in C
      • How To Calculate GST% By Using C
      • Calculating Total and Percent By Using C
    • If Else
      • How to find factorial value in C
      • Simple Interest Compound interest by using C
      • Min,Max,Mid by using C
      • Checking property of triangle with C
      • How To Get Absolute Number In C
      • Check for Leap Year using C
      • How To Find Youngest Age In Three Age C
    • Loops
      • Reverse Number By Using C
    • Switch
      • Simple and compound interest by using SWITCH in C
      • Celsius To Fahrenheit And back In C
    • Input/Output
      • Explaining cprintf
      • Bitwise Shifting
    • Pointers
      • Introducing Pointers
      • Swapping of two number using pointer in C
      • Password in C
      • Changing values through pointers
  • Java
    • OOPS
      • Type Of Triangle
      • Abstract Class in Java
      • Interfaces in Java
    • Java Swing
      • JFileChooser
    • Arithmetic Operators
      • How to print Fibonacci series in java
      • How to find area and perimeter in Java.
      • How to calculate area of triangle by using heron’s formula in java
      • Phone Bill using If Else
      • Leap year
      • Simple Interest in Java
      • Area and Perimeter of Circle, Triangle and Rectangle
      • Max and Min by ternary
    • Loops
      • Fibonacci Series in Java
      • How to print pattern of alphabet in java?
      • Check if a number is a Prime Number
      • How to check for palindrome number in java?
      • How to reduce the number of loop running during finding of prime number in the given range in java.
      • How to print hourglass pattern in java.
      • How to print triangle pattern in java?
      • Heart Pattern In Java
      • Multiplication Table
      • Square With Diagonal Pattern
      • Number Pattern
      • Print Square Pattern In Java
      • Pyramid Pattern
      • Patterns using for loops
      • Print Door Pattern In Java
      • Simple Calendar
    • Java Arrays
      • Print & Scan 2-D array
      • Tic Tac Toe
      • Operations on Arrays
      • Linear Search
      • Binary Search
      • Selection Sort
      • Bubble Sort
      • Insertion Sort
      • Quick Sort
    • Threads
      • Thread Joins
      • Synchronization of Threads
  • Forum
    • Basic Java Questions
  • Forum Accounts
    • Forum Login
    • New User Registration
    • Lost Password
  • Android
    • First Project in Android
    • Widgets
      • Use of RatingBar in Android Studio
      • Android Switch Widget
      • ProgressBar
      • Spinner Widget
      • CheckBox Widget
      • Seekbar Widget
      • Simple Quiz
      • Toggle Button Widget
      • RadioButton Widget
    • Android Database Program
    • Notifications inAndroid
    • Sms sending App
    • Very Simple Calculator
    • Simple Shop
    • Simple Bank Account
    • Media, Photo, Audio, Video
      • Taking photos in Android
      • Recording Videos in Android
  • Machine Learning,Python, Anaconda
    • Introduction to NLP using NLTK
    • Machine Learning Terms
    • Anaconda Installation
    • Lambda in Python and its use in filter and map
    • Python Print Function-1
    • Print Formatting -1
    • Insertions in Python List
    • Sorting of lists in Python
    • Dictionaries in Python
    • Addition and deletion in Python Dictionary
    • Tuples in Python
    • Classes in Python
    • Inheritance in Python
    • Functions in Python
    • Mean deviation using Python
    • Calculate Mean
    • Class and Functions
    • Random No Generation
  • PHP
    • File
      • How to make pyramid in PHP ?’
      • How to read file Line by Line in PHP ?
      • How to Read/Create a file in PHP ?
  • WordPress
    • Creating a plugin in WordPress
    • Creating custom theme in WordPress
    • Adding content to custom wordpress theme
    • Menu in a custom theme
    • Theme content functions
    • Post in Themes
    • Creating a child theme in WordPress
    • Show Categories in a Theme
    • Database access in WordPress. $wpdb
    • Designing a Storefront child-theme
    • Admin Settings Page 1

Month: November 2017

Using Synchronization Method In Java

November 30, 2017 Champak Roy Leave a comment

Post on Synchronization of Threads.

Continue Reading →

Posted in: Java Filed under: #, Array, c programming, Computer Programming, for loop, if else, Java, java programming, OOPS

Packages and Modules in Python

November 29, 2017 Champak Roy Leave a comment

Explaining basics of modules and packages in Python.

Continue Reading →

Posted in: Anaconda, Modules, Package, Python Filed under: module, package, python

THREADING IN JAVA

Champak Roy 1 Comment

A simple Java Program on Threads.

Continue Reading →

Posted in: Uncategorized

Creating Class and inserting function in it

Shruti Agrawal Leave a comment

#python #statistical_tools we can merge the different functions into a class. In this exp. stats is a class.   import…

Continue Reading →

Posted in: Anaconda, Dictionary, Functions, If else, List, Python, sorted Filed under: abstract class, Add function, dictionary, for loop, if else, list, python, sorted, statistical tools

Print asterisk (*) in every input (as like password ) in C

November 27, 2017 Indrajeet Gupta Leave a comment

CODE #include<stdio.h> #include<conio.h> void main() { char pwd[80],ch; int n=0; clrscr(); while(1) { ch=getch(); if(ch==13) { pwd[n]=’\0′; break; } pwd[n]=ch;…

Continue Reading →

Posted in: Android Programming, C-programming, If else Filed under: asterisk, password in c, print star in place of password in c

To calculate mean when frequency table is given

November 25, 2017 Shruti Agrawal Leave a comment

#python #statistical_tools when two lists have been given;one is for values of that variable and second is for its frequencies.…

Continue Reading →

Posted in: Dictionary, Functions, List, Python Filed under: dictionary, list, python, statistical tools

calculating mean,mean deviation using python programming

November 24, 2017 Shruti Agrawal Leave a comment

Simple Programming   import math def summation(l): sum=0 for i in range(0,len(l)): sum=sum+l[i] return sum def mean(l): x=summation(l) sum=x return…

Continue Reading →

Posted in: Functions, List, Python Filed under: Computer Programming, for loop, functions, python

How to create a quiz app on android studio (using radio buttons)?

Champak Roy Leave a comment

Creating a quiz app on Android studio(using radio buttons)

Continue Reading →

Posted in: Android, Java Filed under: Android Studio, Java, Quiz, Radio Buttons, xml
Shopping Cart

How to construct an android application on Shopping Cart using android studio 3.0.1 ?

November 23, 2017 SAKSHI GUPTA Leave a comment

INTRODUCTION : Hii all, here we are going to construct an application for Shopping store. The programmer should be very particular…

Continue Reading →

Posted in: Android, Android Programming, Functions, Inheritance Filed under: Android, Button, Check Box, if else, Java, Rating Bar, Switch
#Bank Account

How to construct an android application on Bank Account using android studio 3.0.1 ?

November 21, 2017 SAKSHI GUPTA Leave a comment

Introduction : Hii everyone, here we are going to construct an android application for bankers.The strategy for constructing this beautiful…

Continue Reading →

Posted in: Android, Android Programming, Functions, If else, Java Filed under: Android, Bank Account, if else, Java, Plain Text, Switch, Toggle Button

Post navigation

Page 1 of 4
1 2 … 4 Next →

Popular Posts

  • How to find  area of circle  using function in C How to find area of circle using function in C by Abhay Singh Raghuvanshi
  • How to print heart pattern in java? How to print heart pattern in java? by Farhan Talib
  • How to Create an Android Application on Student's Result using android studio ? How to Create an Android Application on Student’s Result using android studio ? by SAKSHI GUPTA
  • Write a program to find the Phone Bill of the using if else statement in java ? Write a program to find the Phone Bill of the using if else statement in java ? by SAKSHI GUPTA
  • Write a program to check the type of a triangle in java programming. Write a program to check the type of a triangle in java programming. by SAKSHI GUPTA
  • How to create a quiz app on android studio (using radio buttons)? How to create a quiz app on android studio (using radio buttons)? by Champak Roy
  • How to print hourglass pattern in java. How to print hourglass pattern in java. by Rishabh Baranwal
  • How to print square pattern in java. How to print square pattern in java. by Ashutosh kumar Gupta
  • How To Calculate GST% By Using C How To Calculate GST% By Using C by Abhay Singh Raghuvanshi
  • Min,Max,Mid by using C Min,Max,Mid by using C by Abhay Singh Raghuvanshi

Hours & Info

Varanasi, Uttar Pradesh
9335874326
champak.royVaranasi@gmail.com
9 am - 8pm
Programming Quotes
On two occasions, I have been asked [by members of Parliament], 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question.― Charles Babbage

Recent Posts

  • Write a Java program to find the value of one number raised to the power of another number, using Loop.
  • How to find the Max, Min and Middle of 3 numbers?
  • How to add and use a Controller in Laravel?

Recent Comments

  • Vishva Deepak Tripathi on Starting GUI in Python
  • nagesh lingayat on How to solve a Quadratic Equation using Java?
  • Abhay Singh Raghuvanshi on How to make a list in python and save it in files ……

Archives

  • February 2019
  • January 2019
  • December 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • February 2018
  • January 2018
  • December 2017
  • November 2017
  • October 2017
  • September 2017

Blog Stats

  • 29,953 hits

Follow Us

Contact Us

  • Email
    hypatiasoftwaresolutions@gmail.com
  • Phone
    9335874326
  • Address
    Hypatia Software Solutions,
    Nai Basti, Pandepur, Panchkoshi Road,
    Varanasi 221002
Copyright © 2019 Hypatia's Blog
This site uses cookies: Find out more.