Term Explanation PL/SQL Procedural Language extension of SQL used in Oracle databases. It adds...
How is JavaScript linked with ServiceNow? ServiceNow is built on JavaScript. Almost all...
ServiceNow ServiceNow is a cloud-based platform that helps organizations manage their IT...
Terms used in serviceNow: Instance – Your own version of the ServiceNow platform. Table...
Why linux? --> Every code run in linux machine. --> Linux is efficient due to its...
1. Check if a number is even or odd num = int(input("Enter a number: ")) if num % 2 ==...
ServiceNow 1. What is ServiceNow? Answer: ServiceNow is a cloud-based platform that helps...
Manual Testing Manual Testing is the process of testing software manually (without using...
1. Introduction to Python Python is a high-level, interpreted, dynamically typed, and...
SQL Interview Questions & Answers: 1. What is SQL? --> SQL (Structured Query...
OOPs (Object-Oriented Programming) Interview Questions in Python 1) What is...
1️⃣ Reverse a String Program: def reverse_string(s): return s[::-1] Enter fullscreen...
HTML 1. What is HTML? --> HTML (HyperText Markup Language) is the standard language...
Refer - https://docs.gitlab.com/topics/git/commands/ 1. Create project Go to GitLab. Click on New...
What is a version control system? Version control systems are a category of software tools...
Table:1 create customer table: movie=# CREATE TABLE Customer ( Customer_ID INT PRIMARY...
Tasks: 1. What is the difference between WHERE and HAVING clauses? WHERE Clause: Filters...
Create Ratings Table and add values to the table movie=# creat table ratings (id int primary key...
Table: movie=# select * from cinema; id | movie_name | actor | year | minutes...
Task: Create Table: Cinema movie=# create table cinema(id int,Movie_name...
Table using primary key: create table citizens(aadhar_no integer, pan_no text, name text, primary...
Creating 2 tables of team and player: create table team(team_id int, player_id int, joining_date...
Table employee: empid | name | designation | dept | salary...
Database: --> A database is an organized collection of data stored and accessed...
Abstraction: --> Abstraction is used to hide the internal functionality of the function...
Constructor: A constructor is a unique function that gets called automatically when an...
Exception Handling --> Exception is an abnormal event that happens during the execution...
Task:1 Consider you have many photos in a folder. Check their Properties. In Properties, you have...
Object oriented programming system(oops): -->Python is a multi-paradigm...
Types of functions: Lambda Function: --> A lambda function in Python is an anonymous...