SAMIR UDDIN

Hello guys welcome to my web blog ,my very special blog gives you latest technical knowledges and I want to proviod you quality and short posts .If you need any type of posts please tell me in comment section,If anybody have some questions related to my posts please tell me at https://www.samirmd.blogspot.com https://www.youtube.com/channel/UC4k3h0R2H8HVSQqAbuYY27Q https://www.facebook.com/mdsamir.shaikh.948

Latest Tweets

LightBlog
Responsive Ads Here

Monday, September 25, 2017

Type Conversion

Type conversion is done when the expression has variables of different data types
§Type conversion is used to convert a type of a variable into another data types.
§There are two types of Type conversion in Computer programming..
§Implicit is a type conversion in which is done automatically during program execution  according
to hierarchy of data types as shown in the figure.
     Long double
           
       Double
           
        Float
          
Unsigned Long int
           
     Long int
         
Unsigned int
     ⬇
     Char
§Examples              float f;                                 float salary=15000.0
 float x;                    int I;                                             int sal
Int y=3;                    f=I;                                               sal=salar y
  

Typecasting

§It is a type of explicit /forced  conversion in which value of
higher data type is converted into the value of lower data type
lower data types.
§This  typecasting is under the programmer’s control and not
under the compiler’s control.
Example
#include<stdio.h>
int main() 
{ 
  float f,int i;
  printf(\nEnter the floating point number:  );
  scanf(%f,&f);
  i=(int)f;
  printf(\n %d,f, i);
  return 0;
}
Output    Enter the floating point number:3.76
               The integer variant of %f is =3
                             
Long double
  

Friday, August 18, 2017

Features Of Java

ØSimple
ØObject Oriented Language
ØDistributed
ØInterpreted
ØRobust
ØSecure
ØPortable
ØMulti-Threaded
ØGarbage Collector

ØSimple
Java Programming is simple to understand because OPP(Object Oriented Programming) is 100%
applicable in Java programming language.

ØObject Oriented Language
Object oriented programming is a methodology in which programs using objects and classes every problems treated as an entity which makes program designing easier.
ØDistributed
Java allows to distributes their objects from one machine to another machine because it is platform
independent language that you can able to run java program online.
ØInterpreted
Java is a interpreted programming language because basically it runs through interpreter.
ØRobust
Java programming gives the feature of fault tolerance.e(Java program design to handle any real life
situation.
ØSecure
There are lots of resion that makes Java is very secure programming language it doesn't have any
traditional pointer concept like C programming so, it is not possible to access any memory location in
Java and it save your data.It i.a a big reason that nowadays every money transaction related works is
doing through Java programming application.

Java code runs through any system through some modification or no modification.

We can able to  runs two or more  Java codes parallaly or simultaneously which is independent to
each other.  

ØGarbage Collector

Java has a garbage collector to release or remove unusable memory blocks which prevents the space
complexity of a program.Must Watch

Saturday, August 12, 2017

Java – Overview

ØJava is a high-level programming language originally developed
as a project which leaded by  James Gosling and his team members
 Patrick  Noughton ,Chris Warth,Ed Frank and Mike Sheridan at Sun
  Micro systems  and released in 1995. Java runs on a variety of
  platforms,    such as Windows, Mac OS, and the various
versions of UNIX.
  
ØJava language initially called ‘Oak’ but was renamed “Java” in 1995.
ØIn 2010 java acquire by the Oracle Corporation for  US$7.4billion.

ØTypes of Java
ØJava SE(Core Java)
ØJava EE/2E (Advanced Java)
ØJava ME (Micro edition for mobile application)



Application of Java Programming
















Saturday, August 5, 2017

How To Make gif Gift for Sharing Your Friends By Youtube

1.Open the youtube search any videos and in link of that youtube page youb just type gif before the youtube like


2.After that you may go to another page and you can set the time in which you want a gif.
























3.In next step your gif will prepare and you can dowload the gif for sharing it to your friends.

















Friday, August 4, 2017

Variable & Constant

Variable
§A variable is nothing but a name given to a storage area that our programs can manipulate. Each variable in C has a specific  data type, which determines the size of the variable's memory.
§A variable is an entity that does change.
 Numeric VariableàUsed to stores either integer values or character  values. 
 Character Variableà Used to stores Alphabet or ASCII values.
§A variable cannot be type void.  
  int a    10
*Here int is a data type of variable a whose constant value is 10       
Constant   
§A constant is an identifier   whose value doesn't change during execution of program. 
§Numeric Integer
§IntegeràSequence of digits            //23 , 102 , 154 etc…
§Real    Ã A floating point type or fractional values.     // 3.7 , 6.45 , 34.65 etc… 
Character Integer 
§Singleà     ‘a’  ‘d’  ‘g’  ‘C’ etc….
§Stringà     “samir”   “Uddin”  
§Declaring Constant
§Count float pi=3.14                       
               C Programming Made Easy                                                                                                              


  
Operators in C Programming

Arithmetic operators

 Multiply(*)
 Divide(/)
 Addition(+)
 Subtraction(-)
 Modulus(%)

Relational operator

Less than(<)
Greater than(>)
Less than equal to(<=)
Greater than equal to(>=)

Equality operator 

Equal to(==)
Not equal to(!=)

Logical operator

Logical AND (&&) 
Logical OR (||)

Unary operator


Increment operator (++)   ,  Decrement operator  (--)
Eg/    x=i++=i+1                                    x=x--=x-1  
let i=5                                        let i=5
i++=i+1=5+1=6                           i--=i-1=5-1=4

Conditional operator


exp 1 ? exp 2 : exp 3

         eg/   Large=(a>b) ? a : b    //like a if-else condition

Assignment  operator

eg/  int x
  x=10;
  x=3,y=2;
  sum=x + y;      //x=5

Sizeof  operator

 Eg /   int a=10
                result= sizeof (a) ;     //result =2 byte

Bitwise operator

§Perform operation at the bit level like bitwise OR,bitwise AND,bitwise XOR etc
Eg   10101010   10101010=11111111

Keywords & Data Types
Keywords
§It is set of reserved words .
§It is basically  a sequence of characters that have a fixed meaning.
§There are 32 keywords are present in C programming.

Eg/    auto,break,continue,case ,default,if ,else,double,enum,goto,long return,union,static,signed,unsigned,switch and void etc….  
Data type
§int-àIt is used to store integer data type. Eg/  2,4,10….
§Floatà It is used to store floating data type. eg/ 0.5, 1.45….
§Char-à It is used to store set of strings or character data type  eg/ a,b,c…z



  User Defined Data Type
    §typedef: used to rename a data type
       eg/ typedef  int  integer-à  Can use integer to declare an int
   §enum, struct, union etc are some more data types.

Errors in C Programming

   §Compilation error
 Compiler generally gives the line number at which the error is present.
§Run Time
C programs are sequential making the debugging easier.




Thursday, August 3, 2017

How to capture/record your laptop or pc screen free using software

There are lots of software which provide us screen recording feature like "Microsoft Expression Encoder4,Filmora,camptesia etc.

Steps to download and install Microsoft Expression Encoder4 and record the screen

1.Firstly you should go to google chrome or Mozilla FireFox and search for Microsoft Expression Encoder4.


2.After the downloading you can install it and open the file then you may seen a small tab and make some basic setting for recording .






3.After you can  click on record button and record laptop screen according to your needs.  

  
           



4.after recording you can stop the recording by choosing the desktop botton.              




  5.After stop recording a small tab will appears and then you should go to "send to encoder .




                



6.After open the encoder software you may manage some settings and click on file then go to the encode the video







7.Encoding  may takes some time after that you can go your default directory or where you saved the project.







8.This video is very helpful for you you must watch this...    
   












                                                              YouTube knowledge