Guru prasanna

Guru prasanna @guru_prasanna_01

About: Transition in my career! Aspiring software engineer.I have pursued python full stack developer course and moving towards my passion.

Joined:
Nov 15, 2024

Guru prasanna
articles - 72 total

Oracle PL/SQL - Basic Terms

Term Explanation PL/SQL Procedural Language extension of SQL used in Oracle databases. It adds...

Learn More 0 0May 16

Javascript - ServiceNow

How is JavaScript linked with ServiceNow? ServiceNow is built on JavaScript. Almost all...

Learn More 1 0Apr 28

Welcome to ServiceNow - course

ServiceNow ServiceNow is a cloud-based platform that helps organizations manage their IT...

Learn More 2 0Apr 25

ServiceNow - Important Terms

Terms used in serviceNow: Instance – Your own version of the ServiceNow platform. Table...

Learn More 1 0Apr 24

About Linux - Compiler , Process ,Executable

Why linux? --> Every code run in linux machine. --> Linux is efficient due to its...

Learn More 0 0Apr 23

Python programs for interview preparation

1. Check if a number is even or odd num = int(input("Enter a number: ")) if num % 2 ==...

Learn More 0 0Apr 22

ServiceNow - Interview Questions and Answers

ServiceNow 1. What is ServiceNow? Answer: ServiceNow is a cloud-based platform that helps...

Learn More 0 0Apr 21

Software Testing - Manual Testing ,Levels,Types

Manual Testing Manual Testing is the process of testing software manually (without using...

Learn More 0 0Mar 22

Python - Theory Questions and Answers

1. Introduction to Python Python is a high-level, interpreted, dynamically typed, and...

Learn More 0 0Mar 19

SQL Interview questions and answers

SQL Interview Questions & Answers: 1. What is SQL? --> SQL (Structured Query...

Learn More 0 0Mar 17

OOPS - Interview Questions in python

OOPs (Object-Oriented Programming) Interview Questions in Python 1) What is...

Learn More 0 0Mar 17

Python Programs - Interview Questions and Answers

1️⃣ Reverse a String Program: def reverse_string(s): return s[::-1] Enter fullscreen...

Learn More 0 0Mar 14

Front-end Developer Interview Questions and Answers

HTML 1. What is HTML? --> HTML (HyperText Markup Language) is the standard language...

Learn More 0 0Mar 13

Git Lab - Commands

Refer - https://docs.gitlab.com/topics/git/commands/ 1. Create project Go to GitLab. Click on New...

Learn More 0 0Feb 26

GIT - GITLAB Introduction

What is a version control system? Version control systems are a category of software tools...

Learn More 0 0Feb 24

PostgreSql Tasks

Table:1 create customer table: movie=# CREATE TABLE Customer ( Customer_ID INT PRIMARY...

Learn More 0 0Feb 19

PostgreSql Tasks - Interview Questions

Tasks: 1. What is the difference between WHERE and HAVING clauses? WHERE Clause: Filters...

Learn More 0 1Feb 19

PostgreSql Tasks - Case study:3

Create Ratings Table and add values to the table movie=# creat table ratings (id int primary key...

Learn More 1 0Feb 16

PostgreSql Tasks - Case study:2

Table: movie=# select * from cinema; id | movie_name | actor | year | minutes...

Learn More 1 0Feb 13

PostgreSql Tasks - Case study:1

Task: Create Table: Cinema movie=# create table cinema(id int,Movie_name...

Learn More 0 0Feb 13

PostgreSql Day-4 Foreign key, Sql Commands, Delete cascade

Table using primary key: create table citizens(aadhar_no integer, pan_no text, name text, primary...

Learn More 0 0Feb 12

PostgreSql Day - 3 Join, Constraints, Primary key

Creating 2 tables of team and player: create table team(team_id int, player_id int, joining_date...

Learn More 1 0Feb 11

PostgreSql Day-2 Where clause, Order by, subquery ,Aggregate function ,Group by

Table employee: empid | name | designation | dept | salary...

Learn More 2 0Feb 8

PostgreSQL Day-1 Database, RDBMS ,postgreSQL-Installation

Database: --> A database is an organized collection of data stored and accessed...

Learn More 1 0Feb 7

Python Day- 35 Abstraction , Encapsulation

Abstraction: --> Abstraction is used to hide the internal functionality of the function...

Learn More 1 0Feb 7

Python Day - 34 Constructor, Inheritance, Overloading

Constructor: A constructor is a unique function that gets called automatically when an...

Learn More 1 0Feb 5

Python Day - 33 Exception Handling

Exception Handling --> Exception is an abnormal event that happens during the execution...

Learn More 1 0Feb 4

Python Weekend Tasks

Task:1 Consider you have many photos in a folder. Check their Properties. In Properties, you have...

Learn More 1 0Feb 3

Python Day-32 Object oriented programming(oops), CSV, Matplotlib

Object oriented programming system(oops): -->Python is a multi-paradigm...

Learn More 3 0Feb 3

Python Day - 31 Types of Functions

Types of functions: Lambda Function: --> A lambda function in Python is an anonymous...

Learn More 1 0Jan 31