iamrupnath - Jobs & Internships Updates
24K subscribers
24 photos
1 video
94 files
2.13K links
πŸ’» Let's learn Programming!
πŸ’» Daily Coding Content
πŸ‘‰ Follow LinkedIn
https://www.linkedin.com/in/rupnath-shaw
Download Telegram
πŸ“BNP is hiring for Full Stack Development

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή7 LPA

Job Location: Chennai

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/bnp-off-campus-hiring-full-stack-development/
πŸ“AMD is hiring for SMTS Silicon Design Engineer

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή28 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/amd-off-campus-hiring-smts-silicon-design-engineer/
πŸ“EY is hiring for DET - Associate Software Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-2 years

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή4-7 LPA

Job Location: Bengaluru

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/ey-off-campus-hiring-det-associate-software-engineer/
πŸ“ServiceNow is hiring for Staff Software Quality Engineer

Qualification: Bachelors / Masters Degree

Experience:  Experienced

Batch: 2025 / 2024 / 2023 / 2022

Salary: not disclosed

Job Location: Hyderabad

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/servicenow-hiring-staff-software-quality-engineer/
πŸ“KONE is hiring for Test Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή4 LPA

Job Location: Chennai 

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/kone-off-campus-hiring-test-engineer/
πŸ“GE Healthcare is hiring for Graduate Engineer Trainee

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή5-8 LPA

Job Location: Mumbai

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/ge-healthcare-hiring-graduate-engineer-trainee/
πŸ“Allianz is hiring for GEN AI Fullstack Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή6 LPA

Job Location: Pune

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/allianz-hiring-gen-ai-fullstack-engineer/
πŸ“Lowes is hiring for Associate Software Engineering

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή11 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/lowes-hiring-associate-software-engineering/
πŸ“Honeywell is hiring for Software Engr I

Qualification: Bachelors Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή6 - 13 LPA

Job Location: Bengaluru

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/honeywell-off-campus-hiring-software-engr-i/
πŸ“Bread Financial is hiring for Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή5 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/bread-financial-off-campus-hiring-engineer/
πŸ“McAfee is hiring for Software Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-1 years

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή10-18 LPA

Job Location: Bengaluru

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/mcafee-off-campus-hiring-software-engineer/
πŸ“GoKwik is hiring for SDE1 (Node.js)

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή5 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/gokwik-off-campus-hiring-sde1-node-js/
*Python Cheatsheet* 🐍

This Cheatsheet covers the core Python concepts everyone should know.

*1. Basics*

print() – Outputs text to the screen.

Comments – Use # for single-line and triple quotes """ for multi-line comments.

print("Hello") # This will print Hello


*2. Variables & Data Types*

Variables store values of different types like numbers, strings, booleans, lists, etc.


x = 10 # Integer
name = "Alice" # String
flag = True # Boolean


*3. Conditionals*

Used to make decisions in code using if, elif, and else.

if x > 0:
print("Positive")
else:
print("Not positive")


*4. Loops*

- For loop: Iterates over a sequence.

- While loop: Repeats as long as a condition is true.

for i in range(3):
print(i)


*5. Functions*

A reusable block of code defined with def.

def greet(name):
return "Hello " + name


*6. Lists & List Comprehension*

- Lists: Store multiple items in one variable.

- List comprehension: Short way to create lists.

nums = [1, 2, 3]
squares = [x**2 for x in nums]


*7. Dictionaries*

Key-value pairs, like a mini-database.

user = {"name": "Bob", "age": 25}
print(user["name"])


*8. String Methods*

Strings are text, and Python provides handy methods to manipulate them.

s = "hello"
print(s.upper()) # "HELLO"
print(s.replace("e", "a")) # "hallo"

*9. File Handling*

Read and write files using open().

with open("file.txt", "w") as f:
f.write("Hi there!")

*10. Error Handling*

Prevents your program from crashing with try, except, and finally.


try:
x = 10 / 0
except:
print("Error occurred")


*11. Classes & Objects*

Used in Object-Oriented Programming to create reusable code structures.

class Dog:
def init(self, name):
self.name = name


*12. Useful Built-in Functions*

Handy tools built into Python.

len(), type(), sum(), min(), max(), sorted()


*React ❀️ for the detailed explanation of each Python concept*
πŸ“PayU is hiring for Software Engineer

Qualification: Bachelors / Masters Degree

Experience: Fresher 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή12 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/payu-off-campus-hiring-software-engineer-4/
πŸ“Accelya is hiring for Software Development (AI/ML)

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή8 LPA

Job Location: Mumbai

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/accelya-hiring-software-development-ai-ml/
πŸ“Fujitsu is hiring for Apprentice Trainee - HRSS Travel Desk

Qualification: Bachelors / Masters Degree

Experience: Fresher 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή5 LPA

Job Location: Pune

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/fujitsu-hiring-apprentice-trainee-hrss-travel-desk/
πŸ“Eurofins is hiring for Associate Software Engineer

Qualification: B.E./ B. Tech (CS, IS, EC,) / BSc (CS, IT)

Experience: 0-1 years 

Batch: 2025 / 2024

Salary: up to β‚Ή6-9 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/eurofins-hiring-software-engineer/
πŸ“New Relic is hiring for Data Scientist

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή11 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/new-relic-off-campus-hiring-data-scientist/
πŸ“mthree is hiring for Graduate Recruitment - SHD - Tech

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή9 LPA

Job Location: Bangalore

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/mthree-hiring-graduate-recruitment-shd-tech/
πŸ“Maruti Suzuki is hiring for Graduate Engineer Trainee

Qualification: Bachelors / Masters Degree

Experience: Fresher 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to β‚Ή6-10 LPA

Job Location: India

πŸ”— π—”π—½π—½π—Ήπ˜† 𝗛𝗲𝗿𝗲: https://techcompreviews.in/maruti-suzuki-hiring-graduate-engineer-trainee-2/