Data structures java unix
Top sales list data structures java unix
Indore (Madhya Pradesh)
Brand new book by famous Author Hemant Kumar for data structure and algorithms in Java with step by step explanation. Includes time complexity of all with explanation. A must have for all those pursuing computer engineering
See product
Bareilly (Uttar Pradesh)
Data Structures, Unix Programming, Numerical Analysis, Computer Networking, ASP dot NET, UML, Oracle, XML, C/C++, C#, Advanced Java Server Programming, Pascal Programming, COBOL Programming, Web Technologies - HTML/DHTML/Perl/CGI/Javascript, Client Server Computing and many other technologies/topics books are available in a good condition for sale at flat [40%] price of the book.
Feel free to contact.
Note: Few of the books are sold out.
See product
Bangalore (Karnataka)
MCA Correspondence College in Bangalore Call9916031696 Duration: 3 Years Medium: English Eligibility: BCA/BE/B.Tech/B.SC Course Structure: First Year Subject: • Problem Solving and Programming • Discrete Mathematics • Computer Organization • Data Structures • Database Management Systems • Communication Skills • Lb-I: C & Data Strucures • Lab-II Database Management Systems 2nd year • Operation Systems • Data communication & Computer Networks • Object Oriented Technologies and Java programming • Software Engineering • Design and Graphics and Multimedia • Lab-I Operating Systems • Lab-II Java Programming 3rd Year • Object Oriented Analysis and Design • Artificial Intelligence and Knowledge Management • Advanced Internet Technologies • Lab – I :Advanced internet Technologies • Project Work Viva-Voce Also We Do Offer: 10/SSLC,PUC,BA,B.com, MA, M.Com, BCA, MCA, BBA, MBA, Diploma, B-Tech, M-Tech, Ex-MBA, B.SC, M.SC NTT And More Other Courses….Call 9916031696 For Admission Call 9916031696 Koramangala
See product
Madurai (Tamil Nadu)
All books are in good condition.These books will be helpful for those who are eager to work in IT field. As AI and Data Science are the future and upcoming technologies basics for these will be covered by these books. It also helps learner to build his/her own mobile applications.
RS. 50 each book. If you buy complete set books RS.35 to 40 each book. Total of 13 books.
1) Information Storage and Management: Storing, Managing, and Protecting Digital Information in Classic, Virtualized, and Cloud Environments, 2nd Edition
2)Introduction to the Design and Analysis of Algorithms by Levitin Anany
3)Computer Graphics C version by Donald Hearn M. Pauline Baker
4)Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and Iterative Development by Craig Larman
5)Digital Principles and System Design by A.P.Godse
6)Data Structures using C ISRD Group
7)Fundamental of Mobile Computing by Prasant Kumar Pattnaik, Rajib Mall
8)Understanding Pointers in C by Yashavant Kanetkar
9)Programming ANSI C by E.Balagurusamy
10)Computer Organization by Carl Hamacher, Zvonko Vranesic, Safwat Zaky
11)Operating System Concepts by Abraham Silberschatz, Peter B. Galvin, Greg Gagne
12) JAVA Fundamentals by Herbert Schildt, Dale Skrien
13)Software Engineering by Roger S. Pressman
See product
India
Overview: Application programming interface (API) specifies how some software components should interact with each other. In addition to accessing databases or computer hardware, such as hard disk drives or video cards, an API can be used to ease the work of programming graphical user interface components. In practice, many times an API comes in the form of a library that includes specifications for routines, data structures, object classes, and variables. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
Hyderabad (Andhra Pradesh)
I often get mails from people asking what are the questions generally asked in Weblogic by interviewers. Generally for an Administrator’s positions, in addition to Weblogic questions, there are a lot of Unix questions and a few questions related to process and case handling. These are the important questions that I cover while interviewing. 1. How do you differentiate between a server hang and server crash issue? When a Server crahes, the JAVA process no longer exists. When the Server is hung, it stops responding. We can use the weblogic.ADMIN utilty to ping the server. In case of a hang situation we can take multiple thread dumps and analyze the cause of hang. 2. What can be the various reasons for a server crash? a) Native IO b) SSL Native Libraries c) JVM d) Supported Configuration e) JDBC Driver issue 3. How do you troubleshoot a crash? JVM crash generates a hs_err_pid file. We need to look into the stack trace of the hs_err_pid file . If the thread is from a native io, we need to disable native io. if the stack trace is from the driver, we need to get in touch with the drive team. Quite possibly its a problem with driver. Changing the type of driver can be a workaround. If the thread shows it coming from an optimzed code, we can turn of optimization. If the stack is from native calls of application, its a bug with the application and it has to b modified. 4. Ho do you troubleshoot Server Hang? We can use java weblogic.Admin PING to check if we get a normal response. We need to take multiple thread dumps with kill -3 pid on unix and CTLR Break on Windows. Analyze the thread dump to find the root cause. 5. What can be the reasons of Server hang? Memory leak, databse query taking a long time to return, Deadlock. 6. What is memory leak? Memory leak is when objects are not romved from the heap even when they are not required. 7. What are the various causes for OUT OF MEMORY? a) Insufficient heap size, not able to match the extra load. b) Objects licing too long, like HTTP Sessions. c) Memory leak in application code. d) Full GC not happening due to JVM Bug. 8. How to troubleshoot and overcome such issues? Gather memory data by enabling GC verbose. If its due to Http Session, timing out http session after certain interval might help. Look into the code for jdbc connection handling. Optimizing the heap size according to the load. 9. When does High CPU Usage occur? It occurs when one process or one thread utilizes unexpectedly high proportion of CPU. 10. How to troubleshoot it? In Solaris environment, we need to take pstack and prstack and see what the threads are doing. In Windows we need to use pslist and process explorer. 11. What is Clustering and what is achieved through it? Clustering is the grouping together of servers for the purpose of high availability and scalability. Load balancing and Failover is achieved. 12. How does Cluster Communication Happen? Members of the Cluster communicate over the Cluster Multicast IP and Port by sending periodic heart beat messages. 13. What is the difference between the Sun JVM and BEA JRockit JVM? The most well know JVM is the implementation from Sun. The Sun JVM is called HotSpot. The Sun JVM is shipped in the Java Developer’s Kit (JDK) and Java Runtime Environment (JRE) from Sun. The BEA JRockit JVM from BEA systems is optimized for reliability and performance for server side applications. To achieve this, BEA JRockit JVM uses technologies such as code generation, hot spot detection, code optimization, advanced garbage collection algorithms and tight operating system integration. 14. TUning JVM Parameters. If you have a single processor, single thread machine then you should use the serial collector (default for some configurations, can be enabled explicitly for with -XX:+UseSerialGC). For multiprocessor machines where your workload is basically CPU bound, use the parallel collector. This is enabled by default if you use the -server flag, or you can enable it explicitly with -XX:+UseParallelGC. If you’d rather keep the GC pauses shorter at the expense of using more total CPU time for GC, and you have more than one CPU, you can use the concurrent collector (-XX:+UseConcMarkSweepGC). Note that the concurrent collector tends to require more RAM allocated to the JVM than the serial or parallel collectors for a given workload because some memory fragmentation can occur.
See product
India
Overview: HP-UX is a fully compatible, enhanced version of UNIX System V.Most of the built-in shell commands are introduced together with the main program control structures. This course is not suitable for C shell programmers. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. Thanks in advance for accepting our services. With Best Regards, ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
India
Overview: HP-UX is a fully compatible, enhanced version of UNIX System V.Most of the built-in shell commands are introduced together with the main program control structures. This course is not suitable for C shell programmers.Hi, Greetings of the day. ABOUT ECORPTRAININGS: Ecorp Trainings are one of the best institute providing quality level of training in E-learning process.This is instructor led online training. We also provide corporate training , if group of people interested in same technology. Contact us for detailed course content & register for a free demo. We also provide support in client interviews , resume preparation , ticket resolving. Contact us for custom designed training course by experts exclusively for yourself. We provide training for almost all IT technologies i.e ; JAVA , DOTNET , SAP ,ORACLE , PEOPLESOFT ,HYPERION etc, contact us if you have any particular need. ECORP TRAININGS. Gtalk ID : ecorptrainings Skype ID : ecorptrainings
Free
See product
India
Classroom & Online Training
100% Placement Assistance
*Courses Offered*
SAP FICO
SAP SD
SAP HR
SAP MM
SAP CRM
SAP PP
SAP APO
SAP EHS
SAP EWM
SAP FSCM
SAP OIL&GAS;
SAP PS
SAP SCM
SAP SM
SAP VARIANT CONFIGURATION
SAP WEBDYNPRO
SAP BPC
SAP CS
SAP EP
SAP ISU
SAP MDM
SAP PI
SAP PLM
SAP REAL ESTATE
SAP SRM
SAP XI
Adobe Flex
Advanced Perl
Android
Auto Cad
Websphere
Webspehere Integration Developer
Websphere Process
WEB DESIGNING SAP BASIS
SAP BI/BW
SAP BO
SAP WM
SAP WORKFLOW
SAP BODI
SAP BOPC
SAP GRC
SAP HANA
SAP IS RETAIL
SAP PM
SAP QM
SAP SEM
SAP TESTING
Mainframes
Data Warehousing
Testing Tools
Cognos
Cloud Computing
Core java
Dot Net 4.0
Drupal
Etl Testing
Excel 2007 Advanced
Hibernate
IBM Websphere Admin 6.1
Informatica
J2ee
Joomla
LoadRunner
Linux
Mainframes
Obiee
VM WARE
SAP TRAVEL Management SAP ABAP
Data Stage
Oracle Financials
Oracle 9i
Oracle 10G D2K
Oracle 10G DBA
Oracle ADF
Oracle APPS
Oracle BPEL
Oracle FUSION
Oracle HRMS
Oracle OAF
Oracle SCM
Oracle SOA
Oracle Weblogic Server
SAS
SAN
MS-BI
Pega
Perl Scripting
PHP
Salesforce
Selenium
SEO
Sharepoint
Sibel CRM
Spring
Sql Server dba
Tally
Teradata
Tibco bw
Tibco ems
Unix Sun Solaris
SAP TM
“ Pragna is a leading global consulting and IT Training company”
Highlights:
Interview and placement assistance provided
Economical and Affordable
Choose your convenient time
Get professionally trained
Personal care each Trainee
Support after Training
Further Details Call
PRAGNA TECHNOLOGIES
#308,309,310 Nilagiri Block,
Aditya Enclave, Ameerpet.
Hyderabad.
Cell no: 9246212199.
Web: www.pragnatechnologies.com
Email:info@pragnatechnologies.com
for moreTraining details
Log in www.pragnatechnologies.com
www.pragna.info
www.bestonlinetraining.net
www.onlinetrainingindia.in
www.pedantsoftech.com
₹ 300.000
See product
Chennai (Tamil Nadu)
Teradata DBA Training IN Chennai With Placement Peridot Systems we are offering best software training and placement in evergreen technologies like Oracle SQL PlSQL, PHP, Java, IBM Mainframe, .NET, Software Testing, Informatica, Web Designing, Android, Sharepoint, Microsoft BI, UNIX, C and C++, SHELL Scripting and more to the students. Limited Batch Strength Real Time Training Flexible Timinings Affordable Price Latest versions Free Softwares One Year Technical Support Teradata DBA Course Syllabus TERADATA Architecture TERADATA Database Space DBC Dictionary Tables TD Manager Monitoring tools TD Remote Console Utilities Archiving Data Restoring data Please DO CONTACT 9790855020 – for free demo classes Venue Details: Peridot Systems Kamatchi Krupa Apts, No: 84/8, Ground Floor, Venkatarathinam main street, Venkatarathinam Nagar, LB Road, Adyar, Chennai. Tamil Nadu - 600020.
Free
See product
India
LansA Informatics Pvt Ltd is specific to work in IT SOLUTIONS, STUDENTS CAREER DEVELOPMENT, EVENT MANAGEMENT , SOCIAL CAUSE. We endeavor to be your trusted Partner providing innovative concepts, impresive strategies in creating business value with clients. We encourage your tasks and boost your capabilities with our professional designers, evaluators & venture supervisors.
ABOUT IMPLANT TRAINING:
• The use of Implant training is to obtain information in specific area before getting placed in a company.
• Implant Training is the most necessary thing rather than studying in academic institution. You will get the information of how to handle the latest technologies in
realistic life.
• We offer Implant Training to Students. Here students are recommended to be able to appear out their academics in various sources and what are all the primary ideas to be known in particular domain.
• After the successful completion of studies students has to face this competitive world with this knowledge to face many problems and to find the right solutions which is to be solved in the minimum duration of time. The implant training is get totally different from the class environments.
FIELD OF TRAINING :
In Implant Training is mainly offered in following areas
• Microsoft .NET, Microsoft SharePoint, Microsoft CRM, Silver light.
• Java, Cloud Computing, Big Data, Unix/Linux.
• Mobile Platforms: iOS, Android, RIM, Windows Phone 7, Blackberry OS, PhoneGap.
• LAMP, WAMP, PHP, MYSQL, HTML, CSS, Ruby on Rails.
• WordPress, Joomla, Drupal, Magento, Open Cart, Prestashop.
Regards
LansA Informatics Pvt Ltd
R.K. Complex
474-A, Kamaraj Road,
Ramunuja Nagar, Upplipalayam(po),
Coimbatore - 641 015
Mobile: 90 953 953 33
Email: studentscdc@gmail.com
Website: www.lansainformatics.com
₹ 1.000
See product
Hyderabad (Andhra Pradesh)
Dear Friend, Sadguru Technologies is a Leading IT training center for Oracle Fusion Middleware courses. We are providing all below listed courses in both format CLASS ROOM as well as ONLINE and as per your convenient timings. We also provide Corporate Training and work support. Courses Offered by Sadguru Technologies: 1. Oracle Service Oriented Architecture(SOA) suite11g Development 2. WebLogic & SOA Administration(Fusion Admin) 3. Oracle Identity & Access Management (IDM) 4. Oracle Service Bus(OSB) 5. Oracle Application Integration Architecture (AIA) 6. Oracle Business Process Management (BPM) 7. Oracle Application Development Framework (ADF) 8. Webcenter 9. Oracle Data Integrator (ODI) 10. Oracle Apps (Functional, Technical & SCM) 11. Business Analyst (BA) 12. UNIX & Linux ADMIN 13. INFORMATICA & OBIEE 14. Websphere(MB, MQ) 15. JBOSS 16. HADOOP 17. Oracle DBA&RAC 18. JAVA, .Net 19. TIBCO 20. TESTING TOOLS 21. SAP (All modules) 22. Micro Soft Dynamics AX 23. Sales Force CRM Contact US: SADGURU TECHNOLOGIES H. No: 7-1-621/10, Flat No: 102, Sai Manor Apartment, S.R. Nagar, Hyderabad-500038, Landmark: Beside Umesh Chandra Statue, Mob: 91-8179736190, Ph: 040-40154733 Email ID: sdtech.soa@gmail.com
See product
Delhi (Delhi)
Academic Tuitions School Tuitions VI to X – All Subjects XI, XII - 11.0pt;line-height:107%">Mathematics, Physics, Chemistry, English, Computer Science, Business Studies, Accounts, Economics, History, Psychology 11.0pt;line-height:107%">Competitions JEE – Advanced, Main NEET – Physics, Chemistry CAT Mathematics, Reasoning, Quantitative Aptitude, Data Interpretation 11.0pt;line-height:107%">College Tuitions BA, MA, BCom, BSc, BCA, MCA, BBA, MBA, BTech Computer Courses Operating Systems 11.0pt;line-height:107%">MS – DOS, UNIX Windows 11.0pt;line-height:107%"> Linux 11.0pt;line-height:107%"> 11.0pt;line-height:107%">Programming Languages BASIC, QBASIC C, C++, C# Java – Core, Advanced Python – Basic, Advanced SQL 11.0pt;line-height:107%">Software Packages Microsoft Office – Word, Excel, Powerpoint, Access Photoshop CorelDraw Tally Handwriting Improvement Languages 11.0pt;line-height:107%">English Hindi 11.0pt;line-height:107%"> 11.0pt;line-height:107%">Duration 15 days per language Calligraphy Types 11.0pt;line-height:107%">English font Hindi font 11.0pt;line-height:107%"> Basic and advanced designs 11.0pt;line-height:107%">Duration font-family:"Calibri",sans-serif;mso-ascii-theme-font:minor-latin;mso-fareast-font-family: Calibri;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Mangal;mso-bidi-theme-font:minor-bidi;mso-ansi-language: EN-US;mso-fareast-language:EN-US;mso-bidi-language:HI">30 days
See product