Let us C part III

Which bit wise operator is suitable for turning OFF a particular bit in a number?   Bitwise AND operator (&), one’s complement operator(~)   Example: To unset the 4th bit of byte_data or to turn off a particular bit in a number.   Explanation: consider, char byte_data= 0b00010111; byte_data= (byte_data)&(~(1<<4));   EXPLANATION: 1 can be [...]

Read this article…

Let’s C part II

What is scope & storage allocation of static, local and register variables? Explain with an example.   Register variables: belong to the register storage class and are stored in the CPU registers. The scope of the register variables is local to the block in which the variables are defined. The variables which are used for [...]

Read this article…

Let us C

Learn the following… Do you know what a pointer in c is? A pointer is a special type of variable in C. Pointer Is used to store address of any other variable or function. Pointer variables unlike ordinary variables cannot be operated with all the arithmetic operations such as ‘*’, ‘%’ operators. It follows a [...]

Read this article…

Lets begin C#

C-sharp Programming language Lets consider .NET programming languages The .NET Framework provides a set of tools that help you build code that works with the.NET Framework. Microsoft provides a set of languages that are already “.NET-compatible”. The languages and their compilers are…..     Language                                                                           Compiler VB                                                                              vbc.exe C#                                                                               csc.exe VC++                                                                         cl.exe F#                                                                                fsc.exe   In [...]

Read this article…

IIS server

Shall we configure IIS server on windows 7?             I hope you all know what is server? We can configure IIS on windows 7 with following simple steps. We want to notice one thing before configuring the server. The OS must be premium and above. Windows home basic and starter versions have limitations on server [...]

Read this article…

Very Simple Flash Animation !

Lets see how can we add simple animation to an object in flash. When you Adobe Flash software, you can see the options given below. Click on Action script 2.0 . Now you can see Untitled file there. From Properties window you  can change its properties like Size, FPS(Frame Per Second), Background(Stage) etc. Usually the [...]

Read this article…

Identifiers in C

Identifiers in C We already discussed about the token. I hope u all followed it. For bingers it is little tough I know if u have any doubt please contact me through mail. Then we are moving towards identifiers.             We all know what is identification?. In our daily life, The function of identification is [...]

Read this article…

Countries in our world

The Number of Countries in our World By Most Accounts, There Are 196 Countries in the World Afghanistan 42nd most populous and 41st largest nation in the world. The constitution of Afghanistan grants the president wide powers over military and legislative affairs, with a relatively weak national parliament. The Prime Minister of Afghanistan is a currently [...]

Read this article…

Importance facts and formulaes for Bank Test

Importance facts and formulaes for Bank Test Numeral : In Hindu Arabic system, we use ten symbols 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 called digits to represent any number.A group of digits, denoting a number is called a numeral. We represent a number, say 689745132 as shown below : Ten Crores [...]

Read this article…

What’s Linux Shell

What’s Linux Shell Computer understand the language of 0′s and 1′s called binary language, In early days of computing, instruction are provided using binary language, which is difficult for all of us, to read and write. So in O/s there is special program called Shell. Shell accepts your instruction or commands in English and translates [...]

Read this article…