This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Variables in C Programming Language


Variables in C Programming Language 


Here in this post Variables in C Programming Language, we will learn about variables. Variables are the quantities which vary, in programming languages, variables are the entities which hold values in a program. In a program you can assign values to variables through assignments or through input statement of the language. Variables reserves space in memory.


Example : If you are writing a program for salary calculation, you have to declare a variable for storing the value of salary.


You can store value of salary into variable sal in both the ways( i.e. through assignment or using scanf statement of C language.

Through Assignment Statement :

Sal=50000;

Through scanf statement :

scanf("%d", &sal);


Desc Table in Oracle Example SQL


Desc Table in Oracle Example SQL


After Creating table, everyone wishes to see the structure of the table. In this post Desc Table in Oracle Example SQL, we will discuss how to view the structure of an existing table in SQL. 

 

To view the structure of an existing table in SQL, we have to use DESC Table Command. After supplying this command you can see the structure of the table.

 

General Syntax of DESC Table in Oracle 


Desc table-name;

 

Example : Suppose we wish to view the structure of student table, we have to write it as :

Desc student;



Oracle SQL Queries Interview Questions and Answers for Experienced



Oracle SQL Queries Interview Questions and Answers for Experienced


In this post we will discuss Oracle Sql Queries Interview Questions and Answers for Experienced. Queries part of Sql have more importance than any other part of Sql. So we have decided to publish the post Oracle Sql Queries Interview Questions and Answers for Experienced. We will discuss about Select from where clause, Use of like in sql example, Use of Between in Queries ,Use of Not Between , Use of Not Like in Queries in this post.


Queries are the most important part of any database system. We store records in database, so that we can use these records in future. This part of SQL is of much importance than other parts of SQL. In this part of SQL, the user learns to query database records. Before using queries, that tables must exist in database, for which you are going to write queries.



To query rows or records from database, the select from where clause is used.


Select from where clause




The General Syntax of Select From Where clause is as given below-




Select from where




Here Select is the keyword , after select we have to mention that columns of the database table, which are required in output. From is also a keyword , after keyword from we have to mention the name of the database table. Where is also a keyword , where is used to provide condition in queries. Where is optional , when there is no condition.




Example  Suppose the query is “Give records of all the employees”.

The SQL statement will  be like this:



Select * from employee;




This will list all the records of table employee.




This is basic of all the queries.



Let us take some more examples of queries




Query : Give name of all the employees.



Solution : Select ename from employee;



This will list the names of all the employees in employee table;






Query :Give name and city of all the employee.



Solution : select ename, ecity from employee;






Query : Give code, name and city of all the employee.



Solution : select ecode, ename ,ecity from employee;






Use of Where in queries





In select statements ,where is optional keyword. All the above queries were solved without where clause. But we can not do much without where clause. Where is useful for giving condition in select statement.


Suppose the query is “Give name of all the employees whose city is Melbourne “.


The select statement for the above query will be like this.

Select ename from employee where ecity =”Melbourne”;



Some more examples on queries





  • Give name of all the employees

  • Give name and salary of all the employees

  • Give code ,name and salary of all the employees whose salary is greater than 50000

  • Give code and name of all the employees whose city is Melbourne and salary is greater than 50000

  • Give code and name of all the employees whose salary is between 50000 and 60000

  • Give code and name of all the employees whose salary is not between 50000 and 60000

  • Give code and name of all the employees whose city starts from letter M

  • Give code and name of all the employees whose city does not start with letter M




Use of Between in Queries



Between is used in some particular type of queries. Between is used when we have to select records between two values. 


Suppose the query is “Give records of all the employees whose salary is between 50000 and 60000.



Solution :  Select * from employee where salary between 50000 and 60000;




Use of Not Between



Not Between is used in some how like between. 

Suppose the query is “ Give records of all the employees whose salary is not between 50000 and 60000.



Solution :  Select * from employee where salary not between 50000 and 60000;




Use of Like in Queries

Like is used for pattern matching in SQL.

Suppose the query is "Give name of all the employee whose name starts with capital letter 'A'

Solution : select ename from employee where ename like 'A%'

This will list names of all the employees whose name starts with capital letter 'A'. e.g. Anil, Amit etc.


Use of Not Like in Queries

Not like is complement of like. Suppose the query is to give name of all the employees whose name does not starts with capital letter 'A'


Solution : select ename from employee where ename not like 'A%'

This will list names of all the employees whose name does not starts with capital letter 'A'. e.g. Sunil, Vishal, Gagan etc.




Use of like in sql example

Use of Between in Queries

Use of Not Between

Use of Not Like in Queries











Data Types in C Language with Examples

Data Types in C Language with Examples


C language is enriched in data types. Let us discuss them one by one.

int


int data type is for declaring a variable's data type as integer type.

Suppose you wants to store number of items in a variable, as all of us know count of items is always in integer form, i.e. no decimal part. We can declare such variable as int type.

Example
int qty;
float
float data type is for declaring a variable's data type as real.
char


char data type is for declaring a variable's data type as character type.

programming language c main program kaise likhte hain


Programming Language C main Program Kaise Likhte Hain


प्रोग्रामिंग लॅंग्वेज सी में प्रोग्राम कैसे लिखते हैं


इस पोस्ट में हम सी लॅंग्वेज का प्रोग्राम स्ट्रक्चर डिसकस करेंगें !

सबसे पहले हम    main( )      लिखतें हैं
उसके बाद ओपनिंग कर्ली ब्रकेट्स { लगते हैं
उसके बाद variable declare  करते हैं
उसके बाद प्रोग्राम का लॉजिक लगाते हैं
और अंत में क्लोसिंग कर्ली ब्रॅकेट्स } लगते हैं 


main()
{
variable declaration part
Body of program
}

Top 5 Best Benefits of Green Tea in Hindi


Top 5 Best Benefits of Green Tea in Hindi




In this post Top 5 Best Benefits of Green Tea in Hindi we will list benefits of Green Tea. Top 5 Best Benefits of Green Tea in Hindi post is beneficial for all. All of us know green tea is getting famous because its health benefits. We have started this post in hindi to make it more useful for those who likes to read in hindi









Top 101 Best Benefits of Green Tea in Hindi 1

Top 5 Best Benefits of Green Tea in Hindi

ग्रीन टी के फ़ायदे





ग्रीन टी वजन कम करने में सहायक होती है !



ग्रीन टी हार्ट के लिए बहुत ही लाभदायक है !



ग्रीन टी कोलेस्ट्रॉल का लेवेल सही रखने मे भी लाभदायक है !



ग्रीन टी आंटीयाक्सिडंट्स से भरपूर होती है, इसका लगातार सेवन करने से आयु संबंदित प्रॉब्लम्स मे लाभ होता है !







PHP Keywords with Examples


  PHP Keywords with Examples


Keywords are the reserve words of a language. You can use a keyword for its defined purpose only. PHP is enriched in Keywords. All the keywords in PHP have some predefined meaning. You can not use this keywords other than their defined purposes.











php Keywords 1
php Keywords














php Keywords 1
php Keywords


Php Tutorial For Beginners With Examples Pdf Free Ebook


           Php Tutorial For Beginners With Examples Pdf Free  Ebook


Introduction to PHP



Variables in PHP

Constants in PHP

Rules for Variable Names in PHP

Adding Comments in PHP

Storing Values to Variables in PHP

Operators of PHP

Arithmetic Operators of PHP

Relational Operators of PHP

Logical Operators of PHP

Conditional Operators of PHP

Data types of PHP




Control Statements of PHP

If Statement of PHP

If - Else Statement of PHP
Nested Loop of PHP

Switch Case Statement of PHP

Looping in PHP

For Loop of PHP

While Loop of PHP

Do While Loop of PHP

Nested Loops of PHP

  
Arrays

Concept of Arrays in PHP
Types of Arrays in PHP
One Dimensional Arrays in PHP
Two Dimensional Arrays in PHP
Associative Arrays in PHP

Strings


String Functions of PHP


Functions

Concept of Functions in PHP
Library Functions of PHP
User Defined Functions in PHP
Recursion
Call by Value 
Call by Reference
Return Statement
Forms
MySQL





C Language Keywords with Examples


C Language Keywords with Examples


Keywords are the reserve words of a language. You can use a keyword for its defined purpose only. There are 32 keywords in C language. All the keywords in C language have some predefined meaning. You can not use this keywords other than their defined purposes.











C Language Keywords 1
C Language Keywords


C Language Keywords 


auto

break

continue

for

while

do

if











C Language Keywords 1
C Language Keywords

else


struct

volatile

union

enum

extern

static

switch

case

typedef

goto 

int

float

char

double

long

unsigned

signed

const

default

register

short

return

sizeof

void


C Language Tutorial For Beginners With Examples Pdf


C Language Tutorial For Beginners With Examples Pdf


In this post " C Language Tutorial For Beginners With Examples Pdf " , we will learn different features of C language. " C Language Tutorial For Beginners With Examples Pdf " is beneficial for beginners as well as experienced.

C INTRODUCTION


History of C Language

Keywords

Data types

Variables

Constants

Rules for variable names

Operators in C language

Arithmetic Operator

Relational Operator

Logical Operator

Conditional Operator

Bit wise Operator

Incrementation Operator

Decrementation Operator

Input Statement 

Output Statement

Comments in C language

C Program Structure




CONTROL STATEMENTS


If statement

If - else statement

Nested If 

Switch Case Statement

Looping

For Loop

While Loop

Do While Loop

Nested Loop

ARRAYS


Need of Arrays
Types of Arrays

One Dimensional Array

Two Dimensional Array

FUNCTIONS


Need of Functions

Library Functions

User Defined Functions

Call By Value

Call By reference

Recursion

Difference Between Call By Value and Call By Reference

POINTERS


Need of Pointers

Pointer Operator

Pointer Arithmetic

Pointer to Functions

Pointer to Pointers

STRUCTURES


Need of Structures

Nested Structures
Array of Structures

UNIONS


Need of Unions 

Difference between Union and Structures

FILES


Need of Files

Types of Files

EOF function

Reading From a File

Writing to a File 

  

 






TOP 101 Vaastu Tips In Hindi for House , Bedroom , Child Room, Shop ,Office , Money


 TOP 101 Vaastu Tips In Hindi for House , Bedroom , Child Room, Shop , Office , Money


In this Post  TOP 101 Vastu Tips In Hindi for House , Bedroom , Child Room, Shop , Office , Money , we will list out 101 vastu tips. We will add two tips every week in this post.

Note : We are just suggesting the things , final decision is yours.

वास्तु के अनुसार कभी भी घर मे कबाड़ ना रखें !
As per Vaastu do not collect junk in your house hold.
बहुत पुरानी उपयोग में ना आने वाली वस्तुओं को घर में ना रखें !
Very old things that are not in use in today life as well as in future, do not keep them.
घर के अंदर काँटेदार पौधे ना लगाएँ, जैसे कॅक्टस, आलोवीरा इत्यादि !
Do not plant thorny plants inside the house like cactus or aloevera etc.
 टूटे हुए आईने इस्तेमाल कभी ना करें
Never use broken Mirrors at Home.

Top 101 Interview Questions and Answers of Workshop Technology (Mechanical Engineering ) Asked in Interviews and Exams for Freshers andExperienced


Top 101 Interview Questions and Answers of Workshop Technology  ( Mechanical Engineering ) Asked in Interviews and Exams for Freshers and Experienced 


Acoustics head
Sludge
Pinion
Feed rate
Vacuum Chamber
Honing
Wear resistance
Roughness
Lap
Abrasive coating belt
Bevel gear
Addendum
Hot rolling
Gear burnishing
Indexing
Electroplating
Channel Jig
Fixtures
Write the principal of ultrasonic machining
Write the application of electrochemical machining
What is mechanics of EDM
Describe galvanizing
Briefly discuss about enamels
What is the purpose of finishing surfaces
Describe internal honing
Which materials are used in lapping process
Explain super finishing
Write the application of buffing
What are advantage of helical gears
Write the advantage of jigs and fixtures
Explain principle of blow moulding
Write applications of metal spraying
What are oil base paints? Explain it
Explain polishing process in detail
Write principle , advantage and limitation of compression molding
Explain gear shaping process in detail
Explain wire process of metal spraying in detail
Describe different types of drilling jigs
Feed force
Second law of electrolysis
Gap voltage
Focusing coil
Rack
Polishing
Lay
Bonding material
Spur gear
Surface finish
Pitch circle
Gear shaving
Locating element
Metal spray
Plate jig
Tool depth
Profile height
Electro plating
Bushier
Name various modern machining processes
Write principle of electro chemical matching
Write EDM terminology
Discuss metal removing rates
Why do we need surface treatment
What are the advantage of organic coating
Explain one method of measuring surface roughness
What is manual honing
What is the purpose of lapping
Write applications of super finishing
Explain one gear finishing operation
Explain vacuum coating
Discuss various types of jigs
What are the advantages of injection moulding
Explain locating devices
Explain principle and working of laser beam machining with neat sketch
Describe the process of gear generation on the milling machine
Explain organic coating in detail
Describe in detail buffing process
Explain various clamping devices
Draw a neat sketch of a column & knee type milling machine.
Name any two materials of milling cutter.
Define indexing .
Define cutting speed in milling machine.
Give any two elements of grinding wheel.
Define the balancing of grinding wheel.
Name any two methods of grinding.
Name any two methods of gear manufacturing.
Define Gear shaping
Name any two types of gears.
Define electrical discharge machining.
Name any two non conventional methods of machining.
Name the dielectric fluid used in EDM.
Give any two applications of metal spraying.
Is electroplating a metal coating process?
Name any two process of surface finishing .
Give any two applications of lapping.
Give any two purpose of finishing surface.
Explain the principle of Buffing.
Explain with neat sketch the 'down milling'.
Explain with a neat sketch 'Form milling'.
Explain with neat sketch the principal of centre less grinder.
How can you specify grinding wheel?
Explain the principle of EDM.
Give the two advantages & two limitations of  ECM.
Explain the principle of powder process.
Give the applications of wire process.
Show with neat sketch the element of surface Roughness.
Explain with neat sketch the principle of lapping.
Sketch & describe a slot milling .
Why a coolant is used in Grinding work?
Explain the principle of  gear Hobbling.
Explain the construction & working of plain dividing head.
What is EDM? Explain its principle with help of suitable diagram.
Write short note on Polishing
Write short note on Buffing
Explain with neat sketch construction & working of a centre less Grinder .
Sketch & describe the following operations.
A)Side milling
B) Gear milling
Name the abrasive material used in ultrasonic machining
Name the dielectric fluid used in EDM
For which type of work, ECM is useful
What is composition of slurry use in USM
Which type of electrolyte is used in ESM
Name electrode materials used in EDM
Define the process og blow moulding
Define the rubber base organic coating
What is the purpose of finishing the gears
Differentiate in brief the process of buffing and polishing
Define locating devices
Difference between template jigs and plate jigs
What are the salient features if modern machining processes
What are the main advantages and industrial applications of ECM process
Describe gear shaving process of finishing the gear and how is it differ than gear  burnishing
Give the purpose of super finishing process and name of a few parts that are super finished
Give some uses and advantages of jigs and fixtures
Explain the process of electroplating
Explain with neat sketch the working principal , advantages , limitations and applications of compression moulding process
Explain with neat sketch the process of USM and give its applications
Explain briefly the principle of location with six degree of freedom for any work piece placed in jog or fixture
Define lapping tools
Define gear shaping
Define coating