Posts

Showing posts from June, 2021

5 practices to improve your Programming skills

Image
5 Practices to Improve Your Programming Skills Laptop on a desk Photo by Maxwell Nelson on Unsplash A programmer is a person who does the design and development of software systems. There are various sorts of programming careers: frontend development, backend development, full-stack development, embedded systems development, etc. Programmers usually work with different programming languages and markup languages. The expertise of each programmer depends on their skill sets. Therefore, they always try to enhance their skill sets by doing various activities. There are indeed unique ways to enhance a programmer’s skill set based on each field. For example, practicing to handle CSS better is great if you are doing frontend development. However, these different programming careers have a generic process known as the Software Development Life Cycle (SDLC). Therefore, there are indeed general practices for all types of programmers to improve their skill sets. I selected the full-st...

what is memory full detail

Image
  Memory is the electronic holding place for the instructions and data a computer needs to reach quickly. It's where information is stored for immediate use. Memory is one of the basic functions of a computer, because without it, a computer would not be able to function properly. Memory is also used by a computer's operating system, hardware and software. There are technically two types of computer memory: primary and secondary. The term  memory  is used as a synonym for  primary memory  or as an abbreviation for a specific type of primary memory called  random access memory ( RAM ).  This type of memory is located on microchips that are physically close to a computer's  microprocessor . If a computer's central processer ( CPU ) had to only use a secondary storage device, computers would become much slower. In general, the more memory (primary memory) a computing device has, the less frequently the computer must access instructions and data from s...

13 BEST C Programming Books for Beginners

Image
13 BEST C Programming Books for Beginners  C is a general-purpose programming language that is extremely popular, simple, and flexible. It is machine-independent, structured programming language which is used extensively in various applications Following is a curated list of Top C Programming books that should be part of any C developers library. 1) C Programming Absolute Beginner's Guide C Programming Absolute Beginner's Guide is a book written by Greg Perry and Dean Miller. This book teaches some basic concept of C language with clear and easy steps. The book explains the method to organize programs and work with variables, operators, I/O, pointers, functions, etc. This C book gave simple instructions which help you to create useful, reliable C code, from games to mobile apps.  Check Latest Price and User Reviews on Amazon 2) C Programming Language The C Programming Language (2nd Edition) written by Brain W. Kernighan is ideal for every serious programmer’s digit...

BEST GAMING KEYBOARD UNDER 2000 ONLY

Image
  Redgear Blaze Semi-Mechanical wired Gaming keyboard with 3 colour backlit, full aluminium body & Windows key lock for PC PRICE - 1200 Compatible Devices PC Colour Black Brand Redgear Special Feature Floating Key caps for Mechanical feel, Floating switch :- 45g trigger presure, 3 led color backlight, Aluminum structure, Windows key lock, 19 keys anti ghost Floating Key caps for Mechanical feel, Floating switch :- 45g trigger presure, 3 led color backlight, Aluminum structure, Windows key lock, 19 keys a…   See more Connector Type Wired About this item Semi-Mechanical Keyboard with Floating Key caps, greater durability and responsiveness. 3 Color mode for your gaming setup needs. Illuminated Keys : Yes 19 keys anti-ghost for your gamers and programmers Windows key-lock function to avoid in-game pop up

SMART PHONES UNDER 10000 ONLY

Image
  realme C11 (2021) (Cool Blue, 2GB RAM, 32GB Storage)  Brand Realme Colour Cool Blue OS Android Form factor Bar Memory Storage Capacity 32 GB About this item 2 GB RAM | 32 GB ROM | Expandable Upto 256 GB 16.51 cm (6.5 inch) LCD 8MP | 5MP Front Camera 5000 mAh Battery

CREATE A SNAKE GAME WITH PYTHON LANGUAGE

Image
  Create a Snake-Game using Turtle in Python A snake game is an   arcade maze game   which has been developed by Gremlin Industries and published by Sega in October 1976. It is considered to be a skillful game and has popularized among people for generations. The snake in the Snake game is controlled using the four direction buttons relative to the direction it is headed in. The player’s objective in the game is to achieve maximum points as possible by collecting food or fruits. The player loses once the snake hits the wall or hits itself. For the python beginners, those who are interested in making something easier in your domain can definitely try this out and the module  Turtle  was made exactly for this purpose for the beginners to try out and can also submit as a part of the project. This program will be done in  Python 3 . So, we will be creating a  Python-based-game  using the following modules: Turtle:  It is a pre-installed python li...