Leetcoaching in GCC(for polytechnic Diploma Students)
4.14K subscribers
1.26K photos
14 videos
1.06K files
2.02K links
GCC MOTIVE- TOP GOVT.COLLEGE AFTER DIPLOMA FOR B.TECH |WHAT AFTER DIPLOMA/POLYTECHNIC-JOIN GCC FOR PERFECT GUIDANCE DIPLOMA
GCC Main Branch Address A-12, First Floor, G.T.K ROAD,100 NO.BUS STAND, Adarsh Nagar metro station www.leetcoaching.com@8744886600
Download Telegram
14.*Where was the meeting of the Parliamentary Standing Committee on Defence held recently?*
A. In Telangana
B. In Maharashtra
C. In New Delhi
D. In Madhya Pradesh

14.*हाल ही में कहां रक्षा संबंधी संसदीय स्थायी समिति की बैठक आयोजित हुई है?*
A.तेलंगाना में
B.महाराष्ट्र में
C.नई दिल्ली में
D.मध्य प्रदेश में

15.*Recently India has increased its maritime claim in the central Arabian Sea by approximately how many square kilometers?*
A.2,000 square kilometers
B.5,000 square kilometers
C.10,000 square kilometers
D.12,000 square kilometers

15.*हाल ही में भारत ने मध्य अरब सागर में अपने समुद्री दावे को लगभग कितने वर्ग किलोमीटर तक बढ़ा दिया है?*
A.2,000 वर्ग किलोमीटर
B.5,000 वर्ग किलोमीटर
C.10,000 वर्ग किलोमीटर
D.12,000 वर्ग किलोमीटर

--------------------------------
*🎯 Static GK MCQ*
--------------------------------

16. *Which of the following states in India has the most sandalwood trees?*
A. Kerala
B. Karnataka
C. Assam
D. Madhya Pradesh

16.*निम्नलिखित में से भारत में चंदन के वृक्ष सर्वाधिक किस राज्य में है?*
A. केरल
B. कर्नाटक
C. असम
D. मध्य प्रदेश

17. *Harike Barrage (the main water source of Indira Gandhi Canal) is built at the confluence of which of the following rivers?*
A. Ravi and Beas
B. Jhelum and Chenab
C. Chenab and Sutlej
D. Beas and Sutlej

18. *हरिके बैराज (इंदिरा गांधी नहर का प्रमुख जल स्रोत) निम्न में से किन नदियों के संगम पर निर्मित है?*
A. रावी और व्यास
B. झेलम और चिनाव
C. चिनाव और सतलुज
D. व्यास और सतलुज

19. *Which of the following physiographic regions is not a part of the "Peninsular Plateau" in India?*
A. Bundelkhand
B. Chhota Nagpur
C. Malwa
D. Sundarban

19.*निम्नलिखित में से कौन-सा भू-आकृतिक प्रदेश भारत में "सीमान्त पठार" का भाग नहीं है?*
A. बुंदेलखंड
B. छोटा नागपुर
C. मालवा
D.सुंदरबन

20.*Who declared Bahadur Shah Zafar as the emperor of Delhi in the revolt of 1857?*
A. Mangal Pandey
B. Nana Saheb
C. Rani Lakshmibai
D. Rebellious soldiers

20.*1857 की क्रांति में बहादुर शाह ज़फ़र को किसने दिल्ली का सम्राट घोषित किया था?*
A. मंगल पांडे ने
B. नाना साहेब ने
C. रानी लक्ष्मीबाई ने
D. विद्रोही सिपाहियों ने

*Answer key:*
1.A 6.C 11.A 16.B
2.B 7.C 12.C 17.D
3.D 8.B 13.C 18.D
4.B 9.D 14.C 19.D
5.B 10.C 15.C 20.D
CUET LEET 2025 UP DIPLOMA WALO BUS APKA EK LIKE CHAHIYE ❤️😍☺️😊Let's now move to the next topic in the Python Learning Series

*Lambda Functions in Python*

*What is a lambda function?*
It’s a small anonymous function that you define in a single line.

It’s mostly used when you need a simple function for a short time — especially with map(), filter(), or sorted().

*Syntax:*

lambda arguments: expression

It takes inputs (arguments) and returns the result of the expression.

*Example:*

square = lambda x: x * x
print(square(4)) # Output: 16

This is the same as:

def square(x):
return x * x

*Another example:*

add = lambda a, b: a + b
print(add(3, 5)) # Output: 8

*Why is it called “anonymous”?*

Because it doesn’t have a name like regular functions.
You just write it and use it directly.

*Where is it used?*

Often with functions like:

- map() — to apply a function to each item in a list

- filter() — to filter items from a list

- sorted() — to customize how to sort things


*Example with sorted():*

points = [(2, 3), (1, 9), (4, 1)]
points.sort(key=lambda x: x[1])
print(points) # Sorted by second element

*Why use lambda?*

- Saves space (no need to define full function)

- Makes code more readable in simple cases


*When NOT to use it:*

- When the function is complex — then use def for clarity.
👍1
YOUTUBE LIVE @7:45 MILTE AA JAO DOSTO LIVE 15 MIN KE LIYE
Join "GCC INSTITUTE- LEETCOACHING/JE/DIPLOMA" and get access to study material, live classes, mock tests, guidance and more.

Download Now: http://mbage.on-app.in/app/home/app/home?orgCode=mbage
CUET COMPUTER SCIENCE 20 MOST IMPORTANT QUESTION:🔥🔥
4. Which of the following functions are valid functions for string manipulation in SQL?  

(A) Itrim()   (B) Icase()   (C) mid()   (D) power()
Anonymous Quiz
11%
(1) (A), (B) and (D) only
57%
(2) (A), (B) and (C) only
19%
(3) (A), (B), (C) and (D)
12%
(4) (B), (C) and (D) only