Coding Block Hisar

πŸš€ Welcome to Coding Block Hisar – Your Gateway to a Successful Tech Career!

At Coding Block Hisar, we help students and professionals learn programming, master in-demand tech skills, and crack interviews with confidence. Whether you’re a complete beginner or aiming to become a job-ready developer, our channel brings you easy-to-understand tutorials, MCQ quizzes, interview tips, and real-world coding projects.

πŸ“š What You’ll Find Here:

Programming tutorials (Python, Java, C, C++, JavaScript, MERN Stack)

Data Structures & Algorithms (DSA) explained

MCQ quizzes for competitive exams & interviews

Data Analysis & Full Stack Development guides

Career tips & industry insights

Student success stories & motivation

πŸ“ Location: Hisar, Haryana, India
πŸ“ž Contact: 90501-50024



Coding Block Hisar

A shop recorded sales for 3 days:

sales = np.array([
[10, 20, 15], # Day 1: 3 products
[12, 18, 22], # Day 2
[14, 25, 19] # Day 3
])

πŸ’‘ What will np.sum(sales, axis=1) return?
(πŸ€” Sum of sales per day)

2 weeks ago | [YT] | 0

Coding Block Hisar

What happens when the dependency array of a useEffect hook is set to an empty array ([])?

1 month ago | [YT] | 0

Coding Block Hisar

import numpy as np
arr = np.array([1, 2, 3, 4, 5])
arr[arr % 2 == 0] = 0
print(arr)

1 month ago | [YT] | 0

Coding Block Hisar

import numpy as np

A = np.arange(12).reshape(4, 3)
B = np.array([1, 2, 3])

C = A + B
D = A * B

print(C[1, 2] + D[3, 0])

1 month ago | [YT] | 0

Coding Block Hisar

In Pandas, to change the column name β€˜old’ to β€˜new’, which of the following is correct?

1 month ago | [YT] | 0

Coding Block Hisar

What is the output of :

a = np.array([[1,2],[3,4]])
a.T

1 month ago | [YT] | 0

Coding Block Hisar

The default data type of NumPy array elements is:

1 month ago | [YT] | 0

Coding Block Hisar

Which of the following creates a 3Γ—3 identity matrix?

2 months ago | [YT] | 0

Coding Block Hisar

🌟 Meet Our Mentor – Akash Kumar 🌟

πŸ‘¨β€πŸ« Education:
πŸŽ“ B.Tech in Computer Science (2011–2015)
πŸ“ Manav Rachna College of Engineering, Faridabad

πŸ’Ό Industry Experience:
πŸ’» Former Software Developer at Spice Limited, Noida

πŸ“š Teaching Journey:
βœ… 8+ Years of Teaching Experience
βœ… Mentored 1000+ Students Towards Successful Careers

⚑ Expertise:
🐍 Python | β˜• Java | πŸ“Š Data Analysis | 🌐 Full Stack Web Development

πŸ’‘ With a perfect blend of industry exposure and teaching excellence, Akash sir is dedicated to guiding students from fundamentals to advanced concepts with real-world insights.

πŸ‘‰ Stay tuned for more amazing sessions, tips, and guidance from Akash sir!

3 months ago | [YT] | 0

Coding Block Hisar

What is the result of np.eye(3) ?

3 months ago | [YT] | 1