While loop

What is While loop in Python?
  • A While loop in Python is used to execute a set of statements/ iterate over a block of code repeatedly as long as the given condition is true.
  • While loop is preferred when we don't know the number of iterations.
Syntax:
                    while condition:
                            body statements
  • The body statement of the while loop is separated from the rest of the code using indentation [tab].

For loop

What is For loop in Python?
  • A for loop in python has the ability to iterate over items of any sequence (List, tuple, string) or any other iterable objects.
  • Iterating over a sequence is called traversal.
Syntax:
                    for var in sequence:
                            body statements
    
  • Here, var is a variable that is used to take the next values from the sequence on every iteration until the end of the sequence is reached.

If, If...else, If...elif...else, Nested If

What is a selection statement in Python?
  • In some cases in programming, Our program has to decide whether the following block of codes needs to be executed or not, based on some conditions.
  • Such Decision making statements/selection statements decide the direction of the flow of program execution.
  • Decision making statements/selection statements available in Python are
        • if (Simple If)
        • if-else
        • else-if ladder
        • Nested if
  • In python, body statements inside the selection statement are indicated by the indentation. The very first unindented line marks the end of the selection statements.

Dictionaries in Python

What is Dictionary in python?
  • Dictionary is an unordered collection of data in the form of key-value pair.
  • The first element in the key-value pair is the key and the second element is the value.
  • Like list, dictionaries are mutable.
Creating a dictionary
  • Dictionaries are written inside curly brackets ({}) with comma-separated key-value pairs.

Tuples in Python

1) What is Tuple?
  • Just like List, Tuple is a collection of ordered elements. But the difference between list and Tuple is, tuples are immutable i.e. the elements in the Tuple cannot be changed, once it is assigned.
  • Tuples also can store both homogeneous and heterogeneous elements.
2) Creating a Tuple
  • Tuples can be created by placing all the elements separated by commas inside parentheses().

Sets in python

What is Set?
  • Set is an unordered collection data type with no duplicate elements. (unique elements)
  • Using curly braces {} or keyword set, we can create a set in Python.
  • In general, the set function is used to eliminate duplicate elements in a list.

Python Comments

  • Comments are the lines that are used to make your code more readable.
  • Comment lines are mainly used for documentation purposes to make the readers understand the source code.
  • These are the lines skipped during the program's execution by the compilers and the interpreters.
  • Sometimes, comments can also serve to prevent the execution of a line when testing code.
  • There are three types of comments in python.
    • Single line comments 
    • Multi-line comments
    • Docstring comments

ISRO 2020 Scientist/Engineer 'SC' Electrical BE005 Question paper with Answer marked

ISRO 2020 Electrical BE005:

ISRO Centralised Recruitment Board

Recruitment for Scientist/Engineer 'SC'

Electrical - BE 005

Held on: January 12, 2020

How to get free AS400 profile and windows client access - PUB400 Registration

Get your free AS400 profile

This post will show you how to get a free AS400 profile by registering in PUB400.com and IBMi Access for windows.

We will see step by step.

Step 1:
  • Go to PUB400.com. This PUB400 domain offers you a free AS400 profile and 300MB of disk storage in the IBM server and two private libraries.
  • Click on "Signup now" to register.

What is the use of PGM and ENDPGM in CL program

PGM and ENDPGM in CL program:
 
In this blog post, we will see what is the use of PGM and ENDPGM commands in a CL program. First, we will start with the PGM command.
 
PGM Command:
  • In general, the PGM command is written to identify the beginning of a CL program.
  • Example:
PGM Command

TNEB/TANGEDCO Previous year Question paper & Solutions

Here, we have given  Engineering Mathematics Study Notes for the Competitive Exams. Candidates can download Topic Wise Engineering Mathematics Study Materials along with Previous Year Questions from below mentioned links.

Study Notes:

📌Matrices and Determinants

Previous Year Questions - Topic wise:

📌 Circuit Theory | Electric Circuits

📌 GATE - Electric Circuits

📌 Control Systems

Question Papers - Solutions (TNEB):

Introduction to CL program

CL programming language:
 
In this blog post, We will understand, what is CL and what can and cannot be done by using the CL language.
  • CL is a control language that contains a set of AS/400 commands which execute in a sequence to control the flow of an application.
  • It is used for job controlling just like JCL in the mainframe.
  • So to understand the CL program, we should be knowing all CL commands

Structure of CL program

In this blog post, I will take you through how the basic structure of the CL program will be.
In General,
  • CL Code is case insensitive.
  • Source code usually starts from column 14 with an indentation for readability.
 
Source code starts from column 14
  • Every programing language has some notation for adding comments which are used for future reference. Likewise in CL, Comments are marked by /* at the beginning and */ at the end.

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...