Skip to main content

Private Policy

Private Policy


Following information disclosed by the authorities mention the policies according to this blog and its relative pages. Your are requested to go through this page and let us know if there is any query.

This private policy surely isn't targeting to mock any student or any other individual, neither it is targeting any organisation or any other industrial figure likely.

Material Privacy


All data relevant to any student or other individual is totally open source to them regardless of their usage and manipulation. All stuff present on this blog is surely designed for students specially so they are free to use it as they like to or probably want to.

Do we use Cookies?


Nope!!.
But one thing, Some advertising partners like google adsense might be use them on their part.

Do we require any information?


Basically since this is a tech blog and all the material available here is of student concerns therefore we don't require any kind of information besides cuz of this edge visitors won't need to take any useless steps.

Safety of information!


Sure we only collect your information for providing you the best experience through our responsive replies through our mails. Our authorities will be directing the mails inch by inch that's why there no violation of your personal information.

Popular posts from this blog

Variables

Variables You may have been using variables and constants in since your 3rd grade. In any programming language same concept of variables is used which covers more than half of your code. Now is you have worked in C++ or Java or Python or any other programming language you may have used variables. If you are new to programming and you have started with C# its totally OK because you don't need any degree to learn programming. Now what are the variables, to be precise variables are the empty shells which can be filled to their limit and their value can variate with the passage of time as required and manipulated on desire.  Their are few types of variables: Types Examples Integral Types stype, byte, short, ushort, int, unit, long, ulong and char Floating Point Types Floating and Double Decimal Types Decimal Boolean Types True or False value, as assigned Nullable Types Nullable Data Types Declaration Moving on we have some rules for decl...
Theory of Automata Assignment #2 Part #2 Regular Expression # 6 The set of strings over {a,b} that contain at least two a's or exactly two b's. (a+b)*(a)(b*)a(a+b)*+a*b(a*)b(a*) Regular Expression # 7 The set of strings over {a,b} that contain even length but not multiple of 3 (aa*)(aaa^) Regular Expression # 8 The language over {a,b}contains exactly one double letter.   (ε + b)(ab) ∗aa(ba) ∗(ε + b) + (ε + a)(ba) ∗ bb(ab) ∗(ε + a)

Software Engineering Week 1

Software Engineering  Software engineering is an engineering discipline that concerns to all aspects of software development and software production. Mentioned above is the typical definition of software engineering that should develop a mind setup of a student who is wiling to learn development of software. Now when we talk about development of software, its life cycle pops into our minds which is being taught in almost every educational institution.  SDLC SDLC (Software Development Life Cycle) is the basic and core concept of Software Engineering. SDLC include few steps that should be followed strictly in order to develop a software. Most common terms used for those steps are: Analysis Designing Coding Testing Deployment and Maintenance   These steps are followed to develop a software. Firstly we should know what is a computer software. A computer software is nothing but computer program and associated documentation. Difference betw...