What if you want to store multiple values of same or different types in single variable in Python? For this Python provides container data type called List. List are ordered…
© Study Trigger. All Rights Reserved
What if you want to store multiple values of same or different types in single variable in Python? For this Python provides container data type called List. List are ordered…
Executing a program written in C-Language involves a series of steps. These are : Creating a Program : For creating a C-Program, you can use any editor (Dev C++, Turbo…
C is one of the most widely used programming languages in the world, known for its efficiency and versatility. However, for beginners, the syntax and structure of C-programs can be…
Now, it’s the time to execute the code on Decision Base, i.e. Computer will decide on the basis of certain conditions that which block will be executed. Many a times…
Now, it’s the time to give orders to the machine (system). But the question is How? Here, comes the Programming language to the rescue. First you have to write instructions…
Storage is the basic concept when we deal with any devices, technologies or any programming language. We always looking for storage. In Programing language, you want to store a lot…
Whenever somebody talks about Operators, our mind always stuck at Addition (+), Multiplication (*) and other operators. But can anyone thinks that “What is Operator”, how can you define “Operator”? …
Program : Write a program to accept two numbers from user and add them with or without using third variable. Solution I : Add two numbers using third variable (ans)…
As you know sorting is a technique by which we can arrange elements either in ascending order or descending order. We have a lot of sorting techniques like Selection, Bubble,…
What is Program? As we know that Program is a set of instructions which perform a particular task. Now, you can write these instructions with the help of tokens, letters,…