التخطي إلى المحتوى الرئيسي

Latest Job Alert on Java, .NET, PHP, Android, Django, Python and QA Profile:-

 

Latest Job Alert on Java, .NET, PHP, Android, Django, Python and QA Profile:-



























Golden Eagle It Technologies Pvt Ltd #Ruby_On_Rails_Developer #Angular_Developer #Ionic_Developer #Python_Django_Developer Experience- 1 to 4 years Salary- No bar for the right candidate Location- #Indore Note- #immediate_joiners only Email resume to- hr@geitpl.com





Hello, Greetings from GraffersID! We are hiring for multiple Profile 1. Meanstack 2. Mernstack 3. BDE 4. Python 5. Wordpress 6. PHP Developer 7. Angular Developer 8. ReactJS Exp: 1-5 yrs Location: Indore Currently, work from home 5 Days Working Apply: damini.agrawal@graffersid.com / 9644668825 Thanks.



                        
 Greeting of the Day!! We are hiring Senior Software Developer (ROR) Location - Indore Package - Hike on CTC So if you are looking for job change , kindly share your CV at hr@oaktreecloud.com Thankyou


we at SMT GROUP are hiring a Backend developer(CI& Laravel) for our Indore team. Let me know if you are ready for a quick switch. Salary is no bar for eligible candidates. Looking forward to hearing from you soon. Thanks Regards Iram Ahmed HR Executive hrsmt007@gmail.com 0731-4980308



Urgent #hiring

Techstone Infotech is hiring for #Business Development Executive

Salary-No bar for deserving candidate
Experience-Fresher and Experience both can apply.
#Walkin
Location- Indore(M.P.)
Interested candidates can share their resume at:
charu.techston@gmail.com
Hurry up! We have limited seats.


We are looking for a Shopify Developer to join our growing team.
Experience – 1+ Year
Location – Indore

You will work with our project team to execute high-quality development projects.

We believe that our employees are our biggest asset! We strive to provide them with new and challenging opportunities to hone their technology skills and fast-paced career growth.
Write to us at hr.votivetech@gmail.com
if you wish to be a part of our dynamic team
contact us:7694016088

We are hiring for PHP + Laravel Developer.
Experience - 6 Years
Location - Pithampura
Package - Hike on current CTC
Interested candidates can drop their resume at lavesh.jain@teamarcs.com



Attention Job seekers !!!

Edithtech Infrastructure Pvt. Ltd. is hiring for multiple position with #good_hike.

1. Full STack Developer
Skills : Front end + Back end
Front end : (HTML, CSS3, Bootstrap, Javascript, JQuery, AJAX)
Back end: (PHP and Framework) + CI+Laravel
Experience : 6 months - 3 years

2. React Js developer
Experience : 2 years

3. React Native Developer:
Experience: 2 years

4. NodeJs Developer
Experience: 2 years

Loctaion - #indore
#interested candidates can share their CV at edithtechis@gmail.com



Position - IT Recruiter
Experience - 6 Months - 1 Year
Joining - Immediate
Location - Indore

Send your resume at careers@mmfinfotech.com
Visit our Website www.mmfinfotech.com



Hello Connections,
Hope you all are doing well

We are hiring on urgent basis
Position- Android/Flutter or React Native Developer

Location - Indore

Experience - Min. 1 Year

CTC - Hike on current CTC

#Candidate must have good communication skills
#Immediate Joiners
#Must have good knowledge of flutter or react native with android development

Interested candidates can share cv at hr@mactosys.com or call on 0731-4964875

Thanks & Regards
Deepika Sharma
HR Mactosys Software Solutions


Urgently required, Immediate Joiners
Experience above 3 to 15 years can only apply

1) NodeJS Developer ( NodeJS, MySQL)

2) AEM Developer ( AEM Forms )

3) ReactJS Developer ( ReactJS, AngularJS )

4) Java Lead ( Java, Spring, Hibenrate)

5) UI Architect ( Angular, JavaScript)

6) UI Developer (Angular8, Tyescript, HTML, CSS)

7) Full Stack Developer ( Angular, .Net Core )

8) Azure Developer ( Azure, .Net Core )

9) SQL DBA/Developer ( MS SQL, MySQL )

Share your resume on talentactin@gmail.com


Hello Connections,

Votive Technologies (India) Indore is hiring for multiple profiles:

1. #PHP_Developer
#IOS_Developerr
#Wordpress_Developerr
#Shopify_Developerr
#QAA
6. #Android_Developer
7. #Hr

Experience:- 1 to 4 Years
Location:- Indore
#Immediate_JOINERS

I would request to all my contacts please share or like my post. and comment for better reach to needy one

Interested candidates can share their resume at #hr.votivetech@gmail.com or call us at 9993776088









تعليقات

المشاركات الشائعة من هذه المدونة

Uncontrolled form input in React-JS

  Uncontrolled form input in React-JS? If we want to take input from users without any separate event handling then we can uncontrolled the data binding technique. The uncontrolled input is similar to the traditional HTML form inputs. The DOM itself handles the form data. Here, the HTML elements maintain their own state that will be updated when the input value changes. To write an uncontrolled component, you need to use a ref to get form values from the DOM. In other words, there is no need to write an event handler for every state update. You can use a ref to access the input field value of the form from the DOM. Example of Uncontrolled Form Input:- import React from "react" ; export class Info extends React . Component {     constructor ( props )     {         super ( props );         this . fun = this . fun . bind ( this ); //event method binding         this . input = React . createRef ();...

JSP Page design using Internal CSS

  JSP is used to design the user interface of an application, CSS is used to provide set of properties. Jsp provide proper page template to create user interface of dynamic web application. We can write CSS using three different ways 1)  inline CSS:-   we will write CSS tag under HTML elements <div style="width:200px; height:100px; background-color:green;"></div> 2)  Internal CSS:-  we will write CSS under <style> block. <style type="text/css"> #abc { width:200px;  height:100px;  background-color:green; } </style> <div id="abc"></div> 3) External CSS:-  we will write CSS to create a separate file and link it into HTML Web pages. create a separate file and named it style.css #abc { width:200px;  height:100px;  background-color:green; } go into Jsp page and link style.css <link href="style.css"  type="text/css" rel="stylesheet"   /> <div id="abc"> </div> Exam...

JDBC using JSP and Servlet

JDBC means Java Database Connectivity ,It is intermediates from Application to database. JDBC has different type of divers and provides to communicate from database server. JDBC contain four different type of approach to communicate with Database Type 1:- JDBC-ODBC Driver Type2:- JDBC Vendor specific Type3 :- JDBC Network Specific Type4:- JDBC Client-Server based Driver  or JAVA thin driver:- Mostly we prefer Type 4 type of Driver to communicate with database server. Step for JDBC:- 1  Create Database using MYSQL ,ORACLE ,MS-SQL or any other database 2   Create Table using database server 3   Create Form according to database table 4  Submit Form and get form data into servlet 5  write JDBC Code:-     5.1)   import package    import java.sql.*     5.2)  Add JDBC Driver according to database ide tools     5.3)  call driver in program         ...