Skip to main content

Career guidance

 Top 10 Sites for your career

1. Linkedin

2. Indeed

3. Naukri

4. Instahyre

5. Monster

6. Careercloud

7. Dice

8. CareerBuilder

9. Jibberjobber

10. Glassdoor


10 Tech Skills in demand


1. Machine Learning

2. Mobile Development

3. SEO/SEM Marketing

4. Data Visualization

5. Data Engineering

6. UI/UX Design

7. Cyber-security

8. Cloud Computing/AWS

9. Blockchain

10. IOT


10 Sites for Free Online Education


1. Coursera

2. edX

3. Khan Academy

4. Udemy

5. FreeCodeCamp

6. MIT OpenCourseWare

7. Stanford Online

8. Codecademy

9. ict iitr

10. NPTEL


10 Sites to learn Excel for free


1. Microsoft Excel Help Center

2. Excel Exposure

3. Chandoo

4. Excel Central

5. Contextures

6. Excel Hero b.

7. Mr. Excel

8. Improve Your Excel

9. Excel Easy

10. Excel Jet


10 Sites to review your resume for free


1. Zety Resume Builder

2. Resumonk

3. Resume dot com

4. VisualCV

5. Cvmaker

6. ResumUP

7. Resume Genius

8. Resumebuilder

9. Resume Baking

10. Enhancy


10 Sites for Interview Preparation


1. Ambitionbox

2. AceThelnterview

3. Geeksforgeeks

4. Leetcode

5. Gainlo

6. Careercup

7. Codercareer

8. InterviewUp

9. InterviewBest

10. Indiabix

Comments

Popular posts from this blog

Create a socket for HTTP for web page upload and download

Create a socket for HTTP for web page upload and download. Aim: To write a java program for socket for HTTP for web page upload and download . Algorithm 1.Start the program. 2.Get the frame size from the user 3.To create the frame based on the user request. 4.To send frames to server from the client side. 5.If your frames reach the server it will send ACK signal to client otherwise it will send NACK signal to client. 6.Stop the program Program : Client import javax.swing.*; import java.net.*; import java.awt.image.*; import javax.imageio.*; import java.io.*; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; public class Client{ public static void main(String args[]) throws Exception{ Socket soc; BufferedImage img = null; soc=new Socket("localhost",4000); System.out.println("Client is running. ");  try { System.out.println("Reading image from disk. "); im...

Write an HTML program to design an entry form of student details and send it to store at database server like SQL, Oracle or MS Access

Write an HTML program to design an entry form of student details and send it to store at database server like SQL, Oracle or MS Access <!DOCTYPE html> <html> <head> <title>PHP insertion</title> <link href="css/insert.css" rel="stylesheet"> </head> <body> <div class="maindiv"> <!--HTML Form --> <div class="form_div"> <div class="title"> <h2>Insert Data In Database Using PHP.</h2> </div> <form action="insert.php" method="post"> <!-- Method can be set as POST for hiding values in URL--> <h2>Form</h2> <label>Name:</label> <input class="input" name="name" type="text" value=""> <label>Email:</label> <input class="input" name="email" type="text" value=""> <label>Contact:</label> <inp...

Write a code simulating PING and TRACEROUTE commands

  Write a code simulating PING command     Aim:   To Write the java program for simulating ping command   Algorithm Step 1: start the program. Step 2: Include necessary package in java. Step 3: To create a process object p to implement the ping command. Step 4: declare one BufferedReader stream class object. Step 5: Get thedetails of the server          5.1: length of the IP address.          5.2: time required to get the details.          5.3: send packets , receive packets and lost packets.          5.4: minimum ,maximum and average times. Step 6: print the results. Step 7:Stop the program.   Program:   import java.io.*; import java.net.*; class pingserver { public static void main(String args[]) { try { String str; System.out.print(" Enter...