Lexis Tech
An Embedded Software Development Organization - Opportunities for Freshers Provides training opportunities for freshers in:
1. Android Application
5.
Embedded Systems - Micro Controller
2. Embedded Systems - ARM Processors
3. Advanced course - Linux OS, Device Drivers and Porting
4. Android Porting and HAL
09/08/2014
Registration open at before 20 august 2014.
call on +91-79-2321-3088, +91-7048336378.
Classes start from September 2014 for embedded c programming + controller + Linux + A2Z.
live projects free + 100% job assistance.
registration open.
call on +91-79-2321-3088, +91-7048336378.
11/06/2014
Internship (Training) opportunity for MCA final years students with Lexis.
Opening Details
#1 Training - Web Technology
Number of openings: 2
Qualification Criteria:
Minimum overall percentage in last two years should not be less than 60%
Should have developed at least one web project during MCA
Should have worked on PHP/Python
Should have knowledge of HTML5, CSS3 and JS/JQuery
Passionate to build career in web technologies
Should have knowledge of Adobe Photoshop, Illustrator
#2 Training - Mobile Application Development
Number of openings: 2
Qualification Criteria:
Minimum overall percentage in last two years should not be less than 60%
Should have developed at least one web project during MCA
Passionate to build career in mobile application and web technologies
Should have knowledge of Java, HTML5, CSS3 and JS/JQuery
Passionate to build career in mobile applications and web technologies
Should have knowledge of Adobe Photoshop, Illustrator
Selection will be through an interview. Training period is 6 months with an intent
to hire. The decision to hire will be made based on performance during the training
period. The candidates will work on the live project during their training. The
training is a great opportunity to learn industrial process, development tools,
sharpen skillets and attain industrial experience. It is NOT a paid training and NO
stipend will be paid.
contact Us:- +91-9428234071
www.lexistech.in
Embedded System, Android Application, Android HAL and Microcontroller 8051/PIC College Project... Lexis Technology offers Embedded systems, Android, Microcontroller, Linux device drivers training course at Gandhinagar, Ahmedabad Gujarat, India, eLearning, online course
25/04/2014
http://lexistech.in/blog/
Embedded system is some combination of software and hardware part which is use only for specific purpose.
Examples:-
Digital Clocks, Digital Calculators, Smart Phones, Video Games, Robots, Fuel Indicator, Google Glass, ipods, Smart Energy Meters, etc..
23/04/2014
Question on C String/Array:-
How to write a program which search pattern in the text in linear time. by using kmp method.
Input:-
Text = "abcdabcd";
Pattern = "bcd";
Output:- pattern at index 5.
Hint:-
1- encode the pattern and creat pi array(kmp array).
2- keep incrementing i and j when pattern and text matches.
3- if pattern and text fail when j = 0 the set i i+1.
4- if match fail j != 0 then j = arr[j-1].
5- when j is equal to pattern length means pattern found in string.
Ans:-
http://lexistech.in/blog/blog/2014/04/23/pattern-matching-in-linear-time-using-kmp-method-2/
or
http://lexistech.in/blog
Pattern matching in linear time using kmp method | Lexis Blog Pattern matching in linear time using kmp methodPosted on April 23, 2014 by babbelal 0 Question: How to write a program which search pattern in the text in linear time. by using kmp method. Input:- Text = “abcdabcd”; Pattern = “bcd”; Output:- pattern at index 5. Hint:- 1- encode the pattern a…
14/04/2014
Question: How to write a factorial program using recursive function.
Eg:
Input:- 5
Output:- = 120
Hint:-
1- pass at first time number.
2- and again pass number-1.
Ans:-http://lexistech.in/blog/blog/2014/04/14/how-to-write-a-factorial-program-using-recursive-function/
How to write a factorial program using recursive function. | Lexis Blog How to write a factorial program using recursive function.Posted on April 14, 2014 by babbelal Question: How to write a factorial program using recursive function. Eg: Input:- 5 Output:- 5*4*3*2*1= 120 Hint:- 1- pass at first time number. 2- and again pass number-1. in…
12/04/2014
Lexis Blog | Helping Community:-
http://lexistech.in/blog/
Lexis Blog | Helping Community Short a array/string by using selection sort method.Posted on April 5, 2014 by babbelal Question: How to write a program which short a array/string by using selection sort method. Eg: INstr = "dbacyz"; OUTPUTsrt = "abcdyz"; Hint:- 1- Do ther first iteretaion of selection sort so that lowest value re...
10/04/2014
Question: How to write a program which sort an array/string by using merge
sort algorithm.
Eg:
INstr = "zyxbacd";
OUTPUTsrt = "abcdxyz";
Hint:-
1- Divide the array in smaller sub arrays having only 1 element in each.
2- Merge taking two sub arrays in larger sorted array.
The overall logic is to merge sorted arrays.
Ans:-http://lexistech.in/blog/blog/2014/04/10/short-a-arraystring-by-using-merge-sort-method/
Short a array/string by using merge sort method. | Lexis Blog Short a array/string by using merge sort method.Posted on April 10, 2014 by babbelalQuestion: How to write a program which sort an array/string by using merge sort algorithm. Eg: INstr = "zyxbacd"; OUTPUTsrt = "abcdxyz"; Hint:- 1- Divide the array in smaller sub arrays having only 1 element in each....
09/04/2014
Question: How to write a program which pattern match in array/string by using brute force method.
Eg:
Input:-
Text = "ababc";
Patern = "abc";
Output:- position b/w 2-4.
Hint:-
1- Do ther first iteration of pattern match(all character continue match) from Text.
2- if all charecter of pattern match then it position otherwise pattern match start from text[1].
Ans:-
http://lexistech.in/blog/blog/2014/04/10/patern-matching-code-for-arraystring-by-using-broute-force-method/
babbelal | Lexis Blog patern matching by using broute force method.Posted on April 9, 2014 by babbelalQuestion: How to write a program which patern match in array/string by using broute force method. Eg: Input:- Text = “ababc”; Patern = “abc”; Output:- position b/w 2-4. Hint:- 1- Do ther first iteretaion of patern m...
04/04/2014
Question on C String/Array:-
Question: How to write a program which short a array/string.
Eg:
INstr = "dclsm";
OUTPUTsrt = "cdlms";
Hint:-
1- Do ther first iteretaion of bubble sort so that highest value reach at the end of array
2- Do the bubble sort of remaining array of len-1
Ans:- click below link
http://lexistech.in/blog/blog/author/babbelal/
Question on C String/Array:-
Question: How to write a program which Reverse word in string.
Eg:
INstr = "How are you";
OUTPUTsrt = "you are How";
Ans:- click below link
http://lexistech.in/blog/blog/2014/03/30/reverse-word-in-string-2/
Click here to claim your Sponsored Listing.
Category
Contact the school
Telephone
Website
Address
IT Tower/1, Infocity
Gandhinagar
382009