- +353 877 000 000
- [email protected]
- Mon - Fri: 9:00 - 18:30
Ready to Grow.
Knowledge is Inspiration!Topictrick.
Topictrick is a wall-to-wall repository of tutorials and articles. These articles not only boost your knowledge but also help you in solving real-world problems.



PYTHONTutorial.
Python is, currently, the most popular and the most commercially used programming language. Python is a general-purpose programming language. It supports various programming paradigms, such as object-oriented, functional, imperative, or procedural programming.
Python has been the choice of many students and working professional programmers. Python is important as a language for learning and creating programs is ever-growing.
This set of tutorials focuses on Python basics, Python Functions, Python Datatypes, Python Lists, Python Tuples, Python Database, Python Class, and Objects, etc.
COBOLTutorial.
COBOL abbreviation stands for COmmon Business Oriented Language. COBOL is power, robust and easy to learn English-like programming language. COBOL was very popular between 60 – 90 and almost every industry was using COBOL to run their business.
COBOL is a powerful, robust and platform-independent programming language. COBOL is around for the last 60 years and still powering 70% of the business transaction. Almost, 220 billion lines of COBOL code are still in use and are growing at a steady rate.
COBOL is still the most reliable and preferred language for banking, insurance, travel, auto industry, govt agency.
JCLTutorial.
JCL stands for Job Control Language. A JCL provides all required information such as program, I/O file name to z/OS operating system. JCL is a complex language because it consists of various complex parameters. You need to remember these parameters.
JCL generally includes various steps at max you can have 255 steps in a single JCL. Each step in JCL specifies key information such as job card, program name, file name, printer details, etc.
IBM z/OS system used this information and execute the program and process required data or update data in the database.


Nail Object Oriented Programming OOP in Python | Class and Instance | Constructor of the class | 8 mins read
Today we are going to talk about ‘Overview of Object Oriented Programming(OOP) in Python .This tutorial covers the overview of OOPs in python , meaning of some terminologies like class,instance ,constructor .This tutorial provides the base to understand the concept of OOPs in python. Let’s get started.


COBOL Tutorial – COBOL Programming Tutorial. Free Curso de COBOL 60+
COBOL programming tutorial is design for absolute beginners. In this tutorial, cover most of the programming topic such as COBOL PERFORM STATEMENTS, COBOL REDEFINES Statements, COBOL Program Structure etc. Let’s get started with today’s COBOL Tutorial.


Master Python Function and Argument Types | Lambda expression – 10 mins read
Python function is very important from programmers prespective. Declaration and calling of python function is quite easy. def keyword is used to start function definition .It is followed by function name an parameters within small braces.For small function that contain only one expression, lambda expression can be used in place of standard function. Lambda expression are tricky ones but saves a lot of time if you master them. Let’s get started with “Function in Python and types of function arguments”.