How does βimportβ and βexportβ work in JavaScript?
68. What is a Proxy object in JavaScript?
69. Explain the difference between βvar,β βlet,β and βconstβ scope.
70. How do you flatten an array in JavaScript?
71. What are IIFE (Immediately Invoked Function Expressions)?
72. What is the purpose of the βsetTimeoutβ and βsetIntervalβ functions?
73. Explain the concept of polyfills in JavaScript.
74. What is a WeakMap in JavaScript, and how is it different from a Map?
75. How do you handle data binding in JavaScript?
76. What is the purpose of the βeveryβ and βsomeβ methods in JavaScript arrays?
77. Explain the difference between β==β and β===β in JavaScript.
78. How do you remove properties from an object in JavaScript?
79. What is the purpose of the βObject.freezeβ method?
80. How do you check if an object is empty in JavaScript?
81. Explain the concept of throttling in JavaScript.
82. What is a WeakSet in JavaScript?
83. How does JavaScriptβs garbage collection work?
84. What is debouncing in JavaScript, and how is it different from throttling?
85. What is the purpose of the βObject.assignβ method?
86. Explain the difference between map, filter, and reduce.
87. How do you handle inheritance in JavaScript?
88. What is the difference between synchronous and asynchronous functions?
89. How does the βasyncβ keyword work with functions?
90. What are JavaScript decorators?
91. Explain how to optimize JavaScript code for performance.
92. What is a service worker in JavaScript?
93. How do you use βtry...catchβ for error handling in JavaScript?
94. Explain how promises can be chained.
95. What are the benefits of using closures in JavaScript?
96. How can you reverse a string in JavaScript?
97. What is a Set in JavaScript?
98. Explain the concept of promises with async/await.
99. How do you use βObject.keys,β βObject.values,β and βObject.entriesβ in JavaScript?
100. What is the purpose of βPromise.allβ in JavaScript?
This list provides a comprehensive overview of JavaScript concepts, making it useful for interview preparation.
Join @coderslearning for more! β
ENJOY LEARNING ππ
68. What is a Proxy object in JavaScript?
69. Explain the difference between βvar,β βlet,β and βconstβ scope.
70. How do you flatten an array in JavaScript?
71. What are IIFE (Immediately Invoked Function Expressions)?
72. What is the purpose of the βsetTimeoutβ and βsetIntervalβ functions?
73. Explain the concept of polyfills in JavaScript.
74. What is a WeakMap in JavaScript, and how is it different from a Map?
75. How do you handle data binding in JavaScript?
76. What is the purpose of the βeveryβ and βsomeβ methods in JavaScript arrays?
77. Explain the difference between β==β and β===β in JavaScript.
78. How do you remove properties from an object in JavaScript?
79. What is the purpose of the βObject.freezeβ method?
80. How do you check if an object is empty in JavaScript?
81. Explain the concept of throttling in JavaScript.
82. What is a WeakSet in JavaScript?
83. How does JavaScriptβs garbage collection work?
84. What is debouncing in JavaScript, and how is it different from throttling?
85. What is the purpose of the βObject.assignβ method?
86. Explain the difference between map, filter, and reduce.
87. How do you handle inheritance in JavaScript?
88. What is the difference between synchronous and asynchronous functions?
89. How does the βasyncβ keyword work with functions?
90. What are JavaScript decorators?
91. Explain how to optimize JavaScript code for performance.
92. What is a service worker in JavaScript?
93. How do you use βtry...catchβ for error handling in JavaScript?
94. Explain how promises can be chained.
95. What are the benefits of using closures in JavaScript?
96. How can you reverse a string in JavaScript?
97. What is a Set in JavaScript?
98. Explain the concept of promises with async/await.
99. How do you use βObject.keys,β βObject.values,β and βObject.entriesβ in JavaScript?
100. What is the purpose of βPromise.allβ in JavaScript?
This list provides a comprehensive overview of JavaScript concepts, making it useful for interview preparation.
Join @coderslearning for more! β
ENJOY LEARNING ππ
π3
Clear all DSA rounds,
By mastering these 20 DSA patterns
1. Fast and Slow Pointer
- Cycle detection method
- O(1) space efficiency
- Linked list problems
2. Merge Intervals
- Sort and merge
- O(n log n) complexity
- Overlapping interval handling
3. Sliding Window
- Fixed/variable window
- O(n) time optimization
- Subarray/substring problems
4. Islands (Matrix Traversal)
- DFS/BFS traversal
- Connected component detection
- 2D grid problems
5. Two Pointers
- Dual pointer strategy
- Linear time complexity
- Array/list problems
6. Cyclic Sort
- Sorting in cycles
- O(n) time complexity
- Constant space usage
7. In-place Reversal of Linked List
- Reverse without extra space
- O(n) time efficiency
- Pointer manipulation technique
8. Breadth First Search
- Level-by-level traversal
- Uses queue structure
- Shortest path problems
9. Depth First Search
- Recursive/backtracking approach
- Uses stack (or recursion)
- Tree/graph traversal
10. Two Heaps
- Max and min heaps
- Median tracking efficiently
- O(log n) insertions
11. Subsets
- Generate all subsets
- Recursive or iterative
- Backtracking or bitmasking
12. Modified Binary Search
- Search in variations
- O(log n) time
- Rotated/specialized arrays
13. Bitwise XOR
- Toggle bits operation
- O(1) space complexity
- Efficient for pairing
14. Top 'K' elements
- Use heap/quickselect
- O(n log k) time
- Efficient selection problem
15. K-way Merge
- Merge sorted lists
- Min-heap based approach
- O(n log k) complexity
16. 0/1 Knapsack (Dynamic Programming)
- Choose or skip items
- O(n * W) complexity
- Maximize value selection
17. Unbounded Knapsack (Dynamic Programming)
- Unlimited item choices
- O(n * W) complexity
- Multiple item selection
18. Topological Sort (Graphs)
- Directed acyclic graph
- Order dependency resolution
- Uses DFS or BFS
19. Monotonic Stack
- Maintain increasing/decreasing stack
- Optimized for range queries
- O(n) time complexity
20. Backtracking
- Recursive decision-making
- Explore all possibilities
- Pruning with constraints
Best DSA Resources: π
https://t.me/coderslearning
All the best ππ
By mastering these 20 DSA patterns
1. Fast and Slow Pointer
- Cycle detection method
- O(1) space efficiency
- Linked list problems
2. Merge Intervals
- Sort and merge
- O(n log n) complexity
- Overlapping interval handling
3. Sliding Window
- Fixed/variable window
- O(n) time optimization
- Subarray/substring problems
4. Islands (Matrix Traversal)
- DFS/BFS traversal
- Connected component detection
- 2D grid problems
5. Two Pointers
- Dual pointer strategy
- Linear time complexity
- Array/list problems
6. Cyclic Sort
- Sorting in cycles
- O(n) time complexity
- Constant space usage
7. In-place Reversal of Linked List
- Reverse without extra space
- O(n) time efficiency
- Pointer manipulation technique
8. Breadth First Search
- Level-by-level traversal
- Uses queue structure
- Shortest path problems
9. Depth First Search
- Recursive/backtracking approach
- Uses stack (or recursion)
- Tree/graph traversal
10. Two Heaps
- Max and min heaps
- Median tracking efficiently
- O(log n) insertions
11. Subsets
- Generate all subsets
- Recursive or iterative
- Backtracking or bitmasking
12. Modified Binary Search
- Search in variations
- O(log n) time
- Rotated/specialized arrays
13. Bitwise XOR
- Toggle bits operation
- O(1) space complexity
- Efficient for pairing
14. Top 'K' elements
- Use heap/quickselect
- O(n log k) time
- Efficient selection problem
15. K-way Merge
- Merge sorted lists
- Min-heap based approach
- O(n log k) complexity
16. 0/1 Knapsack (Dynamic Programming)
- Choose or skip items
- O(n * W) complexity
- Maximize value selection
17. Unbounded Knapsack (Dynamic Programming)
- Unlimited item choices
- O(n * W) complexity
- Multiple item selection
18. Topological Sort (Graphs)
- Directed acyclic graph
- Order dependency resolution
- Uses DFS or BFS
19. Monotonic Stack
- Maintain increasing/decreasing stack
- Optimized for range queries
- O(n) time complexity
20. Backtracking
- Recursive decision-making
- Explore all possibilities
- Pruning with constraints
Best DSA Resources: π
https://t.me/coderslearning
All the best ππ
π4
Leverage your skills from Google, IBM and Meta
1. Google Data Analytics
https://lnkd.in/dh3EfuAb
2. Google Project Management
https://lnkd.in/dABg5Bq2
3. Google IT Support
https://lnkd.in/dTb2xFhs
4. Google Digital Marketing & E-commerce
https://lnkd.in/dR5-TzGZ
5. Google IT Automation with Python
https://lnkd.in/d5mVf7TD
6. Google Business Intelligence
https://lnkd.in/dhf2Rvnx
7. Google Advanced Data Analytics
https://lnkd.in/dh3EfuAb
8. Google Cybersecurity
https://lnkd.in/dUB-QZRP
9. IBM Data Science
https://lnkd.in/dn8enWRk
10. Machine Learning
https://lnkd.in/diR_TFVq
11. IBM Data Analyst
https://lnkd.in/dw2FCJnw
12. Python for Everybody
https://lnkd.in/d8Adh_wB
Join @coderslearning for more! β
ENJOY LEARNING ππ
1. Google Data Analytics
https://lnkd.in/dh3EfuAb
2. Google Project Management
https://lnkd.in/dABg5Bq2
3. Google IT Support
https://lnkd.in/dTb2xFhs
4. Google Digital Marketing & E-commerce
https://lnkd.in/dR5-TzGZ
5. Google IT Automation with Python
https://lnkd.in/d5mVf7TD
6. Google Business Intelligence
https://lnkd.in/dhf2Rvnx
7. Google Advanced Data Analytics
https://lnkd.in/dh3EfuAb
8. Google Cybersecurity
https://lnkd.in/dUB-QZRP
9. IBM Data Science
https://lnkd.in/dn8enWRk
10. Machine Learning
https://lnkd.in/diR_TFVq
11. IBM Data Analyst
https://lnkd.in/dw2FCJnw
12. Python for Everybody
https://lnkd.in/d8Adh_wB
Join @coderslearning for more! β
ENJOY LEARNING ππ
π5
Alert! π¨
Join our WhatsApp group for daily Job and Internship updates:π
https://chat.whatsapp.com/EMHzA0dExbMFHT9xGw6bpR
Join our WhatsApp group for daily Job and Internship updates:π
https://chat.whatsapp.com/EMHzA0dExbMFHT9xGw6bpR
π1
Essential Topics to Master Data Science Interviews: π
SQL:
1. Foundations
- Master SELECT statements with
- Understand simple databases and table structures
2. Intermediate SQL
- Aggregate functions (COUNT, SUM, AVG, MAX, MIN)
- Subqueries & nested queries
- Common Table Expressions (WITH clause)
- CASE statements for logical operations
3. Advanced SQL
- Advanced JOIN techniques (self-join, non-equi join)
- Window functions (OVER, PARTITION BY, ROW_NUMBER, RANK, DENSE_RANK, LEAD, LAG)
- Query optimization with indexing
- Data manipulation (INSERT, UPDATE, DELETE)
Python:
1. Python Basics
- Syntax, variables, and data types
- Control structures (`if-else`,
- Data structures (lists, dictionaries, sets, tuples)
- Functions, lambda functions, error handling (try-except)
- Modules and packages
2. Pandas & Numpy
- Create and manipulate DataFrames & Series
- Indexing, selecting, and filtering data
- Handle missing data (`fillna`, `dropna`)
- Aggregate data with
3. Data Visualization with Python
- Plot with Matplotlib (line, bar, histograms)
- Visualize with Seaborn (scatter, box, pair plots)
- Customize plots (sizes, labels, legends, color palettes)
- Intro to interactive visualizations (e.g., Plotly)
Excel:
1. Excel Essentials
- Basic formulas (`SUMIFS`,
- Charts and basic data visualization
- Sort, filter, and conditional formatting
2. Intermediate Excel
- Advanced formulas (`V/XLOOKUP`,
- PivotTables & PivotCharts
- Data validation and What-if analysis
3. Advanced Excel
- Array formulas and advanced functions
- Power Pivot & Data Model
- Advanced Filter, Slicers, Timelines
- Dynamic charts & interactive dashboards
Power BI:
1. Data Modeling in Power BI
- Import data from multiple sources
- Manage relationships between datasets
- Data modeling basics (star, snowflake schemas)
2. Data Transformation in Power BI
- Data cleaning with Power Query
- Advanced data shaping techniques
- Calculated columns & measures with DAX
3. Data Visualization & Reporting in Power BI
- Interactive reports & dashboards
- Visualizations (bar, line, pie charts, maps)
- Publish, share, & schedule data refreshes
Statistics Fundamentals:
- Mean, Median, Mode
- Standard Deviation & Variance
- Probability Distributions, Hypothesis Testing
- P-values & Confidence Intervals
- Correlation & Simple Linear Regression
- Normal, Binomial, Poisson Distributions
Show some β€οΈ if you're ready to elevate your data science journey! π
Join @coderslearning for more! β
ENJOY LEARNING! ππ
SQL:
1. Foundations
- Master SELECT statements with
WHERE,Essential ToEssential ToEssential - Basic JOINS (INNER, LEFT, RIGHT, FULL)- Understand simple databases and table structures
2. Intermediate SQL
- Aggregate functions (COUNT, SUM, AVG, MAX, MIN)
- Subqueries & nested queries
- Common Table Expressions (WITH clause)
- CASE statements for logical operations
3. Advanced SQL
- Advanced JOIN techniques (self-join, non-equi join)
- Window functions (OVER, PARTITION BY, ROW_NUMBER, RANK, DENSE_RANK, LEAD, LAG)
- Query optimization with indexing
- Data manipulation (INSERT, UPDATE, DELETE)
Python:
1. Python Basics
- Syntax, variables, and data types
- Control structures (`if-else`,
for andential Toloops)- Data structures (lists, dictionaries, sets, tuples)
- Functions, lambda functions, error handling (try-except)
- Modules and packages
2. Pandas & Numpy
- Create and manipulate DataFrames & Series
- Indexing, selecting, and filtering data
- Handle missing data (`fillna`, `dropna`)
- Aggregate data with
groupby
- Merge, join, and concatenate datasets3. Data Visualization with Python
- Plot with Matplotlib (line, bar, histograms)
- Visualize with Seaborn (scatter, box, pair plots)
- Customize plots (sizes, labels, legends, color palettes)
- Intro to interactive visualizations (e.g., Plotly)
Excel:
1. Excel Essentials
- Basic formulas (`SUMIFS`,
COUNTIFS,Essent etc.)- Charts and basic data visualization
- Sort, filter, and conditional formatting
2. Intermediate Excel
- Advanced formulas (`V/XLOOKUP`,
INDEX-MATCH, nested IF)- PivotTables & PivotCharts
- Data validation and What-if analysis
3. Advanced Excel
- Array formulas and advanced functions
- Power Pivot & Data Model
- Advanced Filter, Slicers, Timelines
- Dynamic charts & interactive dashboards
Power BI:
1. Data Modeling in Power BI
- Import data from multiple sources
- Manage relationships between datasets
- Data modeling basics (star, snowflake schemas)
2. Data Transformation in Power BI
- Data cleaning with Power Query
- Advanced data shaping techniques
- Calculated columns & measures with DAX
3. Data Visualization & Reporting in Power BI
- Interactive reports & dashboards
- Visualizations (bar, line, pie charts, maps)
- Publish, share, & schedule data refreshes
Statistics Fundamentals:
- Mean, Median, Mode
- Standard Deviation & Variance
- Probability Distributions, Hypothesis Testing
- P-values & Confidence Intervals
- Correlation & Simple Linear Regression
- Normal, Binomial, Poisson Distributions
Show some β€οΈ if you're ready to elevate your data science journey! π
Join @coderslearning for more! β
ENJOY LEARNING! ππ
π12
Dreaming of studying abroad? Which country are you most interested in? πΊπΈπ¬π§π¨π¦π¦πΊ
Anonymous Poll
52%
USA πΊπΈ
19%
UK π¬π§
16%
Canada π¨π¦
14%
Australia π¦πΊ
π5
Your Study Abroad Dream Starts Here! Attend IDP's FREE Canada, UK & USA Education Fair π! πΊπΈπ¦πΊπ¨π¦π¬π§π
π Get expert advice & chart your Canada, UK & USA study path.
βοΈ Attend IDP's virtual event - limited spots available!
Register Now using below links!β¬οΈ
π¦πΊAustralia- https://bit.ly/3Q7vRyJ
π¨π¦Canada: https://bit.ly/3U8nxQv
π¬π§UK: https://bit.ly/4d3kjGw
πΊπΈUSA: https://bit.ly/4d2rJtG
π Get expert advice & chart your Canada, UK & USA study path.
βοΈ Attend IDP's virtual event - limited spots available!
Register Now using below links!β¬οΈ
π¦πΊAustralia- https://bit.ly/3Q7vRyJ
π¨π¦Canada: https://bit.ly/3U8nxQv
π¬π§UK: https://bit.ly/4d3kjGw
πΊπΈUSA: https://bit.ly/4d2rJtG
β€3
Here are 10 Free Websites to learn about becoming a Business Development Executive. π»π
1. Coursera (Free Courses)
- Offers courses on sales, business strategies, negotiation, and market analysis from top universities.
- Look for courses with a free auditing option.
- [Link](https://www.coursera.org/)
2. edX
- Provides free courses in business development, leadership, and strategic management.
- Top universities like Harvard and MIT offer courses here.
- [Link](https://www.edx.org/)
3. HubSpot Academy
- Known for its free certifications in Inbound Sales, Sales Management, and Business Development.
- Great for anyone interested in customer relations and sales tactics.
- https://academy.hubspot.com/
4. LinkedIn Learning (Free Trial)
- Offers a wide range of business development courses with a free one-month trial.
- Covers topics like sales strategies, CRM management, and business communication.
- https://www.linkedin.com/learning
5. Alison
- Free courses in business management, sales, and entrepreneurship.
- Certifications available in many topics relevant to business development.
- https://alison.com/
6. Google Digital Garage
- Provides free business and digital marketing courses.
- Great for learning digital skills and strategies for business growth.
- (https://learndigital.withgoogle.com/digitalgarage)
7. FutureLearn (Free Courses)
- Offers free courses from international universities on business management and development.
- Topics include market analysis, business strategy, and innovation.
- https://www.futurelearn.com/
8. Skillshare (Free Trial)
- 7-day free trial with access to various courses on sales, negotiation, and business strategy.
- Also includes networking and personal branding classes.
- https://www.skillshare.com/
9. OpenLearn by The Open University
- Offers free business courses with certificates.
- Topics include sales management, leadership, and communication.
- https://www.open.edu/openlearn
10. MIT OpenCourseWare
- Provides free access to MIT's course materials on entrepreneurship and business management.
- Includes lectures, assignments, and self-paced study materials.
- https://ocw.mit.edu
Join @coderslearning for more! β
KEEP LEARNING ππ
1. Coursera (Free Courses)
- Offers courses on sales, business strategies, negotiation, and market analysis from top universities.
- Look for courses with a free auditing option.
- [Link](https://www.coursera.org/)
2. edX
- Provides free courses in business development, leadership, and strategic management.
- Top universities like Harvard and MIT offer courses here.
- [Link](https://www.edx.org/)
3. HubSpot Academy
- Known for its free certifications in Inbound Sales, Sales Management, and Business Development.
- Great for anyone interested in customer relations and sales tactics.
- https://academy.hubspot.com/
4. LinkedIn Learning (Free Trial)
- Offers a wide range of business development courses with a free one-month trial.
- Covers topics like sales strategies, CRM management, and business communication.
- https://www.linkedin.com/learning
5. Alison
- Free courses in business management, sales, and entrepreneurship.
- Certifications available in many topics relevant to business development.
- https://alison.com/
6. Google Digital Garage
- Provides free business and digital marketing courses.
- Great for learning digital skills and strategies for business growth.
- (https://learndigital.withgoogle.com/digitalgarage)
7. FutureLearn (Free Courses)
- Offers free courses from international universities on business management and development.
- Topics include market analysis, business strategy, and innovation.
- https://www.futurelearn.com/
8. Skillshare (Free Trial)
- 7-day free trial with access to various courses on sales, negotiation, and business strategy.
- Also includes networking and personal branding classes.
- https://www.skillshare.com/
9. OpenLearn by The Open University
- Offers free business courses with certificates.
- Topics include sales management, leadership, and communication.
- https://www.open.edu/openlearn
10. MIT OpenCourseWare
- Provides free access to MIT's course materials on entrepreneurship and business management.
- Includes lectures, assignments, and self-paced study materials.
- https://ocw.mit.edu
Join @coderslearning for more! β
KEEP LEARNING ππ
π8
Many of you have been asking for a top-notch, budget-friendly Full Stack course. π Iβm excited to introduce LearnTubeβs latest offeringβnow backed by Google! π
Donβt miss out on this opportunity to level up your skills with the best in the industry.
Highlights:-
πPersonalised Full Stack Course.
π°Verified Complete Full Stack Certificate recognized by Google, Amazon and 900 more.
π 4+ Industry projects.
All of these in just Rs. 399 with Life Time Access
Limited time offer. Click Belowπ
https://tinyurl.com/FullStackXCoCL
Donβt miss out on this opportunity to level up your skills with the best in the industry.
Highlights:-
πPersonalised Full Stack Course.
π°Verified Complete Full Stack Certificate recognized by Google, Amazon and 900 more.
π 4+ Industry projects.
All of these in just Rs. 399 with Life Time Access
Limited time offer. Click Belowπ
https://tinyurl.com/FullStackXCoCL
π4
πΌ Apply & Share Job Openings!π
π Hiring for the Role of GenAI Development Intern!
Experience: Freshers
Expected Salary: INR 20k - 35k /month
Apply here: https://tinyurl.com/5n7ttju6
π Adani is hiring for the role of Frontend Developer!
Experience: Freshers
Expected Salary: INR 4 - 11.6 LPA
Apply here: https://tinyurl.com/3yenxh37
π Hiring for the role of Programmatic Advertising Executive!
Experience: Freshers
Expected Salary: INR 10k - 15k / Month
Apply here: https://tinyurl.com/yckn9f47
π MAERSK is hiring for Software Engineer - Python Developer
Experience: Freshers
Expected Salary: INR 5 - 11.5 LPA
Apply here: https://tinyurl.com/zsxvpuer
π Hiring for the Role of Software Development Engineer Intern!
Experience: Freshers
Expected Salary: INR 16k - 36k /month
Apply here: https://tinyurl.com/5n972e4k
π Genpact is hiring for the role of Process Developer - Contract Management!
Experience: Freshers
Expected Salary: INR 4 - 9 LPA
Apply here: https://tinyurl.com/yd6myczs
π Hiring for the role of Software Developer in Test(SDET)!
Experience: Freshers
Expected Salary: INR 10k - 15k / Month
Apply here: https://tinyurl.com/y27tf3f3
π Oracle is hiring for the role of Software Developer!
Experience: 0 - 3 years
Expected Salary: βΉ10 LPA - βΉ25 LPA
Apply here: https://tinyurl.com/55yv2wpd
π Hiring for the role of UI/UX Designer!
Experience: Freshers
Expected Salary: INR 4,00,000 / Year
Apply here: https://tinyurl.com/4788a5pe
π Hiring for the Role of Cyber Security
Experience: Freshers
Expected Salary: INR 20k / Month
Apply here: https://tinyurl.com/3kryh3ae
π SAP is hiring for the role of Senior DevOps Engineer!
Experience: Freshers / Experienced
Expected Salary: INR 10 - 25 LPA
Apply here: https://tinyurl.com/bdfntksb
πJoin WhatsApp Channel: https://whatsapp.com/channel/0029Vaog2gOLNSa9xawdms1m
πTelegram Link: https://t.me/Offcampusjobupdateslive
ππ Share this Job info to all your Friends and Groups β
π Hiring for the Role of GenAI Development Intern!
Experience: Freshers
Expected Salary: INR 20k - 35k /month
Apply here: https://tinyurl.com/5n7ttju6
π Adani is hiring for the role of Frontend Developer!
Experience: Freshers
Expected Salary: INR 4 - 11.6 LPA
Apply here: https://tinyurl.com/3yenxh37
π Hiring for the role of Programmatic Advertising Executive!
Experience: Freshers
Expected Salary: INR 10k - 15k / Month
Apply here: https://tinyurl.com/yckn9f47
π MAERSK is hiring for Software Engineer - Python Developer
Experience: Freshers
Expected Salary: INR 5 - 11.5 LPA
Apply here: https://tinyurl.com/zsxvpuer
π Hiring for the Role of Software Development Engineer Intern!
Experience: Freshers
Expected Salary: INR 16k - 36k /month
Apply here: https://tinyurl.com/5n972e4k
π Genpact is hiring for the role of Process Developer - Contract Management!
Experience: Freshers
Expected Salary: INR 4 - 9 LPA
Apply here: https://tinyurl.com/yd6myczs
π Hiring for the role of Software Developer in Test(SDET)!
Experience: Freshers
Expected Salary: INR 10k - 15k / Month
Apply here: https://tinyurl.com/y27tf3f3
π Oracle is hiring for the role of Software Developer!
Experience: 0 - 3 years
Expected Salary: βΉ10 LPA - βΉ25 LPA
Apply here: https://tinyurl.com/55yv2wpd
π Hiring for the role of UI/UX Designer!
Experience: Freshers
Expected Salary: INR 4,00,000 / Year
Apply here: https://tinyurl.com/4788a5pe
π Hiring for the Role of Cyber Security
Experience: Freshers
Expected Salary: INR 20k / Month
Apply here: https://tinyurl.com/3kryh3ae
π SAP is hiring for the role of Senior DevOps Engineer!
Experience: Freshers / Experienced
Expected Salary: INR 10 - 25 LPA
Apply here: https://tinyurl.com/bdfntksb
πJoin WhatsApp Channel: https://whatsapp.com/channel/0029Vaog2gOLNSa9xawdms1m
πTelegram Link: https://t.me/Offcampusjobupdateslive
ππ Share this Job info to all your Friends and Groups β
π9