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.

Strings in Python

What is String in python?
  • In Python, String is a sequence of characters enclosed by either single quotes or double-quotes.
    • Example: 'Python', "Geek4Tutorial"
  • Strings are immutable.
  • Each value in a string is called character. 
Creating a String:
  • Strings can be created by enclosing the sequence of characters inside a single quote or double quote and assigning it to a variable.
Strings in Python
  • Sometimes triple quotes can also be used to create a string, even though triple quotes are used to represent Multiline strings and Docstrings.
Strings in Python
  • We can access the characters(element) in the string just like the index using index position.

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...