Program for Find Char and ASCII codes
//this is create is Dev editor
Program for Find Char and ASCII codes in C++
Program for Find Char and ASCII codes in C++
Using 2D array in Java get 3 subject mark and give result total student are 10
// Using 2D array in Java get 3 subject mark and give result total student are 10
// keep visit for more updates
package ahsan;
import java.util.Scanner;
public class Ahsan {
public static void main(String[] args) {
Scanner obj=new Scanner(System.in);
int sum=0, per=0;
int arry [][]= new int [10][3];
for(int r=0; r<10; r++)
{
System.out.print("\t"+(r+1)+" Student :\n");
for(int c=0; c<3; c++)
{
System.out.print("\t"+(c+1)+" Subject Marks :");
arry[r][c]=obj.nextInt();
sum+=arry[r][c];
}
System.out.println("Total is :"+sum);
per=sum*100/300;
System.out.println("Percenstage is :"+per );
if (per >=80)
{System.out.println(" A Grade");}
else if (per >=65)
{System.out.println("B Grade");}
else if (per >= 50)
{System.out.println("C Grade");}
else if (per >=40)
{System.out.println("D Grade");}
else
{System.out.println("Fail");}
sum=0;
per=0;
}
}
}
Output of this Program this is continue Run 10 times.
// keep visit for more updates
package ahsan;
import java.util.Scanner;
public class Ahsan {
public static void main(String[] args) {
Scanner obj=new Scanner(System.in);
int sum=0, per=0;
int arry [][]= new int [10][3];
for(int r=0; r<10; r++)
{
System.out.print("\t"+(r+1)+" Student :\n");
for(int c=0; c<3; c++)
{
System.out.print("\t"+(c+1)+" Subject Marks :");
arry[r][c]=obj.nextInt();
sum+=arry[r][c];
}
System.out.println("Total is :"+sum);
per=sum*100/300;
System.out.println("Percenstage is :"+per );
if (per >=80)
{System.out.println(" A Grade");}
else if (per >=65)
{System.out.println("B Grade");}
else if (per >= 50)
{System.out.println("C Grade");}
else if (per >=40)
{System.out.println("D Grade");}
else
{System.out.println("Fail");}
sum=0;
per=0;
}
}
}
Output of this Program this is continue Run 10 times.
Simple java Input, get number form user and provide table of that number
// Simple java Input
// get number form user and provide table of that number.
package ahsan;
import java.util.Scanner;
public class Ahsan {
public static void main(String []arg){
Scanner obj= new Scanner(System.in);
int a,b;
int ch;
do{System.out.print("Enter Your Number want to
see Table of that number\n");
ch=obj.nextInt();
System.out.println("Table of "+ch+" is :");
for(int i=1; i<11; i++)
{
System.out.println(i+"\t"+ch+"\t"+(i*ch));
}}while(ch!=0);
}
}
Output of this program.
// get number form user and provide table of that number.
package ahsan;
import java.util.Scanner;
public class Ahsan {
public static void main(String []arg){
Scanner obj= new Scanner(System.in);
int a,b;
int ch;
do{System.out.print("Enter Your Number want to
ch=obj.nextInt();
System.out.println("Table of "+ch+" is :");
for(int i=1; i<11; i++)
{
System.out.println(i+"\t"+ch+"\t"+(i*ch));
}}while(ch!=0);
}
}
Output of this program.
Calculator with GUI in Java
Calculator with GUI in Java
You must save file as CalculatorPanel.Java
thank you keep visiting for more updates
/*
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication29;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
// A panel with calculator buttons and a result display
public class CalculatorPanel extends JPanel {
private JButton display;
private JPanel panel;
private double result;
private String lastCommand;
private boolean start;
public static void main(String[] args) {
CalculatorPanel cp = new CalculatorPanel();
}
public JFrame frame ;
public CalculatorPanel(){
setLayout(new BorderLayout());
result = 0;
lastCommand = "=";
start = true;
// add the display
display = new JButton("0");
display.setEnabled(false);
add(display, BorderLayout.NORTH);
ActionListener insert = new InsertAction();
ActionListener command = new CommandAction();
frame = new JFrame("calculator");
frame.add(this);
frame.setVisible(true);
//add the buttons in a 4 x 4 grid
panel = new JPanel();
panel.setLayout(new GridLayout(4, 4));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
addButton("7", insert);
addButton("8", insert);
addButton("9", insert);
addButton("/", command);
addButton("4", insert);
addButton("5", insert);
addButton("6", insert);
addButton("*", command);
addButton("1", insert);
addButton("2", insert);
addButton("3", insert);
addButton("-", command);
addButton("0", insert);
addButton(".", insert);
addButton("=", command);
addButton("+", command);
add(panel, BorderLayout.CENTER);
}
/**
* Adds a button to the center panel.
* @param label the button label.
* @param listener the button listener
*/
private void addButton(String label, ActionListener listener)
{
JButton button = new JButton(label);
button.addActionListener(listener);
panel.add(button);
}
/**
* This action insert the button action string to the end of the display text
*/
private class InsertAction implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
String input = event.getActionCommand();
if (start);
{
display.setText(" ");
start = false;
}
display.setText(display.getText() + input);
}
}
/**
* This action executes the command that the button action string denotes
*/
private class CommandAction implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
String command = event.getActionCommand();
if(start)
{
if (command.equals("_"))
{
display.setText(command);
start = false;
}
else lastCommand = command;
}
else
{
calculate(Double.parseDouble(display.getText()));
lastCommand = command;
start = true;
}
}
}
/**
* Carries out the pending calculation.
* @param X the value to be accumalated with the prior result
*/
public void calculate(double x)
{
if(lastCommand.equals("+")) result += x;
else if(lastCommand.equals("-")) result -= x;
else if(lastCommand.equals("*")) result *= x;
else if(lastCommand.equals("/")) result /= x;
else if(lastCommand.equals("=")) result = x;
display.setText("" + result);
}
}
You Tube Now Working in Pakistan
Very good new for Pakistan internet users that is now You Tube is open.
Don't need to open from unblocked website.
you should put https:// before typing youtube site.
thank you keep share with your friends.
https://www.youtube.com
soomroforu.com
soomro4u.com :)
Don't need to open from unblocked website.
you should put https:// before typing youtube site.
thank you keep share with your friends.
https://www.youtube.com
soomroforu.com
soomro4u.com :)
2D Array in Java Simple Program
// 2D array Program numbers in table form.
//Java 2D Array
package assignment6;
public class Assignment6 {
public static void main(String[] args) {
int array[][]={{2,4,6,8,10},{3,5,7,9,11},{4,6,8,10,12},{5,7,9,11,13}};
for(int r=0; r<4; r++)
{
for(int c=0; c<5; c++)
{
System.out.print(array[r][c]+"\t");
}
System.out.println();
}
}
}
//Java 2D Array
package assignment6;
public class Assignment6 {
public static void main(String[] args) {
int array[][]={{2,4,6,8,10},{3,5,7,9,11},{4,6,8,10,12},{5,7,9,11,13}};
for(int r=0; r<4; r++)
{
for(int c=0; c<5; c++)
{
System.out.print(array[r][c]+"\t");
}
System.out.println();
}
}
}
Output
2D array in Java programming output.
بڑا دشمن بنا پھرتا جو بچوں سے لڑتا ہے!
بڑا دشمن بنا پھرتا جو بچوں سے لڑتا ہے!
میں ایسی قوم سے ہوں جس کے وہ بچوں سے ڈرتا ہے
“They tried to bury us. They didn’t know we were seeds
Bara Dushman bana phirta hy jo bacho se larta hy
#AttackSchool :(
Features of Java
Features of Java
java features:
- Features of Java
- Simple
- Object-Oriented
- Platform Independent
- secured
- Robust
- Architecture Neutral
- Portable
- High Performance
- Distributed
- Multi-threaded
There is given many features of java. They are also known as java buzzwords. The Java Features given below are simple and easy to understand.
- Simple
- Object-Oriented
- Platform independent
- Secured
- Robust
- Architecture neutral
- Portable
- Dynamic
- Interpreted
- High Performance
- Multithreaded
- Distributed
Simple
| According to Sun, Java language is simple because: |
| syntax is based on C++ (so easier for programmers to learn it after C++). |
| removed many confusing and/or rarely-used features e.g., explicit pointers, operator overloading etc. |
| No need to remove unreferenced objects because there is Automatic Garbage Collection in java. |
Object-oriented
| Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behaviour. |
| Object-oriented programming(OOPs) is a methodology that simplify software development and maintenance by providing some rules. |
| Basic concepts of OOPs are: |
|
Platform Independent
A platform is the hardware or software environment in which a program runs. There are two types of platforms software-based and hardware-based. Java provides software-based platform. The Java platform differs from most other platforms in the sense that it's a software-based platform that runs on top of other hardware-based platforms.It has two components:
|
Secured
| Java is secured because: |
|
|
| These security are provided by java language. Some security can also be provided by application developer through SSL,JAAS,cryptography etc. |
Robust
| Robust simply means strong. Java uses strong memory management. There are lack of pointers that avoids security problem. There is automatic garbage collection in java. There is exception handling and type checking mechanism in java. All these points makes java robust. |
Architecture-neutral
| There is no implementation dependent features e.g. size of primitive types is set. |
Portable
| We may carry the java bytecode to any platform. |
High-performance
| Java is faster than traditional interpretation since byte code is "close" to native code still somewhat slower than a compiled language (e.g., C++) |
Distributed
| We can create distributed applications in java. RMI and EJB are used for creating distributed applications. We may access files by calling the methods from any machine on the internet. |
Multi-threaded
A thread is like a separate program, executing concurrently. We can write Java programs that deal with many tasks at once by defining multiple threads. The main advantage of multi-threading is that it shares the same memory. Threads are important for multi-media, Web applications etc.
Dialog box in Java
//File must Save as Abox.java
//just run this program and enjoy :)
//for more keep visiting this blog thanks
package Aboc;
import javax.swing.JOptionPane;
public class Abox
{
public static void main(String[] args)
{
JOptionPane.showMessageDialog(null, "Hi This is Ahsan DOn't Fogate to"
+ " Follow to get more update");
}
}
Output of this program is:
//just run this program and enjoy :)
//for more keep visiting this blog thanks
package Aboc;
import javax.swing.JOptionPane;
public class Abox
{
public static void main(String[] args)
{
JOptionPane.showMessageDialog(null, "Hi This is Ahsan DOn't Fogate to"
+ " Follow to get more update");
}
}
Output of this program is:
C++, how to find character by ASCII or UNI code,
C++, how to find character by ASCII or UNI code, in c++
What is TQM? Total Quality Management?
TQM?
Total
Quality Management (TQM) is an enhancement to the traditional way of doing
business. It is a proven technique to guarantee survival in world-class
competition. Only by changing the action of management will the culture and
actions of an entire organization be transformed. TQM is for the most part
common sense. Analyzing the three words, we have
Total: Made up of the whole.
Quality: Degree of excellence a
product or service provides.
Management: Act, art, or manner of
handling, controlling, directing, etc.
Therefore,
TQM is the art of managing the whole to achieve excellence. The Golden Rule is
simple but effective way to explain it: Do unto others as you would have them
do unto you.
In early
days the business system is “Product-Oriented” but now its change into “Customer-oriented”.
Basic
Approach:
TQM requires
six basic concepts:
1. A committed and
involved management to provide long-term top-to-bottom organizational support.
2. An unwavering
focus on the customer, both internally and externally.
3. Effective
involvement and utilization of the entire work force.
4. Continuous
improvement of the business and production process.
5. Treating
suppliers as partners.
6. Establish
performance measures for the processes.
Benefits of TQM
References:
Total Quality Management (REVISED THIRD EDITION)
BY: Dale H. Besterfield, Glen H. Besterfield, Hemant Urdhwareshe.
Benefits of TQM
The benefits
of TQM are improved quality, employee participation, teamwork, working
relationships, customer satisfaction, employee satisfaction, productivity,
communication, profitability, and market share.
References:
Total Quality Management (REVISED THIRD EDITION)
BY: Dale H. Besterfield, Glen H. Besterfield, Hemant Urdhwareshe.
3 Years Old Little Baby Singing Sun Rha He Na To Ro Rhi Ho So Cute
3 Years Old Little Baby Singing Sun Rha He Na To Ro Rhi Ho So Cut
how to write research report : "Controlling A Robotic Vehicle by TV remote"
Controlling A
Robotic Vehicle
By TV remote
By:
Thriller Group
Serial No
|
Name
|
E-mail Address
|
Roll No
|
1
|
ShahanshahVighio
|
shehanshahvighio@yahoo.com
|
2K14-I.T-79
|
2
|
Ahsan Ali Soomro
|
aahsansoomro@gmail.com
|
2K14-I.T-07
|
3
|
MaulaBuxVighio
|
-------------------------------
|
2K14-I.T-36
|
Acronyms
IR
sensor: A sensor which can sense infrared rays.
DTMF:
DTMF
or Dual tone multi frequency is a signaling system which uses a combination of
two frequency tones to represent a key pressed on the keyboard of any cell
phone.
RC5: An IC which uses key
encryption and decryption as well as key expansion
TSOP:
TSOP
(Thin Small Outline Package) is an IC package, which acts like a receiver for
receiving the coded IR signals.
Abstract
The world has been
very fast in technology since last few years. In first many wired systems are
used for transferring data or single, any wired system required a wire for
transferring singles. As the world going fast in technology, in 1992 the
infrared release, than Bluetooth, and FM radio this system is use for high
frequency and finally a good improvement in technology, a wireless technology
is released in which data can be transferred and shared wirelessly such as
Wi-Fi system, now days this technology is being used everywhere. Modern countries
have free Wi-Fi in their country everyone access Wi-Fi from everywhere, wireless
technology has been really important in our daily life and is playing such a
good role.
There are many things which
can be implemented using wireless technology. So, having wireless technology
this research report on a project named controlling robotic vehicle by TV
remote. This project is a simple example of wireless technology. This research
report about controlling robotic vehicle by TV remote, how the vehicle is working
by a TV remote and remote will control every movement of vehicle using an 8051
microcontroller, IR sensor and TV remote to vehicle responsive, these things
discuses in this research report.
Introduction
This project is created to control a robotic
vehicle using a regular TV remote. Basically this project is a good for
controlling a device by any other type of controlling device just like TV
remote or Any Mobile phone. This project work by TV remote transferring signals
to the robotic vehicle, when the instructions given from remote, robotic
vehicle accepts the signals and perform the work what instructions are saying, This
process is done using infrared system. Vehicle is a small robot which work with
the TV remote and we do lot of our small works from this technology.
An IR sensor is fitted to the control unit of
the robot for receiving IR signals sent out by the remote. Instructions given
by remote are understood by the microcontroller and it moves the robot as
instructed by remote for example forward, backward, left and right. An 8051
series microcontroller is used in this project for controlling the device. An
RC5-based implied information sent from the TV remote is received by the IR
receiver interfaced to the microcontroller. The microcontroller program refers
to the RC5 code to produce relevant output based on the input data to activate
motors through a motor-driver IC, as motors are interfaced to the control unit
through the motor-driver IC.
Hardware Requirements
1.
IR Sensors
2.
8051 Series
Microcontroller
3.
DC Motors
4.
Motor driver
IC
5.
Crystal
6.
Resistors
7.
Capacitors
8.
Voltage
Regulator
9.
Battery
10. Robot Body
Advantages
i)
You can carry very
small loads by this.
ii)
It may be used as
a toy for children.
iii)
You can do your
some works from this.
Disadvantages
i)
It will stop
working if any object interrupts the IR signals.
ii)
It will not
work from too far.
iii)
It costs a
good price.
Future Work
Additionally, this mission can
be improved by DTMF technology. With this technology, one can have power over
robotic vehicle using one's cell phone. Not only can this but by improvements
in hardware such as a light bodyand implemented hardware convert this project
into controlling robotic helicopter (small drone) by TV remote.
References:
Subscribe to:
Posts
(
Atom
)
