C Program
#include <stdio.h>
#include <stdlib.h>
int main()
int main()
{
char c;
printf("Enter any word: ");
scanf("%c",&c);
if(c=='A'||c=='a'|| c=='E'||c=='e'||c=='I'||c=='i'||c=='O'||c=='o'||c=='U'||c=='u')
printf("%c is a vowel",c);
else
printf("%c is a Consonant",c);
}...
Write a word in both Upper Case and Lower Case
Posted on September 18, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
int main()
{
char Str[10];
printf("Enter any Word: ");
scanf("%s",&Str);
printf("Word: %s\n",&Str);
printf("UPPERCASE: %s \n", strupr(Str));
printf("lowercase: %s ", strlwr(Str));
}
Python Program
S = input("Enter a sentence: ")
print("Lower case: " + S.lower())
print("Upper case: " + S.upper()...
C program to find Sin, Cos, Tan of a number
Posted on September 13, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
float x;
printf("Enter Value of X:");
scanf("%f",&x);
printf("The sin of the value is :%f\n",sin(x));
printf("The cos of the value is :%f\n",cos(x));
printf("The tan of the value is :%f\n",tan(x));...
C program to calculate the number of letters in a word
Posted on September 12, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char Strings[20];
printf("Enter any word ");
scanf("%s",&Strings);
int number = strlen(Strings);
printf("\nTotal number of letters in %s is: %d",Strings,number);
...
C program to get current date and time
Posted on September 10, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
time_t ti;
time(&ti);
printf("%s",ctime(&ti));
...
C program to copy string from one variable to another variable
Posted on September 10, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char Str1[10],Str2[10];
printf("Enter any word: ");
scanf("%s",&Str1);
printf("Copying word...\n");
strcpy(Str2,Str1);
printf("The copied word is %s",Str2);
return 0;
...
Paper Measurement(Convert ream to sheets)
Posted on August 28, 2021by HI_TECH SK with No comments
1 ream contains 500 sheets of paper
C Program
#include <stdio.h>
#include <stdlib.h>
int main()
{
int s,r;
printf("Enter total ream of paper:");
scanf("%d",&r);
s=r*500;
printf("Total sheets of paper in %d ream is %d",r,s);
return 0;
}
Java Program
import java.util.Scanner;
public class PaperMeasurement {
public static void main(String[] args)
{
Scanner...
Caculate Profit
Posted on August 24, 2021by HI_TECH SK with No comments
Profit is calculated by subtracting cost price from selling price. That is, Profit = SellingPrice - CostPrice
C Program
#include <stdio.h>
#include <stdlib.h>
int main()
{
int p,cp,sp;
printf("Enter Cost Price:");
scanf("%d",&cp);
printf("Enter Selling Price:");
scanf("%d",&sp);
p=sp-cp;
printf("Profit from the item is %d",p);
return 0;
}
Java...
WorkDone(W=F*N)
Posted on August 21, 2021by HI_TECH SK with No comments
C Program
#include <stdio.h>
#include <stdlib.h>
int main()
{
int w,f,d;
printf("Enter Force(N): ");
scanf("%d",&f);
printf("Enter Distance travelled by the body(m): ");
scanf("%d",&d);
w=f*d;
printf("The work done is %d Joules",w);
return 0;
}
Java Program
import java.util.Scanner;
public class WordDone {
public static void main(String[] args)...
OHMS LAW(V=IR)
Posted on August 19, 2021by HI_TECH SK with No comments
Ohm’s law explains the relationship between voltage and current flowing through resistors. The mathematical formula is V=IR.
C Program
#include <stdio.h>
#include <stdlib.h>
int main()
{
int v,i,r;
printf("Enter current(Amphere):");
scanf("%d",&i);
printf("Enter Resistance(Ohm):");
scanf("%d",&r);
v=i*r;
printf("Voltage of the circuit is %d",v);
...
Swapping Two Numbers using a 3rd variable
Posted on August 18, 2021by HI_TECH SK with No comments
...
Swap Two Numbers Without Using 3rd Variable
Posted on August 17, 2021by HI_TECH SK with No comments
...
What is Electronics?
Posted on August 06, 2021by HI_TECH SK

Electronics is the branch of science and engineering which deals with the study of behavior and movement of electrons in different materials. It can also be defined as the engineering branch, which is concerned with the design of electronic circuits using different electronic components like...
Difference between Pre Increment and Post Increment
Posted on August 03, 2021by HI_TECH SK with 2 comments
Pre Increment and Post Increment are the features of unary operators. Unary operators are the important concepts of programming and is very easy to learn. Unary operators are mostly used to looping statements, function calls, etc. The unary operators have high precedence in C compared to other operators.(click here to check precedence table). Unary operators are operators with only one operand....
C OPERATORS PRECEDENCE AND ASSOCIATIVITY
Posted on August 02, 2021by HI_TECH SK with 1 comment
Rank
Operator
Explanation
Associativity
1
()
[]
.
->
Parenthesis
Square brackets
Direct Member selection
Indirect Member selection
Left to right
2
++
--
!
~
(type)
&
*
Increment
Decrement
Logical negation
Bitwise complement
Type casting
Address
Pointer...
Book Shop project in java with Data Base
Posted on July 31, 2021by HI_TECH SK with 5 comments
Book Shop Project in J...
Difference between Method Overloading and Method Overriding
Posted on July 27, 2021by HI_TECH SK with 1 comment
Method Overloading and Overriding help us to achieve polymorphism, which is one of the features of Object-Oriented-programming language
1. Method Overloading
Method overloading is a oops concepts in which a class can have two or more methods with same name but with different parameter
It is also called static polymorphism or time binding or early binding
It is implemented...
Importance of Digital Proficiency
Posted on July 23, 2021by HI_TECH SK with No comments

The modern world is to be proficient in digital world. The invention of computer by Charles Babbage and the development of internet by ARPANET is a milestone in the process of digitalization of the modern world (Schafer, 2019). Digital technology is a recent long wave of socio-economic evolution...
Pattern-21
Posted on July 18, 2021by HI_TECH SK with No comments
Patter...
Digital Technology
Posted on July 15, 2021by HI_TECH SK with 8 comments

Digital technology is changing every aspect of the world. Digital technologies includes social media, online games, multimedia and mobile phones and any technology that stores and process data. Digital technologies have revolutionized the way people think or the way they live their everyday...
Determinant of a 3X3 matrix
Posted on July 08, 2021by HI_TECH SK with No comments
Determinant of a 3X3 mat...
Add two 3X3 matrix
Posted on July 08, 2021by HI_TECH SK with No comments
Add two 3X3 mat...
print numbers in Descending order
Posted on July 07, 2021by HI_TECH SK with No comments
printing Numbers in descending or...
Print numbers in ascending order
Posted on July 07, 2021by HI_TECH SK with 1 comment
Print numbers in ascending or...
Maximum and minimun in an array
Posted on July 07, 2021by HI_TECH SK with 2 comments
Maximum and minimun in an ar...
Display array in reverse order
Posted on July 07, 2021by HI_TECH SK with 1 comment
Array in reverse or...
Programs using Recursive Function
Posted on July 07, 2021by HI_TECH SK with No comments

Recursive Function is a functtion which calls itself.Every recursive function must have a base condition to stop the function else the program will never end
Advantage of Recurive Function
1.it makes the coding clean
2.it helps solve a complex problem by breaking it down into many parts
Question:...
Check whether a number is a Palindrome Number
Posted on July 04, 2021by HI_TECH SK with No comments
Palindrome Num...
Check whether a number is a Prime Number
Posted on July 04, 2021by HI_TECH SK with No comments
Prime Num...
Printing Fibonacci Series
Posted on July 02, 2021by HI_TECH SK with No comments
Printing Fibonacci Ser...
Reverse a number
Posted on July 02, 2021by HI_TECH SK with No comments
Reverse a num...
Multiplication Table of any number till 12
Posted on July 02, 2021by HI_TECH SK with No comments
Multiplication Table of any number till...
Calculating sum of numbers from 1 to n
Posted on July 02, 2021by HI_TECH SK with No comments
Calculating sum of numbers from 1 to...
Printing numbers from 1 to n
Posted on June 30, 2021by HI_TECH SK with No comments
Printing numbers from 1 to...
Get average and rank it as shown:
Posted on June 25, 2021by HI_TECH SK with No comments
Get average and rank it as shown:
sl.no
average
grade
1
0-39
Fail
2
40-69
good
3
70-80
Very good
4
81-100
Excellent
...
Smallest among two Numbers
Posted on June 25, 2021by HI_TECH SK with No comments
Smallest among two Numb...
Read any digit from 1-10 and display in word
Posted on June 25, 2021by HI_TECH SK with No comments
Read any digit from 1-10 and display in w...
Largest Among three Numbers
Posted on June 24, 2021by HI_TECH SK with No comments
Largest Among three Numb...
Even or odd
Posted on June 24, 2021by HI_TECH SK with No comments
Check whether a number is Even or ...
Calculate Perimeter of a square
Posted on June 24, 2021by HI_TECH SK with No comments
Calculate Perimeter of a squ...
Calculate area of a square
Posted on June 24, 2021by HI_TECH SK with No comments
Calculate area of a squ...
Get name and age and print it
Posted on June 24, 2021by HI_TECH SK with 1 comment
Get name and age and print...
Check the ANSCII value of a character
Posted on June 24, 2021by HI_TECH SK with No comments
ANSCII value of a charac...
Convert cm to mm
Posted on June 24, 2021by HI_TECH SK with No comments
Convert cm to...
Convert meter to cm
Posted on June 24, 2021by HI_TECH SK with No comments
Convert meter to...
Printing Name
Posted on June 24, 2021by HI_TECH SK with No comments
Printing n...
Division of two numbers
Posted on June 24, 2021by HI_TECH SK with No comments
Division of two numb...
Multiplication of two numbers
Posted on June 24, 2021by HI_TECH SK with No comments
Multiplication of two numb...
Subtraction of two numbers
Posted on June 24, 2021by HI_TECH SK with No comments
Subtraction of two numb...
Addition Of two Numbers
Posted on June 24, 2021by HI_TECH SK with 1 comment
Addition of two numb...
Computer and its generations
Posted on June 06, 2021by HI_TECH SK with 2 comments

In this modern world we see computers everywhere and all over the world. Computers has been part of all industries be it transportation, communication, Medical, Education. Starting from personal computers to smart phones to tablets all are computers that has changed the way we live our lives...
Pattern-20
Posted on May 23, 2021by HI_TECH SK with No comments
Patter...
Pattern-19
Posted on May 23, 2021by HI_TECH SK with No comments
Patter...
Pattern-18
Posted on May 23, 2021by HI_TECH SK with 1 comment
Patter...
Pattern-17
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-16
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-15
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-14
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-13
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-12
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-11
Posted on May 22, 2021by HI_TECH SK with No comments
Patter...
Pattern-10
Posted on May 21, 2021by HI_TECH SK with No comments
Patter...
Pattern-9
Posted on May 19, 2021by HI_TECH SK with No comments
Patte...
Pattern-8
Posted on May 19, 2021by HI_TECH SK with No comments
Patte...
Pattern-7
Posted on May 19, 2021by HI_TECH SK with No comments
Patte...
Pattern-6
Posted on May 12, 2021by HI_TECH SK with No comments
Patte...
Pattern-5
Posted on May 12, 2021by HI_TECH SK with No comments
Patte...
Pattern4
Posted on May 11, 2021by HI_TECH SK with No comments
Patte...
C program using all 32 keywords available in ANSCII
Posted on May 03, 2021by HI_TECH SK with 5 comments

Question:WAP in c using all 32 keyword available in ANSCII
solution
#include stdio.h>
#include stdlib.h>
const signed sub = 5;
typedef enum number {student1, student2, student3};
union Job {
unsigned int Tyear;
volatile int Lyear;
} T;
extern float grade=3.0;
struct
{
char...
check whether triangle is equilateral, scalene or isosceles
Posted on April 29, 2021by HI_TECH SK with No comments
check whether triangle is equilateral, scalene or isosce...
Menu-driven Calculator
Posted on April 29, 2021by HI_TECH SK with No comments
Menu-driven Calcula...
program to read marks of three subjects and show the division
Posted on April 28, 2021by HI_TECH SK with No comments
&nb...
PatternPrinting-3
Posted on April 28, 2021by HI_TECH SK with No comments
Patte...
Write a Program to determine eligibility of an applicant for teacher interview using the criteria shown in table below. The program should ask the name and gender of the applicant and display the results as “Congratulation Mr. or Ms. XXX, you are eligible for the interview” or “Sorry Mr. or Ms. XXX, you are not eligible for the interview”. Mr. or Ms. is displayed according to the gender provided by the user and XXX is the name entered from user keyboard
Posted on April 28, 2021by HI_TECH SK with No comments
&nb...
WAP in Java Using all the concepts of OOP, Exception handling and Packages -II
Posted on April 27, 2021by HI_TECH SK with No comments

Aim:To make a simple java project for shoe shop using all the concept of OPPS,Exception handling and packages
Background:HI-TECH SHOE SHOP is a project made to help people buy shoes. This project was done to enhance my java programming skills and develop further knownledge on the concepts of OOPS,Exception...
Write a program to do the following task:
A. Asks a student if he/she is full-time or part-time.
B. If the student is full-time, the program will ask for the student's major and print the input for major followed by "is a good major" to the screen. If the student is not full-time, the program will ask the student how many credits he/she is taking. If the student is taking more than 6 credits, the program will print "That is a lot for a part-time student" to the screen. If the student is taking 6 or less credits, the program will print "That is nice" to the screen.
Posted on April 27, 2021by HI_TECH SK with 1 comment
&nb...
Program to accept the height of a person in centimeter and categorize the person according to their height using the following information
Posted on April 27, 2021by HI_TECH SK with No comments
&nb...
Structure in C-1
Posted on April 26, 2021by HI_TECH SK with 1 comment

Question: Write a program in C using struct for displaying results in order for 3 students.The program used include name,marks in 6 subjects,total and average. it should print result in table form
#include <stdio.h>
#include <stdlib.h>
struct
{
char fn[12],ln[8];
int sn,cpl,che,mat,egp,phy,acs,t;
...
WAP in Java Using all the concepts of OOP,Exception handling and Packages -I
Posted on April 24, 2021by HI_TECH SK with 1 comment

(adsbygoogle = window.adsbygoogle || []).push({});
Aim: To create a program to allow people to register for credit management system and print their
information and prompt user to register for the program.
Background:
Credit management system program is made to help people register...
Subscribe to:
Posts (Atom)