Coders Learning
34.5K subscribers
107 photos
1 video
103 files
392 links
We provide Webinars, Jobs, Resources, Books, Notes, and Unlimited Free Courses with CERTIFICATES!โ˜‘๏ธ

For Promotions:
Mail: coderslearning07@gmail.com

Join us on WhatsApp!๐Ÿ‘‡

https://whatsapp.com/channel/0029Vajh8uc2ER6gzBxUYs1U
Download Telegram
Company: GE Appliances

Position: Process Associate - Developer Support Engineering!

Salary: INR 4 to 8 LPA*

Degree: Bachelor's Degree

Experience: 0 to 3 years

Location: Bengaluru, India.

Apply Now: Click here to apply
Coders Learning pinned ยซ"Hey everyone!"๐Ÿ˜‡ If you haven't already, please join our Telegram discussion group. Trust me, you don't want to miss out on the special conversations we're having.โœจ https://t.me/coderslearningg https://t.me/coderslearningg https://t.me/coderslearningg โ€ฆยป
Company: Hitachi

Position: Research Analyst

Salary: Not Disclosed

Degree: Bachelor's Degree

Experience: Freshers

Location: Gurgaon, India.

Apply Now: Click here to apply
Must know things for FRONTED DEVELOPMENT ๐Ÿ—๏ธ

โžก๏ธ HTML + CSS

โ–ถ๏ธ Build basic projects

โžก๏ธ Git + GitHub

โžก๏ธ Javascript

โžก๏ธ Javascript framework

โ–ถ๏ธ Build Projects
๐Ÿ‘2
Top 9 Http Methods-

GET ๐Ÿง - Retrieve data from a resource.
HEAD ๐ŸŽง - Retrieve the headers of a resource.
POST ๐Ÿ“ฎ - Submit data to a resource.
PUT ๐Ÿ“ฅ - Update an existing resource or create a new resource.
DELETE ๐Ÿ—‘๏ธ - Remove a resource.
CONNECT ๐Ÿ”— - Establish a network connection for a resource.
OPTIONS โš™๏ธ - Describe communication options for the target resource.
TRACE ๐Ÿ•ต๏ธโ€โ™‚๏ธ - Retrieve a diagnostic trace of the request.
PATCH ๐Ÿฉน - Apply a partial update to a resource
Company: Google

Position: Embedded Software Engineer

Salary: INR 20 to 35 Lakh*

Degree: Bachelor's Degree

Experience: Freshers

Working Days: 5 Days

Job Type: In Office

Job Timing: Full time

Location: Bengaluru, India.

Apply Now: Click here to apply
๐Ÿ‘1
Company: Siemens

Position: Trainee - Engineer

Salary: Not Disclosed

Degree: Bachelor's Degree

Experience: 0 to 2 years

Location:Bengaluru, India.

Apply Now: Click here to apply
Company: Bentley Systems

Position: Associate Software Quality Analyst

Salary: Not Disclosed

Degree: Bachelor's Degree

Experience: 0 to 2 years

Location: Kolkata, India.

Apply Now: Click here to apply
Boston Consulting Group is hiring for the role of AI Engineer!

Position: AI Engineer

Salary: Not Disclosed

Degree: Any Degree

Experience: Freshers

Location: Gurgoan, Mumbai, India.

Apply Now: Click here to apply
Company: Cummins

Position: Integration and API Developer

Salary: Not Disclosed

Degree: Any Degree

Experience: Freshers

Location: Pune, India.

Apply Now: Click here to apply
๐Ÿ‘1
Company: CGI

Position: DevOps Engineer

CTC: Up To 7 LPA*

Degree: Bachelorโ€™s Degree or Equivalent

Batch: 2020/2021/2022/2023/2024

Experience: 0 - 3 Year(s)

Location: Bengaluru, India

Apply Now: Click here to apply
Quick Recap of SQL Concepts

1. What is SQL?
SQL (Structured Query Language) is a standard programming language used for managing and manipulating relational databases.

2. What are the different types of SQL commands?
- Data Definition Language (DDL): Used to define the structure of database objects (CREATE, ALTER, DROP).
- Data Manipulation Language (DML): Used to manipulate data in the database (SELECT, INSERT, UPDATE, DELETE).
- Data Control Language (DCL): Used to control access and permissions on database objects (GRANT, REVOKE).

3. What is a database schema?
A database schema is a logical structure that represents the layout of the database, including tables, columns, relationships, constraints, and indexes.

4. What is a primary key?
A primary key is a unique identifier for each record in a table. It ensures that each row in the table is uniquely identified and helps maintain data integrity.

5. What is a foreign key?
A foreign key is a column or set of columns in one table that references the primary key in another table. It establishes a relationship between the two tables.

6. What is normalization in SQL?
Normalization is the process of organizing data in a database to reduce redundancy and dependency by dividing large tables into smaller tables and defining relationships between them.

7. What is an index in SQL?
An index is a data structure that improves the speed of data retrieval operations on a database table. It allows for faster searching and sorting of data based on specific columns.

8. What is a JOIN in SQL?
A JOIN is used to combine rows from two or more tables based on a related column between them. Common types of JOINs include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

9. What is a subquery in SQL?
A subquery is a query nested within another query. It allows you to perform complex queries by using the result of one query as input for another query.

10. What is the difference between SQL and NoSQL databases?
- SQL databases are relational databases that store data in structured tables with predefined schemas, while NoSQL databases are non-relational databases that store data in flexible, schema-less formats.
- SQL databases use SQL for querying and manipulating data, while NoSQL databases use various query languages or APIs.
- SQL databases are suitable for complex queries and transactions, while NoSQL databases are better for handling large volumes of unstructured data and scaling horizontally.

Here you can find essential SQL Interview Resources๐Ÿ‘‡
@coderslearning

Like this post if you need more ๐Ÿ‘โค๏ธ

Hope it helps :)
โค1
List of most asked Programming Interview Questions.

Are you preparing for a coding interview? This tweet is for you. It contains a list of the most asked interview questions from each topic.

Arrays

- How is an array sorted using quicksort?
- How do you reverse an array?
- How do you remove duplicates from an array?
- How do you find the 2nd largest number in an unsorted integer array?

Linked Lists

- How do you find the length of a linked list?
- How do you reverse a linked list?
- How do you find the third node from the end?
- How are duplicate nodes removed in an unsorted linked list?

Strings

- How do you check if a string contains only digits?
- How can a given string be reversed?
- How do you find the first non-repeated character?
- How do you find duplicate characters in strings?

Binary Trees

- How are all leaves of a binary tree printed?
- How do you check if a tree is a binary search tree?
- How is a binary search tree implemented?
- Find the lowest common ancestor in a binary tree?

Graph

- How to detect a cycle in a directed graph?
- How to detect a cycle in an undirected graph?
- Find the total number of strongly connected components?
- Find whether a path exists between two nodes of a graph?
- Find the minimum number of swaps required to sort an array.

Dynamic Programming

1. Find the longest common subsequence?
2. Find the longest common substring?
3. Coin change problem?
4. Box stacking problem?
5. Count the number of ways to cover a distance?

Best Programming Resources: @coderslearning

All the best ๐Ÿ‘๐Ÿ‘
๐Ÿ‘1
How many times will "Hello" be printed of python code?

a) 1
b) 2
c) 3
d) 4


Comment down below! ๐Ÿ‘‡
Company: Genpact

Position: Associate-Procurement

Salary: Not Disclosed

Degree: Diploma CS/IT or Any Graduates

Experience: Freshers

Location: Gurgaon, India.

Apply Now: Click here to apply
๐Ÿ‘1
Company: Capgemini

Position: Frontend Developer

Salary: 4.5 LPA to 7 LPA

Degree: Diploma CS/IT or Any Graduates

Experience: Freshers / Experienced

Location: Pune, India.

Apply Now: Click here to apply
๐Ÿ‘1
Complete Roadmap to Become a Java Developer:

1. Core Java (fundamentals of Java programming language)
2. Maven
3. Spring Core, Spring MVC, and Spring AOP
4. Spring Boot and REST APls (Restful Web Services)
5. Spring Data - JPA, Hibernate (with H2, MySQL, MongoDB and Redis)
6. Testing (JUnit 5, JPA Test, MockMVC, etc.)
7. Spring Security
8. Microservices and Spring Cloud
9. Docker and Kubernetes
10. Deployment of Spring Boot Apps on Cloud (AWS)
11. Optional - Serverless, Batch processing etc
Company: HP

Position: Intern

Salary: โ‚น 30k / month

Degree: Any Graduates

Experience: Freshers

Location: Bengaluru, India.

Apply Now: Click here to apply
Company: Wipro

Position: Data Analyst

Salary: INR 5-7 LPA*

Degree: Bachelor's/Master's Degree

Batch: 18/19/20/21/22/23/2024

Experience: Freshers/Experienced

Location: Across, India

Apply Now:- Click here to apply