Friday, February 21, 2014
Saturday, May 4, 2013
Mega Trend in IT - Oracle Applications Tutorials!
Thank you all the readers of Techno Media Corp!! For
your comments and making this blog a success. We are going to start a new
thread on Oracle applications Functional and Technical knowledge sharing.
Oracle applications have become a hot new trend
in IT Market especially in US and African Countries. It has emerged as new
opportunity for the Software Engineers to groom their career.
We hope that upcoming articles on Oracle
Applications will be helpful for the Fresher and Experienced techies to deliver
their job.
What is
Oracle Applications?
Oracle Applications comprise the applications software or business software of Oracle Corporation. The term refers to the
non-database and non-middleware parts of Oracle’s software portfolio.
Oracle sells many functional modules which use
the Oracle RDBMS as a back-end,
notably Oracle Financials, Oracle HRMS, Oracle Projects, Oracle CRM, Oracle Procurement, etc.
Oracle initially launched its application suite
with financials software
in the late 1980s. The offering as of 2009 extends to supply-chain management, management,
warehouse, customer-relationship management, call-center services, product-lifecycle management, and many
other areas. Both in-house expansion and the acquisition of other companies
have vastly expanded Oracle's application software business.
Oracle released Oracle E-Business Suite (EBS/ e-BS) Release 12 (R12) — a bundling of
several Oracle Applications - in February 2007. The release date coincided with
new releases of other Oracle-owned products: JD Edwards
Enterprise One, Siebel Systems and PeopleSoft.
As of 2012 Oracle supports Release 11.5.10.2, Release 12.0.X, and Release
12.1.X of the Oracle E-Business Suite. The latest release of the software is
called Oracle EBS R12.
Why to Learn Oracle Applications?
It is also known as Oracle Apps in Software
Industry. In Indian Software companies there is a huge demand for Techies
experienced in this Technology. Due to Oracle’s aggressive marketing in
Database and ERP market Apps is giving huge fight for SAP that is well
established in European Market.
We will be giving Pseudo Codes and functional
knowledge on different modules related to Oracle Applications in near future.
We will be eager to know from our readers about the suggestions and
complaints.
Thursday, October 13, 2011
How to make Cascading Style Sheets
Continued Reading From last Article- Cascading Style Sheet(Click to Go Back)
2.Document level CSS / Internal CSS:
It is one and another way to embed a style .
In it you have write the style within the head section under a style block .
You can write either style either by . and # operator or by direct as the appropriate HTML tag.
How to use this Cascading Style Sheet ?
The writing is much more similar to external style sheet except a separation of file it is write with in head section by using style block.
This article has been Written by our reader Anant Jauhari. we appreciate his contribution.
2.Document level CSS / Internal CSS:
It is one and another way to embed a style .
In it you have write the style within the head section under a style block .
You can write either style either by . and # operator or by direct as the appropriate HTML tag.
How to use this Cascading Style Sheet ?
The writing is much more similar to external style sheet except a separation of file it is write with in head section by using style block.
This article has been Written by our reader Anant Jauhari. we appreciate his contribution.
Cascading Style sheet - CSS
INTRODUCTION:
Everybody wanted a high degree of control over web page layout. So CSS has emerged a better solution .
Cascading Style Sheet defines how elements are displayed and where they are positioned on the page.
How to use CSS in web page ?
It is used with HTML to enhance page formatting.
It depends upon the use of element whether you are going to use it with inline element
Or by writing the code in head section only or by through linking a special file placed in separate folder.
The ease of use of CSS allow a well define management of content .
Types of CSS
There are different thinking about of CSS but generally we have three types of Cascading Style Sheet.
a)External CSS
Everybody wanted a high degree of control over web page layout. So CSS has emerged a better solution .
Cascading Style Sheet defines how elements are displayed and where they are positioned on the page.
How to use CSS in web page ?
It is used with HTML to enhance page formatting.
It depends upon the use of element whether you are going to use it with inline element
Or by writing the code in head section only or by through linking a special file placed in separate folder.
The ease of use of CSS allow a well define management of content .
Types of CSS
There are different thinking about of CSS but generally we have three types of Cascading Style Sheet.
a)External CSS
b)Document or internal CSS
c)Inline CSS
1. External CSS:
An external style sheet is a plain text file with a .css file name extension that contains all style sheet rule which are required to your attribute written in simply a HTML.
You can link a style sheet to a web page by passing a tag in the head section.
This link element applies the style rules in the external sheet to the page .
N.B.
Helps to apply style specification to multiple documents because style information is cached by browser.
A external CSS file requires extra download time which may delay for page rendering.
How to use Cascading Style Sheet ?
First use a link tag for linking your external style sheet.
But a external file is like this
You have to create blocks in a CSS and have to write either by using .(dot) operator or by #symbol or you can directly called a style.
Article on CSS
c)Inline CSS
1. External CSS:
An external style sheet is a plain text file with a .css file name extension that contains all style sheet rule which are required to your attribute written in simply a HTML.
You can link a style sheet to a web page by passing a tag in the head section.
This link element applies the style rules in the external sheet to the page .
N.B.
Helps to apply style specification to multiple documents because style information is cached by browser.
A external CSS file requires extra download time which may delay for page rendering.
How to use Cascading Style Sheet ?
First use a link tag for linking your external style sheet.
But a external file is like this
You have to create blocks in a CSS and have to write either by using .(dot) operator or by #symbol or you can directly called a style.
Article on CSS
For automatically calling a style just write the style for that block.
BODY
{
TEXT-ALIGN: center;
MARGIN: 0px;
BACKGROUND: url(images/1.gif) white repeat-y ;
FONT-FAMILY: Arial, Helvetica, sans-serif;
COLOR: #686868;
FONT-SIZE: 12px
}
So if you have a link of any external CSS on your head section you can use the style on body section directly there is no need to use any class or id .
By using .operator you have to called the style block by appropriate class name.
.textholdarea
{
position: absolute;
width: 358px;
background: url(images/sl.png) no-repeat left top;
height: 257px;
top: 5px;
right: 0px;
}
For example for a particular division you can write like this to use above style
BODY
{
TEXT-ALIGN: center;
MARGIN: 0px;
BACKGROUND: url(images/1.gif) white repeat-y ;
FONT-FAMILY: Arial, Helvetica, sans-serif;
COLOR: #686868;
FONT-SIZE: 12px
}
So if you have a link of any external CSS on your head section you can use the style on body section directly there is no need to use any class or id .
By using .operator you have to called the style block by appropriate class name.
.textholdarea
{
position: absolute;
width: 358px;
background: url(images/sl.png) no-repeat left top;
height: 257px;
top: 5px;
right: 0px;
}
For example for a particular division you can write like this to use above style
So for using above style you have to use a class attribute by calling the above class name in that element .
By using # operator you have to called the style block by id .
Then that id can be used in any attribute you want to use your style.
#content
{
position: relative;
width: 957px;
background: #FFFFFF url(images/contentrepeat.jpg) no-repeat;
top: -2px;
left: -2px;
height: 165px;
}
So for using above style block u have to call it by using id attribute .
Like
2.Document level CSS / Internal CSS:
It is one and another way to embed a style .
In it you have write the style within the head section under a style block .
You can write either style either by . and # operator or by direct as the appropriate HTML tag.
How to use this Cascading Style Sheet ?
The writing is much more similar to external style sheet except a separation of file it is write with in head section by using style block.
Labels:
Cascading Style Sheet,
CSS,
How to use CSS,
HTML,
Style Sheet,
Web Page
Sunday, July 31, 2011
Data Interpretetion question E Litmus Answers
Please find the answer to the Data Interpretation Question posted on Techno Media Corp! for the E Litmus Sample Paper-3.
| Answer Key | ||||
| (1) | 2 | (5) | 3 | |
| (2) | 3 | (6) | 1 | |
| (3) | 5 | (7) | 2 | |
| (4) | 2 | |||
If you find any difficulty to solve this question or want to give your suggestion then please post your comment on Techno Media Corp!
All the Best
E Litmus Sample question -3
Hi all,
Thank you for your overwhelming response. We are publishing some more questions related to E litmus Paper.
This time we are publishing mandatory Data Interpretation question that come in every E litmus paper.
I have already published cryptanalytic and reasoning question that comes in E litmus paper.
Sample Question 3) Use the information provided in the two pie charts provided below. The total contribution to the GDP by the seven sectors mentioned in the pie charts in the year 1999 was Rs.289640 crores and Rs.317000 crores in the year 2000
![]() |
| Contribution to GDP in 1991 |
| |||||
| Contribution to GDP in 2000 |
| 1. | Which of the industry sectors witnessed the maximum rate of growth during the period 1999-2000? | |||
| (1) | Petroleum | |||
| (2) | Software & IT | |||
| (3) | Ad & media | |||
| (4) | Cement | |||
| (5) | Auto | |||
| 2. | Which of the industry sectors witnessed a negative growth during the period 1999-2000? | |||
| (1) | Auto | |||
| (2) | Defense | |||
| (3) | Steel | |||
| (4) | Petroleum | |||
| (5) | Ad & Media | |||
| 3. | What was the rate of growth witnessed by the Software & IT sector during this period? | |||
| (1) | 1% | |||
| (2) | 12% | |||
| (3) | 33% | |||
| (4) | 18% | |||
| (5) | 22% | |||
| 4. | What was the rate of growth witnessed by the Petroleum sector during this period? | |||
| (1) | 1.1% | |||
| (2) | 12% | |||
| (3) | 7.5% | |||
| (4) | -8% | |||
| (5) | -3% | |||
| 5. | What was the rate of growth shown by the non-petroleum sectors between 1999-2000? | |||
| (1) | -4% | |||
| (2) | 4% | |||
| (3) | 7% | |||
| (4) | 12% | |||
| (5) | 17% | |||
| 6. | Between 1999 and 2000 which other industry witnessed a growth rate similar to that of the defense sector? | |||
| (1) | Ad & media | |||
| (2) | Auto | |||
| (3) | Software & IT | |||
| (4) | Petroleum | |||
| (5) | (1) & (2) | |||
| 7. | The amount contributed by Software & IT sector in 1999 was 180% of the amount contributed by | |||
| (1) | Steel in 1999 | |||
| (2) | Auto in 1999 | |||
| (3) | Ad & media in 2000 | |||
| (4) | Defense in 1999 | |||
| (5) | Ad & media in 1999 | Click here to check the Answer |
Wednesday, July 20, 2011
E-Litmus Sample paper 2
I am providing some more E-litmus sample questions. I have already provided Cryptanalytic Question that comes for sure in E-litmus PH test. I am sure these questions will definitely help you in E-litmus Paper. I am providing you one question from PH test that came in E-litmus paper.
Answer the questions on the basis of the information given below.
Question:- The Dean's office recently scanned student results into the central computer system. When their character reading software cannot read something, it leaves that space blank. The scanner output reads as follows:
In the grading system, A, B, C, D, and F grades fetch 6, 4,3,2, and 0 grade points respectively. The Grade Point Average (GPA) is the arithmetic mean of the grade points obtained in the five subjects.
For example Nisha's GPA is (6 + 2 + 4 + 6 + 0) /5 = 3.6. Some additional facts are also known about the students' grades.
These are:
a. Vipul obtained the same grade in Marketing as Aparna obtained in Finance and Strategy.
b. Fazal obtained the same grade in Strategy as Utkarsh did in Marketing.
c. Tara received the same grade in exactly three courses.
A). What grade did Preeti obtain in Statistics?
1.A 2.B 3.C 4.D
B). In Operations, Tara could have received the same grade as
1. Ismet 2. Hari 3. Jagdeep 4.Manab
C). What grade did Utkarsh obtain in Finance?
1.B 2. C 3. D 4.F
D). In Strategy, Gowri' s grade point was higher than that obtained by
1.Fazal 2. Hari 3.Nisha 4.Rahul
Saturday, July 16, 2011
Anchor Text Optimization
Anchor text optimization is one of the best methods to increase the search engine page rank. Anchor text is the way to highlight the keywords in your blog to increase the visibility.
For example consider a small paragraph "Search Engine optimization is the way of increasing the visibility to the different search engines like Google, Yahoo and Bing." This is the simple way of writing the article.
You can enhance the visibility by using Anchor Tags like "Search Engine optimization is the way of increasing the visibility to the different search engines like Google, Yahoo, Bing." This will significantly increase the visibility to the Search Engines Robots.
Please make sure that your article is not full of Anchor text so that it looks untidy. You can also provide the link to the related articles within your own blog to make the reader roam around the most part of your blog. Generally Most of the search engines check your Meta Tags and keywords first but they are Intelligent enough and they search for the keywords in your Articles.
Tuesday, March 1, 2011
E-Litmus sample papers-Download
The most obvious question you will find in any E-Litmus paper is Cryptanalytic questions.
These questions are difficult and time taking. So I am discussing these questions first. I am providing you sample E-Litmus Cryptanalytic question. You will get Cryptanalytic questions in E-Litmus paper for sure.
You must have read Send + more = Money type problem.
Let’s take a sample question from E-Litmus.
1) C O U N T
- C O I N
---------------------
S N U B
---------------------
a) What is the value of 'S' in above equation?
b) What is the value of (T-N)?
You will get this sort of question.
Remember two rules to solve these questions.
No two different letters can have same numeric. Two same letters will have same Numeric.
Now concentrate and try to assign a numeric for each letter.
You will get a unique number for each letter.
You need to practice this type of puzzle before E-Litmus paper.
I hope this will help you in E-Litmus paper.
All the best.
Friday, February 25, 2011
E-Litmus sample papers
I know you all must be waiting for the E-Litmus sample papers on my Blog. I am providing all the question type that will help you to know about the paper pattern. E-Litmus paper contains 50 questions. You can consider the standard of the paper as CAT and MAT entrance exam.
E-litmus sample paper consists of the question type. You can easily practice those questions.
You need to solve the whole paper in 2 hours. There is a negative marking in E-litmus paper. You can attempt 8 questions wrong. If you attempt more than 8 wrong answer then there will be negative marking.
I suggest you to solve the quanta portion of the paper correctly without any guess. You can guess the answers of reasoning questions if not sure. Verbal and reading comprehension portion is comparatively easy. Girls can easily score in that portion. According to me the toughest question are Cryptanalytic question. You can see the sample cryptanalytic question in E-Litmus sample paper.
You need to concentrate during the E-litmus paper duration. Paper contains 3 portion Quanta, Reasoning, English. English and quanta contain 20-20 questions and 10 questions for reasoning. There will be at least one Cryptanalytic question.
Check my next post for the E-Litmus sample paper.
Let me know if you have any query and suggestions.
Click On the link to download E-Litmus sample papers Download E-Litmus sample paper
Click On the link to download E-Litmus sample papers Download E-Litmus sample paper
Thursday, February 24, 2011
E-Litmus sample qustions coming soon!
I am preparing E-litmus sample questions and will publish questions soon. I hope that will help in E-Litmus paper.
E-Litmus sample paper will be memory based. That will surely help you to crack the paper. Please visit Freshers Forum of Techno-media-corp! blog.
Keep visiting the blog for the update.
Thank you.
Tweet
Choose Ad Sense Program for Blog - compare!
Now you have started writing your own blog and getting some considerable traffic. Now this is the right
time when you should think to monetize your blog to earn some profit. There are many Ad Sense programs available. You might get confused which one to
choose and which one will be profitable. You need to choose Ad Sense program for blog according to your needs.
I researched the experience of many bloggers who used Ad Sense programs. I am going to share
a review after my research.
The most famous Ad
sense program is Google Ad sense. There are other options available like Chitika, Adbrite, and Infolinks. You
might be thinking that you can easily get registered to any of the programs and
start earning. Well this is not that easy.
Let’s take a look on procedures to follow to subscribe for Google Ad sense and Chitika. I have tried to compare Google Ad Sense and Chitika.
Google Ad sense-
This is one of the best programs available with high CTR (click through rate) and CPM
(Clicks per month). There are some strict rules by Google to audit the blogs
that ask for the subscriptions. I will suggest you to prepare yourself before
applying to Google Ad sense.
Please check that you have-
1) You
have genuine and unique content in
your blog or website. It should be
well researched and not copy pasted. Check Your Unique content at copy scape or article checker.
2) Please
make sure that you do not have any hatred or porn on your blog.
3) Make
sure that your site is constructed well in format and look.
4) Please
check that your site does not contain any broken links and fully constructed.
5) There
is a bad news for bloggers from
India, Pakistan and China region. Google is very strict in approving the service
in this sub-continent. It feels bad and racial but many Click frauds occur in
this region.
6) Make
sure that you have enough articles in your blog for the auditors to audit.
7) Rest
Google pays best if your blog is approved
for Google Ad sense.
Now let’s check Chitika.
1) Chitika
was founded in 2003. Now it has a good number of Advertisers.
2) Chitika
has some issues with Indian sub continent publishers. It feels bad as the CEO
of Chitika is from India.
3) Chitika
approves the service easily than Google Ad
sense.
4) Chitika
has another issue with many users that it does not count many impressions and
clicks.
Well, it’s up to you to choose
Ad sense program for your blog
wisely. You can also use other options available.
Let me know for your suggestions and queries. Click to Learn how to optimize a blog for SEO. I hope this post will be useful for you.
Tweet
Tuesday, February 22, 2011
How to create bootable disk!
This video tutorial will teach you how to create a bootable disk for windows Xp, Vista or any other operating system. This will be beneficial for the people who need to keep a boot disk for their computer when they need. Let me know your queries and suggestions.
Online earning tips.
Online earning is simple but needs some tricks and tips. I am going to tell you some easy and interesting always to earn a living and profit. Do you have skill to write on certain topic or expertise in any field? If your answer is yes then start writing your own blog. You can earn lot of money through your own blog. If you are trying to start it for the first time then start a blog on different free blogs like Blogger, word-press. All you need to do is to create a free account and start writing on your favorite topic. Your content should be good and useful for the readers.
Click here to know how to create a blog. Once you start writing you need to attract the readers. Advertise the blog as much as you can. Let your friends and their friends know about the blog. Once your blog will get considerable amount of hits then you will be able to earn money through Advertisements and referral programs. Some of the best referral programs are Google Ad sense and Chitika. You also need to add the blog to different search engines so that readers may crawl to your blog through search engines like Google and Yahoo!.
You will not believe most of the Internet marketing and blogging is based on these programs. Click here to learn to earn money through blog and know about Internet Marketing. Wishing you great luck for your blogging career. I will be sending my Tips and tutorial on this blog as well as on my own blog http://abhishekinfomatics.blogspot.com/ Keep visiting.
Click here to know how to create a blog. Once you start writing you need to attract the readers. Advertise the blog as much as you can. Let your friends and their friends know about the blog. Once your blog will get considerable amount of hits then you will be able to earn money through Advertisements and referral programs. Some of the best referral programs are Google Ad sense and Chitika. You also need to add the blog to different search engines so that readers may crawl to your blog through search engines like Google and Yahoo!.
You will not believe most of the Internet marketing and blogging is based on these programs. Click here to learn to earn money through blog and know about Internet Marketing. Wishing you great luck for your blogging career. I will be sending my Tips and tutorial on this blog as well as on my own blog http://abhishekinfomatics.blogspot.com/ Keep visiting.
Monday, February 21, 2011
Get backlinks and traffic using blogs.
You must be wondering how to increase the traffic to your website or blog. This is very easy but needs patience. You can comment on different blogs related to your web or blog content. While commenting you can post the link of your blog or websites for other readers in community.
The other way to increase the traffic is to add your website to search engines like google , technorati. Technorati is very famous among the readers around the world to search thee blogs. You can add your blog to Technorati easily. Click Here to Join Technorati
Steps to add a Blog to Technorati.
1- Register to Technorati by above link.
2- Fill the form and then at the bottom enter the URL of your site to claim the blog.
This will take some time for them to verify the blog.
You can also add your blog to Google directory. You cannot be sure that your blog is added to Google database still you can try if you are the lucky enough to be recognized by google.
Click Here to add your Website or blog to Google database.
You can also join some free advertising websites that advertise your site on their site.Click here to join a free advertisement program. These tips will surely increase the back links in your blog. I will discuss some other techniques in next blogs.
Increase traffic in blogThe other way to increase the traffic is to add your website to search engines like google , technorati. Technorati is very famous among the readers around the world to search thee blogs. You can add your blog to Technorati easily. Click Here to Join Technorati
Steps to add a Blog to Technorati.
1- Register to Technorati by above link.
2- Fill the form and then at the bottom enter the URL of your site to claim the blog.
This will take some time for them to verify the blog.
You can also add your blog to Google directory. You cannot be sure that your blog is added to Google database still you can try if you are the lucky enough to be recognized by google.
Click Here to add your Website or blog to Google database.
You can also join some free advertising websites that advertise your site on their site.Click here to join a free advertisement program. These tips will surely increase the back links in your blog. I will discuss some other techniques in next blogs.
How to become a professional search engine optimizer and earn money online!
Search engine optimization is the way of increasing the visibility of website on different search engines. It may be considered as an art also. This needs a very basic knowledge of search engines and internet marketing. By applying some simple optimization techniques you can easily increase the traffic of your website. One your website becomes popular you will be able to generate a lot of money with this.
For armatures, it may seem a tough job but my upcoming posts will tell you very simple tips to do that. You must be wondering how to create a website and host it online. This is again a simple job. Wait for the next post and you will know the fundamentals of website creation hosting and earning. Till then best of luck.
Tweet
Thursday, October 21, 2010
How to publish your website?
If you want to earn some money from your website then you should popularize it to get considerable amount of hits. There are so many ways to make it popular. You can advertise your blog on community and networking websites like www.facebook.com , www.orkut.com. You can even start sending mails to your contact list so that they may be aware of your website.
One of the most important thing is that your website should have enough and relevant content to make it popular. Your earning depends on how much time a user spends on your website. It is suggested that, you should write contents on your website on topic which you know very well.
If you have started writing on something which is not familiar to you then you might face content problem.
Tweet
Tuesday, October 19, 2010
Creating a Website
Guys i told you in my older posts that web designing needs only little knowledge of websites, rest all depends on your creativity. You can spend a little amount of money to make a website from any professional. Other way is "Do it yourself".It will be a very good experience to build your website on your own behalf. The skill you need to posses is HTML. You can also take the help of some of the Publishers like FrontPage, Dreamweaver, WordPress.You can also use simple HTML editor like notepad.
After getting one of the publisher you just try to plan your website, because a well planned website may redirect the traffic to you hence more money. In next blog i will tell you about planning and launching of website for more information Click HereTweet
After getting one of the publisher you just try to plan your website, because a well planned website may redirect the traffic to you hence more money. In next blog i will tell you about planning and launching of website for more information Click HereTweet
Labels:
Alexa,
Planning a Website.,
Publishers,
Web Content Publishers
Search Engine optimization.
Search engine optimization is the way of increasing the visibility of website on different search engines. It may be considered as an art also. This needs a very basic knowledge of search engines and internet marketing. By applying some simple optimization techniques you can easily increase the traffic of your website. One your website becomes popular you will be able to generate a lot of money with this.
For armatures, it may seem a tough job but my upcoming posts will tell you very simple tips to do that. You must be wondering how to create a website and host it online. This is again a simple job. Wait for the next post and you will know the fundamentals of website creation hosting and earning. Till then best of luck.Tweet
For armatures, it may seem a tough job but my upcoming posts will tell you very simple tips to do that. You must be wondering how to create a website and host it online. This is again a simple job. Wait for the next post and you will know the fundamentals of website creation hosting and earning. Till then best of luck.Tweet
Introduction to Internet marketing!
Guys you must be wondering how most of the popular websites earn money or generate revenue. Many of the website owners generate a lot of revenue from their websites by simply posting ads.
There are so many ways to post the ads. Google Ad-sense is one of the best gadget by IT giant GOOGLE. Google shares its profit with website owners for posting Ads.
Now the question comes that how a simple student or individual willing to earn can do this.
you will not believe many of the techies have left their full time job and working on Search engine Optimization.
No doubt Internet marketing is supposed to be the fastest growing market in E-commerce.
This will not only generate revenue for you, but you will be more technically sound in web designing and internet marketing. Search engine optimization is one of techniques used by companies in Internet marketing to rank their websites high and generate revenues.
Wait for the next blog for more information on E-commerce. I will be there with some more tips and features.Till then enjoy surfing.Earn MoneyTweet
Subscribe to:
Posts (Atom)


