Check if the letter is vowel or consonant

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

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

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));...

Paper Measurement(Convert ream to sheets)

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

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)

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)

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); ...

What is Electronics?

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

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

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...

Difference between Method Overloading and Method Overriding

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

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...

Digital Technology

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...

Programs using Recursive Function

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:...

Computer and its generations

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...

C program using all 32 keywords available in ANSCII

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...
Posted in

WAP in Java Using all the concepts of OOP, Exception handling and Packages -II

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.

&nb...

Structure in C-1

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; ...
Posted in

WAP in Java Using all the concepts of OOP,Exception handling and Packages -I

(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...