ITIL 4 Foundation Practice Exam

Our ITIL Foundation practice exam series included questions and answers based on ITIL V4 Foundation Preparation. Prepare for your upcoming exam with full confidence and pass the first attempt 1) Which dimension focusses on the organization's relationships with other organizations that are involved in the design, development, deployment, delivery, support and/or continual improvement of services? a) Partners and Suppliers b) Organization and customers b) Cat and Jack d) Roles and Releases Answer : a 2) What should every service level agreement contain? a) System response time metrics b) Clearly defined service outcomes c) Number of emails to be sent per hour rate d) 100% system uptime Answer : b 3) What are all the mandate items to be included in SLA? a) Operational metrics b) Defined outcomes c) Both operational metrics and defined outcomes d) System response time Answer : b 4) In the service level management practice which activity supports planning of product and service portfolio and service offerings with information about the actual service performance and trends? a) Execution activity b) Design activity c) Plan activity d) Do activity Answer : c 5) What is the contribution of service level management to plan value chain activity? a) This plan provides information about the actual service performance and trends b) This plan collects customer and user feedback c) This plan markets products to potential customers d) This plan maintains uptime to 99.99% Answer : a 6) Which is used to measure the performance of services from a customer's point of view? a) Plan agreement b) Service agreement c) Service level agreement d) Execution Plan Answer : c 7) Which measures the availability and capability from customer's point of view? a) Performance Metrics b) Manager Plan c) Service Standards d) Service Level agreement Answer : d 8) What is the main use of service level agreement? a) Measure the performance of services from managers point of view b) Measure the performance of services from customer's point of view d) Measure performance of servers from IT point of view d) Measure quality of product Answer : b 9) What are all the key focus of the partners and suppliers dimension? Choose all that apply a) Roles and responsibilities b) Contracts and agreements c) Security and compliance d) Inventory and supply chain Answer : a,b,c 10) Which dimension incorporates contracts and other agreements between the organizations and its partners or suppliers? a) Partners and Suppliers b) Workflow and inventory c) Compliance and standards d) Roles and Revolution Answer : a 11) What is a good service desk practice? a) Practical understanding of the wider organization, the business processes, and the users b) Practical understanding of the wider organization, the business processes c) Practical understanding of the wider organization d) None of the above Answer : a 12) Which department should have a practical understanding of the business practices across the organization? a) Help Desk b) Service Desk c) Customer Service d) Customer support Answer : b 13) Which activity includes the analysis of data to identify opportunities to provide new service request options? a) Service activity b) Support activity c) Improve activity d) Important activity Answer : c 14) Which is the operating model that outlines the key activities required to respond todemand and facilitate realization of value through the design, development and managementof services and products? a) Continuous process improvement b) Service value chain c) service management plan d) continuous lifecycle Answer : b 15) What is the value chain activity output that includes portfolio decisions for design and transition? a) Service value chain b) Plan c) Dasign d) Development Answer : b 16) Which value chain activity is used to create a shared understanding of the vision, current status, improvement direction for all four dimensions and all products and services across the organization? a) Design b) Development c) Plan d) Execution Answer : c 17) What does a organization and people dimension of a service cover? a) Formal organizational structures b) service organizations c) call center support d) Customer support Answer : a 18) Which serve as the means of enabling value co-creation by facilitating outcomes that customers want to achieve without the customer having to manage specific costs and risks? a) Service b) Customer support c) Value chain d) Logistics Answer : a 19) What does change control practice ensure and take care of? a) Properly assessing risks b) Authorizing changes to proceed c) Managing a change schedule to maximize successful IT changes d) All of the above Answer : d 20) What is a change of state that has a significance for management of a service or other configuration items? a) Event b) Service c) Operating model d) Value chain Answer : a 21) What is the functionality offered by a product or service to meet a particular need? a) Utility b) Service c) Customer Service d) Value chain Answer : a 22) What is a utility? a) It is a functionality offered by a product or service to meet a particular need b) It is a service c) It is a customer service for a product d) All of the above Answer : a 23) What is the practice of protecting an organization by understanding and managing risks to the confidentiality, integrity, and availability of information? a) Information Technology b) Information security management c) Information portal d) Information product Answer : b 24) What is the practice of minimizing the negative impact of incidents by restoring normal service operation as quickly as possible? a) Incident management b) Customer Management c) Process management d) Product management Answer : a 25) Is an output tangible deliverable or an intangible deliverable? a) Tangible deliverable b) Intangible deliverable c) Can be tangible or intangible deliverable d) None of the above Answer : c

Mongodb production database Linux deployment Best Recommendations

MongoDB can be deployed in a variety of paltforms including 32-bit windows 7, 64-bit windows 7, Mac OS, Linux, Soalris etc. Lets take a quick look at the best recommendaitons to be followed while deploying mongoDB production instances in Linux environment 1) Always run mongoDB in 64-bit environment 2) Linux kernel version 2.6.36 or later must be used Simple command to find kernel version in Linux are 2.1) Use the uname command uname -r 2.2) Access /proc/version files cat /proc/version 2.3) Using Red Hat Package Manager command with -q option rpm -q kernel 2.4) Look at dmesg command dmesg |grep Linux 2.5) Look at book folder ls /boot 3) Filesystem recommendation on MongoDB - As with RDBMS like Oracle, MongoDB preallocates the database files. MongoDB supports big data and often the files are large files. Filesystems like Ext4 and XFS can be used. Also, the filesystem should support fsync() on directories 4) We need to turn off accesstime aka atime in the storage volumes [disk drives] containing database files of MongoDB. atime is the file access time that is updated whenever a file is accessed including opening of files, operations like grep, sort, cat, head, tail and so on. As such this recommendaiton is to improve the speed of disk drives in Linux environment. Edit /etc/fstab file , add noatime,nodiratime at the end and disable atime 5) Optimal virtual memory apge size of mongoDB is 4096 bytes. Transparent Huge pages need to be disabled 6) To avoid conneciton issues in a heavy environment and to prevent loss of service, user limit and file descriptor limit should be set above 20000 ulimit -u limit -n Above command should return 20000 and above values 7) Non-Uniform Memory Access (NUMA) needs to be disabled at BIOS as there could be a performance impact while accessing multiple memory nodes 8) In a sharded cluster environment Network Time Protocol (NTP) to synchronize time among hosts 9) Block devices store database files. Readahead settings should be optimal. Often value of 32(16KB) works fine

slamdata 3.0 makes live mongodb data display without ETL

Earlier we discussed about availability of slamdata a non-ETL solution to display live data from mongodb. It is interesting to know that slamdata has undergone rapid development over the pat two years and is currently at stable version 3.0 Slamdata makes it possible to display live data from mongodb database without using ETL tool. Hassle of extraction, transformation.loading, ETL mapping is being rid of using slamdata Here are some interesting features of slamdata 3.0 that makes it a better choice to access live data from mongodb 1) Powerful API's for developers - Utilizing the API's charts can be easily embedded into mongodb applications. I remember working on reporting tool with mysql backend, perl libraries to chart the data in front-end. Now, this is a piece of cake utilizing slamdata API's 2) Easy analytics using API's - Analytics can be easily embedded into mongodb applications. If you are currently using panda python packages for your predictive analytics, you might be aware of power of analytics in predictive analytics of social media like twitter, facebook, linkedin etc. Try slamdata to easily implement predictive analytics in a mongodb application 3) Brand-new user interface with best look and feel - This is easy to use, brand new, extremely powerful 4) Dashboard types supported - This version supports both static and dynamic dashboard creation. Dashboard is created in user interface 5) Enhanced framework - The framework has become more extensible making ti possible to write connectors for databases beyond mongodb including Couchbase, MarkLogic, postgresql etc 6) Gallery of charts - A detailed roster of charts are supported including basic area, basic line, irregular line, area, line,stacked area, line, bar, scatter, candlestick,pie, radar, chord,fd charts ,maps,eventriver, heatmap,venn,tree,treemap,wordcloud etc 7) Powerful documentation from slamdata makes it the best analytic tool for mongodb

Can we max out 401k while on an H1-B visa?

The common question among financial enthusiasts who choose to save each and every penny from day 1 is going to be should I max out my 401K while I am on H1-B visa? H1-B visa is the employer sponsored visa and 401K is employer sponsored plan. Most of the employers offer this option if not we can choose to save in IRA either traditional IRA (or) Roth IRA on an independent basis. The amount that can be saved depends on the annual limit set by IRS every year as well as your income limit. This question can be tackled in many different ways. Here are some scenarios that will suit your profile and decide accordingly 1) 401K return on investment and tax savings offers better return compared to other investments It is to be noted that H1-B visa is a temporary visa that does not guarantee permanent settlement until you get to the point of receiving your green card. With movement of green card priority dates not so green it would be always better to do simple math. It is to be noted that once you lose your visa status and happen to return back to your homeland you can transfer your 401K balance onto an IRA account and retain it until you reach retirement age 2) 401K return on investment - 401K is an employer sponsored tax saving instrument. You can open a solo 401K which happens to be associated with self-employment that is not possible in H1-B visa. IRA is something you can open on your own and your spouses name that can help you save total amount set by IRS per annum depending on your AGI (Adjusted gross income) and many different factors. The 401K funds can be invested into very safe instruments equivalent to that of CD's, bonds as well as moderate to high risk stock funds. Depending on who maintains your funds the fund fee needs to be taken into consideration. This is deducted every year. In case of IRA again IRA Cd's as well as funds can be chosen for investment purpose. The amount earned as return grows tax free. You can opt to switch the funds within your portfolio and you will not incur any penalty unless you withdraw the money 3) Employer match - Most of the employers match your 401K contribution. This is a free money that you don't want to lose 4) Both spouse can contribute towards 401K and IRA - If both of you are working and have employer sponsored program both of you can contribute annual maximum, get employer match. If one of you is working still other person can invest in IRA (even in case of homemaker) provided your AGI is within limits. Check with your tax professional on this 5) Early withdrawal penalty - Only point to note is that if you choose to withdraw before retirement age there is a early withdrawal penalty fees which is huge Is there a way to avoid early withdrawal penalty and access full funds with returns ? There is a hack called traditional IRA to Roth IRA conversion ladder that lets you access the funds in about 5 years timeframe. This comes with the advantage of paying lesser tax amount towards amount withdrawn. I'll explain that in detail in one of the coming posts. Stay tuned

Newborn Baby Registry Checklist For Parents

Parenting as such is a whole new responsibility, role that really excites us. Ever since the day we see the plus sign in pregnancy testing kit our life takes positive turn for this plus one bundle of joy. As such many of us start collecting information on how to nurture the womb, take care of the newborn, bring up the baby offering them best of the best. Lets start with newborn baby checklist that each and every new parent can count on. As a first step towards making purchase for your to be born baby, it is recommended to come up with list of items the first newborn baby checklist. This helps us create our baby registry without any delay, hiccups, without missing out real good deals. Baby registry can be created with many different merchandise vendors like target, amazon, babies r us, kohls etc. That is a whole new big topic to be discussed in real detail Lets look at newborn baby checklist that parents can count on 1) Car seat, stroller - Now many vendors offer this in form of travel system. Some popular names include Graco, Evenflo, Chiccoo etc. If you really look at features in detail it is more or less marketing glitz that makes them class apart. Based on our analysis and discussion boards parents essentially look for the following features while choosing a car seat (or) travel system 1.1) Car seat should have passed safety testing 1.2) Car seat should fit well in stroller 1.3) Car seat need not be too heavy 1.4) Some car seats are convertible form rear facing onto front facing until upto booster seats. This is ultimately your choice 1.5) Weight of baby which is proportional to its age and growth has been mentioned in car seat 1.6) Washable car seats, ones that offer easy maintenance are often looked upon As a buying tip look for price comparison online. Some stores like target essentially offer real great discounts in car seats. Look at weekly ad section. Amazon new moms program offers best discounts and free shipping with amazon prime membership based on season. It would be better to plan well in advance, have them stocked up even from first month of pregnancy as this saves ton money when bought during deal season 2) Crib with associated bedding - There has been contradicting opinion and views on usage of crib, buying new ones versus old ones. If we look at economy perspective old crib frame with new crib mattresses, crib sheets, crib cover, rail covers is essentially a great option. Look for used cribs in craiglist, ebay that offer better deals if you prefer used one. However, with price of cribs going down look for new cribs with best deals, free shipping handling in stores like walmart. They offer crib+mattress offers as well. If you prefer to decorate your nursery look for nursery decoration sets.If you prefer to save money see if you can buy needed items separately with online deals and discounts. Is crib really useful? Some advice to start with bassinet, pack n play. However, from long-term investment perspective cribs often appear to be a good choice. We can't discount that newborns can sleep alongside moms that eases job of mom, newborns don't need a separate bedding until upto certain point. But if we choose to train them to use crib from day 1, they get used to it. Go for 4 in 1 , 5 in 1 convertible cribs that convert to toddler beds. Some vendors offer toddler rials for free How to save money while buying crib? Cribs run from price ranging as low as $99 to $3000. Look for cribs that cater essential requirements: 1) Standard cribs fall in standard size specification usually 55x33x42 - Size varies. It would be better to visit stores while creating baby registry 2) Most cribs would have passed JPMA safety standard test. Look for safety passed cribs. Common brands that are popular and cater essential needs include Chicoo, Graco, Stockcraft, Delta etc. You can check and determine the cribs based on price and preference 3) Though we don't have real recommendation on shops best deals often come up in walmart.com website. Target website is equally good with lots of choices 4) Cribs often come in different color like white, espresso, cherry etc. Choose your color 5) Look for mattress height which is a specification that comes as part of crib specification details Crib accessories include essential bedding that include some of the following Crib Mattress - This can be memory foam, inner spring coil type. There is no real recommendation as such. Look for ones that has good review and rating Crib Sheets - Look for water proof sheets Crib Cover - Essentially cotton sheets that cover cribs. Always have 2 covers as one comes as spare during laundry Rim covering. Though not needed for first few months, this is needed for growing baby. If you prefer to entice baby look for decorative lighting rim covers from vendors like fisher price Crib bumper - To avoid issues related to hands, legs getting stuck in rails use crib bumper the lining 3) Baby items needed from Day 1 3.1) Diaper - You can choose to subscribe with vendors like pampers, Luv's, Huggies etc. If you prefer to wait pick and choose based on trial and error. Essential items to look for while picking diaper Look for diaper size. Size charts come from many different diaper vendor. On an average new born needs 8 to 10 diapers per day. Sizing varies from preemie, newborn, 1 month, 3 month etc. IF you subscribe more than 1 pack some offer introductory discounts. It would make sense to choose more than 1 pack stack up for next few months, save real big. 3.2) Diaper wipes -Again choose the vendor of your choice. In case you choose diaper and wipes form same vendor discounts apply on combined purchase price. Very good example is pampers 3.3) Baby bath set - Baby soap, baby shampoo, baby lotion, baby head to toe lotion. Though not recommended brands to choose form depends on your kids skin tone, response. So, dont stack too much before identifying this 3.4) Baby powder - There are two options . One can be used for whole body, some can be used in diaper area alone. Look for specifications while choosing the baby powder 3.5) Diaper Rash cream 3.6) Baby clothing - This is essentially important as many of us dont know if we can stack this up. To start with buy 3 pair of dresses to maximum 6 pair of dresses. Rather than new born size choose newborn to 3 months range. Accept the reality. Size keeps changing as baby grows. Many vendors dont offer discounts in baby clothing. Good idea would be to save real big by shopping this as part of baby registry creation with vendors like target, amazon, Kohls to name a few. What are essential baby clothing to start with? This is a question that many of us are not so sure . Here is a quick checklist you can count on Baby play N sleep Baby caps Baby Mittens Baby Sweater Baby socks - This includes both internal socks and external socks to fit clothing Sleepware - This single piece clothing is a comfort zone your newborn loves to be clad with most of the time Come home baby dress - This is purely optional Fleeceware/show coat - Depends on location, climate etc. In simple terms this is winter coat for your new born One piece baby fits - Have 1 or two of them Shirt and pant separate sets - From baby comfort perspective this is really advantageous. All you need to do while changing diaper is to change pants General considerations while choosing baby clothing Look for cotton dresses that are real comfortable Look for size chart based on your baby size. Say your baby weights x pounds during 8th month, doctor can determine baby weight on an average Have soft , comfortable clothing to take care of flimsy infant 3.7) Baby wash clothes - Until umblical chord falls off babies are expected to be bathed every other day. This can be done using baby body wash, baby shampoo. The bathing needs to be done with baby wash cloth 3.8) Diaper Stack holder - To easily pull out diapers stack holders come handy. This is optional but mostly used on day to day basis 4) Additional baby items 4.1) Swaddle blankets - There are many different blanket variants like receiving blankets, burp cloth etc. It is interesting to note that swaddle blankets cater all needs. Though there are ton lot of brands moms choice is Aden by Aden plus Anias. Starting with its 44x44 size, cotton fabric, threads this is preferred choice . Typical recommendation is 2 packs of 8 blankets in total. This can be used in crib, stroller, car seats etc. Adults can use this in future 4.2) Nursing Pillow - As with crib there are contradicting views on this. However, for comfortable nursing, breast as well as formula feeding this comes handy 4.3) Cream to assist with nipple soreness - This is in moms checklist and can be bought as part of registry or separately 4.4) Baby gripe water/pills to keep gastric issues under control - Not every kids are prone to gastric problem. So, this is optional 4.5) Baby memory book - This can include books that help you get baby footprint, handprint in addition to ones you get in hospital. Again this is optional 4.6) Camera/Camcoder - Capture memories of new born first few minutes. This can be done in phone as well 4.7) Baby laundry detergent 4.8) Baby bath tub - Look for sizes. Some brands can be used only upto 6 months. Ones like fisher can be used so long

Pediatrician Visit Checklist For New Parents

Are you going to visit your pediatrician? Are you new parents looking to know what to carry while visiting pediatrician? This is a common question many new parents have as the experience is typically new and they are not sure how the baby will behave during the outing. Here is the list of items you can carry with you while visiting your pediatrician 1) Diapers - Carry two to three extra diapers. Pediatricians expect you to remove diapers to weigh baby, measure baby's growth. During this there may be need of diaper change or additional diapers. Hence, carry something handy 2) Diaper rash cream - Apply diaper rash cream if your kids skin demands so 3) Wipes - Wipes are used to clean the baby if needed 4) Blanket - Atleast two blankets are needed one to cover the baby another as a spare blanket 5) Formula Feeding - Carry bottles, formula bottle. In case of breast feeding carry pumped breast milk 6) Burp cloth - To avoid spilling while feeding baby if need be 7) Napkins - needed to clean the baby 8) Water bottle - This is for parents who are really tired with handling new born 9) Baby book - You get this book from pediatrician that tracks the growth of baby. Note all the questions however silly it may before visiting pediatricians

System Administration Using Puppet 205 Practice Tests

Puppet 205 System Administration Practice Tests will help you prepare for the hottest puppet product the open-source software configuration management tool that is rapidly gaining popularity in Devops space. Prepare using our practice exam questions and pass the exam in first attempt System Administration Using Puppet 205 Practice Tests will help you prepare for the hottest puppet product the open-source software configuration management tool that is rapidly gaining popularity in Devops space 1) Which among the following comments is properly formatted as per puppet language style guide? a) // lr.com b) # lr.com c) /* lr.com */ d) ; lr.com Answer : b Explanation : As per puppet language style guide comments must be hash and not /* */ 2) As per puppet language style guide what should a comment explain? a) why of the code b) how of the code c) not of the code d) unrelated code Answer : a 3) Which command is used to view all certificates waiting to be signed? a) puppet cert list b) puppet cert sign c) puppet cert sign -a d) puppet cert list -a Answer : d 4) Which status is invalid in puppet reporting in the Puppet::Transaction::Event? a) failure b) success c) ready d) noop Answer : c 5) Can a resource have multiple namevars? a) Yes b) No Answer : a 6) [master] environmentpath = $codedir/override_environments:$codedir/environments Is this a valid reference for the code directory? a) Yes b) No Answer : a 7) How will you make use of mcollective to trigger a puppet run on all your CentOS linux nodes? a) mco puppet runonce CentOS b) mco puppet runonce -f operatingsystem=CentOS c) mco puppet runonce -f operatingsystem -v CentOS d) mco puppet runonce --wf operatingsystem=CentOS Answer : d Explanation : In puppet enterprise the fact option is to be used with with fact option --wf (or) -F . 8) What is a fact in puppet enterprise? a) standard puppet facts available in puppet manifests b) standard puppet facts available in puppet actions c) standard puppet facts available in puppet OS d) standard puppet facts available in puppet agents Answer : a 9) Which mcollective subcommand is the general purpose client that can invoke actions from any MCollective agent plugin ? a) rpc b) inventory c) plugin d) facts Answer : a 10) Which attributes do you need to make use of to make exec command Idempotent? Choose all that apply a) unless b) onlyif c) creates d) print Answer : a,b,c 11) Mcollective makes use of ports to accept inbound traffic connection requests from puppet agents. Which port is being made use of for this purpose? a) 8080 b) 3306 c) 8142 d) 61613 Answer : d Explanation : Any host used to invoke commands must be able to reach MCollective on this port. The PE Console accepts HTTPS traffic from end-users on this port 12) Which among the following statements are valid statements of the producing and consuming service? a) report b) produces c) consumes d) export Answer : b,c,d 13) You have monolithic installations. In which port does puppetdb accept incoming traffic? a) 8081 b) 8122 c) 61613 d) 8142 Answer : a 14) What are the many different ways in which you can apply puppet manifests to the nodes? Choose all that apply a) Using pupptmani.conf b) Using Hiera c) Puppet Enterprise Console d) Include in manifests/site.pp e) leserver.conf Answer : b,c,d 15) What kind of operands are accepted on either side of chained arrows? a) Resource declarations b) Resource references c) Resource Collectors d) Hash of resource references Answer : a,b,c 16) You have to create complex expressions in resource collectors. Which of the operators can be used for this purpose? Choose all that apply a) eq b) and c) or d) != e) || Answer : b,c,d 17) Which among the following operators take precedence in puppet? a) * b) = c) ! d) in Answer : c 18) Which among the following operator has fourth precedence? a) * b) and c) = d) in Answer : in 19) Which among the following operator has third precedence? a) * b) ! c) or d) in Answer : a 20) In $facts hash which among the following variables are available? a) $serverversion b) $settings c) $clientversion d) $environment e) $servername Answer : c 21) Which $facts hash variable has current version of puppet agent information and are available as top-score variable as well? a) $serverversion b) $settings c) $clientversion d) $clientenvironment e) $servername Answer : c 22) Which among the below abstract datatypes will not match undef default? a) variant b) data c) any d) vector e) scalar Answer : e 23) Does variant datatype accept undef type as a parameter that will lead to resulting datatype match the undef? a) Yes b) No Answer : a 24) You have been asked to install puppetlabs-apache module from another module repository. Which command would you make use of for this purpose? a) puppet module install puppetlabs:apache b) puppet module install puppetlabs-apache c) puppet module install ~/puppetlabs-apache-0.10.0.tar.gz d) puppet module install --module_repository http://dev-forge.example.com puppetlabs-apache Answer : d 25) Which among the following categories does appear in the report of Puppet::Util::Metric object? a) resources b) events c) audit d) time e) changes Answer : a,b,d,e 26) In which directory of the module structure does the test function written to test functionality of the application reside? a) manifests b) examples c) functions d) templates Answer : b 27) Which among the following is not the control expression of an unless statement? a) undef values b) variables c) scalar d) expression vector Answer : a 28) Which among the following are catalog statements? a) realize b) include c) require d) contain e) notice Answer : a,b,c,d 29) Which operator can convert an array into a comma separated list of arguments? a) in.A b) A.or c) A.*(splat) d) A.+(concatenation) Answer : c 30) While writing a new class named mongodb::master which of the below module path should contain degnition class? a) mongodb/manifests/slave.pp b) mongodb/manifests/master/init.pp c) mongodb/classes/manifests.pp d) mongodb/manifests/master.pp Answer : d Explanation : The class modules and codes reside in the manifests directory 31)For running mcollective commands which user will you make use of? a) admin b) deploy c) puppet d) peadmin Answer : d 32) Who can issue mcollective commands as they control the puppet master? a) peadmin b) puppet c) admin d) sudeo Answer : a 33) Which among the following components is not a component of the mcollective orchestration internals? a) rpc b) mco c) pe-actiemq d) pe-mcollective Answer : a 34) Which among the following key types are accepted by priority lookup in hiera 3.x? a) top-level lookup keys b) low-level lookup keys c) qualiqed keys d) merge keys Answer : a,c

Puppet Interview Questions

Puppet is the most popular software configuration tool that forms part of any interview starting from fresher, middle level to experienced IT professionals owing to migration to Devops culture. Here are useful interview questions that will help you with preparation 1) Which operator can convert an array into a comma separated list of arguments? A.*(splat) 2) While writing a new class named mongodb::master which module path should contain definition class? The class modules and codes reside in the manifests directory. mongodb/manifests/master.pp 3) For running mcollective commands which user will you make use of? Make use of user peadmin 4) Who can issue mcollective commands as they control the puppet master? Make use of user peadmin 5) In which directory of the module structure does the test function written to test functionality of the application reside? It resides in the directory examples 6) Which is a control expression of an unless statement? Make use of undef values 7) Mcollective makes use of ports to accept inbound traffic connection requests from puppet agents. Which port is being made use of for this purpose? Any host used to invoke commands must be able to reach MCollective on this port. The PE Console accepts HTTPS traffic from end-users on this port 61613 8) You have monolithic installations. In which port does puppetdb accept incoming traffic? In port 8081 9) What are the many different ways in which you can apply puppet manifests to the nodes? Make use of one of the following methods : a) Using Hiera b) Puppet Enterprise Console c) Include in manifests/site.pp 10) What kind of operands are accepted on either side of chained arrows? a) Resource declarations b) Resource references c) Resource Collectors 11) You have to create complex expressions in resource collectors. Which of the operators can be used for this purpose? We can make use of anyone of the following operators : a) and b) or c) != 12) As per puppet language style guide what should a comment explain? It should explain why of the code 13) What is proper format of comments as per puppet guide? As per puppet language style guide comments must be hash and not /* */ 14) Which command is used to view all certificates waiting to be signed? Make use of the command puppet cert list -a 15) Which status is invalid in puppet reporting in the Puppet::Transaction::Event? The status ready is not a valid status 16) Can a resource have multiple namevars? Yes. There can be 17) [master] environmentpath = $codedir/override_environments:$codedir/environments Is this a valid reference for the code directory? Yes. This is a valid reference for the code directory 18) How will you make use of mcollective to trigger a puppet run on all your CentOS linux nodes? Using command mco puppet runonce --wf operatingsystem=CentOS 19) How will you make use of fact option in puppet? In puppet enterprise the fact option is to be used with with fact option --wf (or) -F 20) What is a fact in puppet enterprise? It is a standard puppet facts available in puppet manifests 21) Which attributes do you need to make use of to make exec command Idempotent? We need the following attributes: a) unless b) onlyif c) creates 22) Which are valid statements of the producing and consuming service? a) produces b) consumes c) export 23) Which operators take precedence in puppet? The operator ! takes precedence 24) Which mcollective subcommand is the general purpose client that can invoke actions from any MCollective agent plugin ? Make use of command rpc 25) Does variant datatype accept undef type as a parameter that will lead to resulting datatype match the undef? Yes . It does 26) Give details on some catalog statements :- a) realize b) include c) require d) contain 27) Which key types are accepted by priority lookup in hiera 3.x? a) top-level lookup keys b) qualiqed keys 28) Which abstract datatype will not match undef default? It is scalar datatype 29) Which abstract datatype will match undef default? It includes datatypes like the ones below : a) variant b) data c) any d) vector 30) You have been asked to install puppetlabs-apache module from another module repository. Which command would you make use of for this purpose? Using command puppet module install --module_repository http://dev-forge.example.com puppetlabs-apache 31) Which categories does appear in the report of Puppet::Util::Metric object? a) resources b) events c) time d) changes 32) Which component is not a component of the mcollective orchestration internals? It is the rpc 33) Which component is a component of the mcollective orchestration internals? a) mco b) pe-actiemq c) pe-mcollective 34) In $facts hash which variables are available? It is the variable $clientversion 35) Which $facts hash variable has current version of puppet agent information and are available as top-score variable as well? It is the variable $clientversion 36) What is the purpose of fileserver.conf file? The file that specifies the configuration for additional fileserver mount points for puppet master is fileserver.conf file 37) What is the use of pe.conf file in a puppet environment? pe.conf file is used to specify installation configuration parameters 38) What are the many different ways of applying manifests to nodes in a puppet environment? Many different ways like Hiera,Puppet Enterprise console, manifests/site.pp can be used to apply manifests to nodes in a puppet environment

Advantage of paying taxes with credit card

I filed my taxes yesterday and chose to pay the taxes using my Chase Freedom credit card instead of direct ACH transfer from my bank account. The CPA was against this as he had mentioned that I'm making a foolish decision by wasting 1.89% towards processing fees. Here is what I explained him that I'd like to share as money saving tip today 1) I applied for chase freedom credit card last month after doing rough math of my taxes. Chase freedom card comes with $150 cash back bonus that can also be redeemed in form of Chase ultimate rewards that can be used for many different purposes including travel. In my earlier post I've given full details on why I'm maintaining my Chase Sapphire reserve credit card inspite of paying $450 annual fees. The ultimate reward points that I earn towards meeting this spending limit can be redeemed towards travel 1.5 times its value as ultimate reward points can be combined and transferred from Chase freedom card onto Chase Sapphire card. The equivalent cash value becomes $150 x 1.5 = $225 2) In addition to this I earn 1% cashback on my spending in Chase Freedom credit card 3) Chase freedom comes with 15 months 0% APR on purchases. So, I dont have to repay this amount in full. Typically if I repay the minimum balance with $1 extra every billing cycle for next 15 months it is more than sufficient 4) I can park this money in safe instruments like one-year CD. Currently the average rate on one year CD is 2.10%. With 15 months interest it comes around 2.15% APY Now, let us do simple math on processing fee and see if we make more Processing Fee = 1.89% Income Earned by Parking in CD's = 2.15% Cash back rewards = 1% Cashback rewards + sign-on bonus rewards towards travel = 1.5 times $150 plus your tax bill As a whole I save 0.50% minimum towards this if I make use of Chase Freedom credit card. You can apply for Chase Freedom credit card and get this approved today. Interestingly there is no annual fee ($0 annul fee) on Chase Freedom credit card

Rakuten Ebates offers hefty cashback during Tax filing

Tax season is the favorite season to talk more on money, taxes, savings, Wouldn’t it be interesting to get rewarded for paying your taxes appropriately in the form of cashback. Now, ebates does offer fantastic cashback for simply starting your tax filing from within ebates. Choose from one of the many different taxstore options available, shop around and start tax filing Ebates a popular cashback site literally offers free money for starting the purchase from their website. This free money comes in the form of cashback. I started using this last month. I got my first cashback cheque yesterday. Today morning I started shopping around for best fee with tax filing software inside ebates website. Interestingly I found lots of interesting cashback bonuses while using tax filing software from within ebates Here are the cashback percentage that are calculated on total amount spent towards tax filing as fees before taxes while your taxstore shopping starts at ebates H&R Block e-file.com FreeTaxUSA TaxAct e-smart Tax intuit Payroll

Powercfg Utility to Rename Power Plan in Windows 7 also using powercfg scripts

We'll be discussing on how to rename a power plan in windows 7. Windows 7 has rich set of tools and utilities to perform  various functions. One such tool useful in power management is the powercfg tool. Powercfg (or) powercfg.exe can be invoked by typing powercfg at command prompt. Click CTRL+SHIFT+ENTER. This opens the utility to be run as administrator. To get list of power plans issue powercfg -list (or) powercfg -l Choose the guid of the power plan to be renamed. Issue the powercfg -changename GUID newname description command. In this description is optional. Again issue powercfg -l to make sure that power plan has been renamed properly. C:Windowssystem32>powercfg -l Existing Power Schemes (* Active) ----------------------------------- Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e  (Balanced) Power Scheme GUID: 49ef8fc0-bb7f-488e-b6a0-f1fc77ec649b  (Dell) Power Scheme GUID: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c  (High performance) Power Scheme GUID: a1841308-3541-4fab-bc81-f71556f20b4a  (Power saver) Power Scheme GUID: a6020543-6300-4f30-8fb7-485080ba4de8  (Newname) * C:Windowssystem32>powercfg -CHANGENAME a6020543-6300-4f30-8fb7-485080ba4de8 Ne wname_Test C:Windowssystem32>powercfg -l Existing Power Schemes (* Active) ----------------------------------- Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e  (Balanced) Power Scheme GUID: 49ef8fc0-bb7f-488e-b6a0-f1fc77ec649b  (Dell) Power Scheme GUID: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c  (High performance) Power Scheme GUID: a1841308-3541-4fab-bc81-f71556f20b4a  (Power saver) Power Scheme GUID: a6020543-6300-4f30-8fb7-485080ba4de8  (Newname_Test) * C:Windowssystem32> While trying this command  I had an error initially which said : C:Windowssystem32>powercfg --changename  a6020543-6300-4f30-8fb7-485080ba4de8 Newname Invalid Parameters -- try "/?" for help I tried reducing space between --changename and GUID. It should be one spacing. By mistake I had two tab spacing which invoked error. I changed spacing to one tab spacing. This fixed the problem. Powercfg commands can be issued in command-line or using powercfg scripts in windows

SAP HANA interview questions

SAP HANA Scheduling using Windows Scheduler And HDBSQL:
HDBSQL the command line interface helps SAP HANA system interact with SAP HANA database. As SAP HANA adds new features, it si important to note that SAP HANA has a scheduler missing now. This prevents us from scheduling routine batch jobs at DB level.However, it is possible to schedule at windows level using OS scheduler and SAP HANA HDBSQL command-line tool

SAP HANA DB Users:

If an user wants to work with SAP HANA DB he needs a user accoutn with a set of privileges to work on SAP HANADB

What is a role?

Role is the set of privileges

Why is a role important in SAP HANA DB?

Every user who gets created and works with SAP HANA DB will be grnated a role which internally carries set of privileges

This is a clear demarcation of level of access a user gets and actions a user can perform at SAP HANA DB

What happens when SAP HANA DB is installed?

As a part of default SAP HANA installation some standard user like SYSTEM which is the user account used for day-to-day activities gets created. SYSTEM user account is also important as this is account that created DB users and offer them privilege to perform tasks at SAP HANA DB level

In addition to standard SYSTEM users, some DB technical accounts that perform database technicalities like statistics collection, SYs operation are also created. Some of these accounts include SYS, _SYS_STATISTICS. Note that we cannot log onto SAP HANA DB using these accounts

SAP HANA Operating System User Overview

Users who wish o work with SAP HANA DB need a user account at DB level. During SAP HANA install SYSTEM account the DB account gets created that helps in other user account creation and administration

At OS level an user account adm called the OS system administrator gets created. This account controls SAP HANA system files and file structures at OS level. This user doesnt exist at DB. In short this is system administrator account from OS context

What is significance of OS admin form SAP HANA studio perspective?

This user credentials are neede dto perform DB start/stop, recovery of DB and such DB admin tasks from sAP HANA studio interface. The first step (i.e) to start a SAP HANA system requires adm OS administrator credentials

SAP HANA Backup File Location:

As with any system SAP HANA system needs to be backed up. The backup destination of SAP HANA is smae as common software system $DIR_INSTANCE/backup/data

This is default backup destination and it is possible to change the backup destination using global.ini parameter basepath_databackup

It is also possible to make changes using SAP HANA studio configuration tab. Choose file global.ini->persistence, make changes

SAP HANA Project Orange:

On November 7th, 2011 SAP released its much awaited in-memory database originally names as Project Orange but later rebranded as SAP HANA. Hence both names represent same. As per SAP project orange is huge and it is  a project that will likely replace all the vendor databases including oracle, sql server , db2 and migrate entire SAP infrastructure onto its DB

It is good practice to always work on latest version of SAP HANA studio. We can check for updates manually on a regular basis.We cna also configure SAP HANA studio to check for updates automatically

We can configure automated updates download form site (same as simple microsoft updates)



How to specify the update site details?

In SAP HANA studio specify the update site details using following navigation

Window->Preferences->Install/Update->Available Software Sites

Choose Add option and specify name of update repository and its location there



SAP HANA studio manual updates:

It is possible to apply manual updates as follows :

From Main menu choose, Help->Check For Updates -- Teh SAP HANA studio software checks specified site for latest updates

If you see an update look at the instructions, follow instruction and install updates



SAP HANA Studio Manual And Automated Updates - SAP HANA Studio automated updates :

We cna configure SAP HANA studio to check for updates automatically and get an alert on new update if one exists

From Main menu choose -> windows->Preferences->Install/Update->Automatic Updates

Specify update settings to get automated update availability alert

SAP Offers ERP Migration From DB to HANA:

Recently SAP announced that business suite is in ramp-up for HANA. ERP migration (i.e) BW migration from current RDBMS database to HANA is going to be risk free as per SAP

SAP recommends a dual delivery setup wherein we first migrateERP RDBMS to HANA, test the migrated systems, verify migration, move end users to BW on HANA system

SAP HANA migration is a full database migration and hence all the users in current RDBMS of BW will be migrated to SAP HANA

All users/roles in BW application are initially defined using ERP application layer. Hence after migration there will be a simple role change for users of SAP HANA datamodeling studio in HANA datamart

SAP HANA HDBSQL Options:

HDBSQL is the command line interface that can be used to query information on DB and DB objects. This cna be used in interactive, non-interactive mode. Following are some common options that come with HDBSQL

-i - This is DB instance ID. it is usally possible to make use of windows services panel to get to know detials on DB instance

-u - This is useraccoutn using which we try to log into DB. Note that user account must exist at DB

-p - This is password for DB user

-U - this is credential from user store

-z - This sets autocommit mode off

-saml-assertion - Used file to provide SAML assertion

-r - This option supresses usage of prepared statements

-n - this is hostname of machine on which DB is installed and port number

SAP HANA Analytics Foundation For SAP Business Suite:

SPA HANA analytics foundation for SAP Business suite popularly called SHAF was released on December 2012

It provides infrastructure to enable data from SAP business suite to be used by SAP HANA for analytic processing

This provides views in SAP HANA for reporting on data that persisted in SAP HANA table format from SAP business suite of products without any data transfer form original tables in suite

This helps business users analyze data and make business decisions.

Technical implemnetation is using SAP HANA integrated studio that makes reporting possible from SAP business suite

To put it simple SHAF is the reporting tool to generate business report from SAP business suite of products

SAP HANA system Properties Brief Overview:

In any system its properties are usually stored in a common file called as configuration file. Say in case of oracle DB it is init.ora (or) spfile.ora

In case of a PHP system it si php.ini

similar to that SAP HANA system stores its configuration properties in a system file. The properties of SAP HANA system are defined as part of different configuration parameters in this file

Parameters of same category are bundled and categorized in this configuration file



How can we change the properties of SAP HANA system?

As with all other systems, an user wiht administrative privilege INIFILE ADMIN will be able to make changes to the properties in the file

1) In SAP HANA studio administration editor, choose Configuration tab - This gives us list of all configuration files

2) Choos eand expand the particular configuraiton file we want to change - This lists all the sections of that particular configuration file

3) Expand the section of interest - Choose parameter we wish to change. By default these parameters will have some value set in place

4) Choose Change in context menu of configuraiton parameter. This pops Change Configuration Value dialog box

5) Enter new value

6) While entering new value if these changes are confined to specific hosts, we need to choose the Hosts area of Change Configuration value dialog box, choose specific hosts and enter host specific values

Thus it is possible to change value and have its scope across systems,hosts. If specified hosts specific value takes precedence over systemwide value



Some parameters can't be changed at host level and they show disabled icon in Hosts area of Change Configuraiton value dialog



Does the change in parameter value require system restart?

simple answer is No. If needed relevant components of system are restarted on it own

SAP HANA System Schema:

System schema are database schemas that get created in SAP HANA database. As these are not realtime users we cannot make use of these accounts to log into database

Following is the list of SAP HANA System schema

1)_SYS_BI

2) _SYS_BIC - This contains details on column views, metadata

3) _SYS_REORG

4) _SYS_REPO - This is repsitory owner

5) _SYS_STATISTICS - Schema used for statistics collection at DB. Performance of a system depends on statistics and it needs to be uptodate for optimal system performance

SAP HANA Studio An Introduction Usage Overview:

SAP HANA studio is a java application that is supported on top of eclipse platform. It is a all in one tool that is being used by administrators, developers, project managers as it ahs lots of features to be used by many different people in an organization

1) SAP HANA studio tool has provision to start, stop, monitor the system, perform configuration, create modeled views, stored procedures etc

2) It connects to SAP HANA DB using sql (JDBC internally)

3) SAP HANA DB acts as repository to store modeled views, stored procedures and such artifacts



Who can make use of SAP HANA studio?

Based on its features and functionality it cna be used by range of personnel in an organization including



1) SAP HANA Admins

2) DBA's

3) Dat aModeler

4) SAP HANA Developer

5) Lifecycle managers (usually ALM personnel)

SAP HANA _SYS_REPO User:

SAP HANA has some technical database users that usually cant be used for logging into database. Instead they support various technicalities of SAP HANA database. One such user is _SYS_STATISTICS, _SYS_REPO etc.

_SYS_REPO is teh SAP HANA technical database user that is used by SAP HANA repository.

SAP HANA repository consists of design time versions of many different objects such as analytic views,calculation views, procedures, analytic privileges, roles. The owner of all objects in repository and activated runtime version is _SYS_REPO user

How is query analysed in SAP HANA database?

Query analysis in any database starts with query plan. SAP HANA DB is no different.We can generate explain plan for query under investigation in SQL console and use this to determine next steps

Enter the query in SLQ console and in context menu choose EXPLAIN PLAN. this is for explain plan for single query.To generate multiple explain plans for many different queries we enter many SQL's seperated by semicolon

EXPLAIN PLAN is displayed in Result tab

Are plan explanations stored at DB level?

Yes, SQL EXPLAIn PLAN explanations are stored at explain_plan_table view of SYS schema. This cna be used for later examination

SAP HANA HDBSQL Overview:

Just as the case with all software systems SAP HANA comes with its own flavour of command line execution using HDBSQL.We can execute sql commands, DB procedures, query information on DB and DB objects using HDBSQL component of SAP HANA software. We can access databases on both local systems and remote computers

How do I start using HDBSQL?

Execute hdbsql [options] to call hdbsql

Note that hdbsql cna be used in both interactive and non-interactive mode to query informaiton on DB and DB objects

We can also import command from a file and execute it in backend using HDBSQL

SAP BW on SAP HANA :

This is a common terminology usd among SAP datawarehousing professionals these days. It is simple SAP BW netweaver datawarehouse that is hosted and runs on in-memory appliance software SAP HANA. SAP supports migration of existing BW RDBMS to SAP HANAand it provider faster output than regular dataabses like ORacle,SQL Server

It is possible to migrate data from existingERP (SAP BW) to SAP HANA using dual delivery model. Themigration is a full DB migration and involves some changes in SAP HANA datamart roles after migration

SAP BW on HANA Sizing :

It is important to have capacity planning of SAP BW on SAP HANA and sizing involves following considerations

1) RAM Sizing - Get details on full data footprint - This involves memory sizing for column store data , memory sizing for row store data, memory sizing for runtime objects, data load, query execution

2) CPU sizing

3) Disk Sizing



Capacity planning involves personnel who will be working on this technical infrastructure. We can also make use of an ABAP script that helps us get sizign details

The sizing report /SDF/HANA_BW_SIZING is a easy to deploy script that considers user defined future growth and has many parametrs and is independent of source databasecompression

SAP HANA Database Backup Methods & Tools :

It is possible to perform SAP HANA database backup using different tools and methods



1) SAP HANA studio - This eclipse framework offers a way to perform SAP HANA backup. This requires OS <sid>adm privilege to proceed further without any issues

2) SQL commands

3) Batch mode - This is set of commands in a file run usually as batch script

 What is SAP's Business Framework?

SAP's Business Framework is a product oriented architecture framework from SAP.This framework enables simple configuration and connection management of all business processes.This provides hardware and platform independence of components and help them function in an integrated fashion.This framework enables easy addition and removal of applications into existing enterprise software without interrupting day-to-day activities of business.Applications included in this framework communicate using ALE (Application Link Enabling). protocol.



Data is transferred between the applications included in this framework using SAP-certified BAPI interfaces.



The applications can be SAP Products such as SAP Business Information Warehouse (BW), Advanced Planner and Optimizer(APO) or non-SAP products.



Applications such as a company's existing self-service intranet applications can be integrated into this framework.



For connecting third-party applications into this framework they must be SAP certified.



A good example of an application integrated in the SAP's Business Framework is R/3 System.



 

SQL Server Reporting Services(SSRS) - Create A Project

SQL Server Reporting Services(SSRS) - Create A Project is a mandatory task while creating reports.This is based on SQL Server Reporting Service (SSRS) 2005 edition.Follow steps to create a project :
1) Run the Business Intelligence Development Studio(BIDS). We can also run Visual studio 2005. Start Page is displayed.
2) If a solution is already open close it using :
Select File --> close Project
3) New project can be created in three different ways :
3.1) From the Main menu Select :
File-->New-->Project
3.2) Click the New Project Toolbar button
3.3) Click Create Project link on the Start Page
4) Click the Report Server Project icon in the Templates area of the New Project Dialog Box
5) Type the project name
6) This project will contain all the reports
7) Specify the project location dialog box; Click Browse to open the Project Location Dialog Box.
8) Click My Projects to go the Visual Studio Projects folder. Open the folder
9) Click Ok and now a new Project is created

HR 3012 Approved 389-15 Senate

Most awaited much sought after HR 3012 Fairness in immigration act which lifts the per country limit in immigraiton visas has been finally approved by senate on November 29th 2011 evening at 7:11P.M. This bill was esily passed with majority of 389-15. This is remove the per country limit on the employment based greencard sponsored to immigrants.
India and china are the countries that will be benefited most out of this law.

Google Analytics Bounce Rate And Its Indication

Google analytics offers plethora of metrics that determine provides clear engagement on user engagement with website. One interesting metric is the bounce rate. A bounce rate determines the number of times a back button is hit (i.e) how many users chose to hit back button from the website. Higher the boune rate lower will be the quality of website. It is a good signal is bounce rate is really low as people choose to stay in site instead of moving back

ATM Not Working Banker Refunded Fees Always Ask For Money If You Need Money

This is my personal experience. It was a saturday morning 8:00A.M. I went to the nearest ATM to withdraw cash amount. There was a maintenance work going on in the nearest ATM. I had to make it to the shopping complex without any delay. I used the ATM in the complex to withdraw some cash. After a week when I checked my bank account I found $1 levied towards my $40 cash withdrawal. I couldn't agree with it. I called up the customer support and it turned void. After a month yesterday I had some personal work in bank and I met the manager there. I politely mentioned the scenario and the $1 fees to her. I asked if she can help me with this. She asked me about the day of maintenance. She verified it and made sure that it was the right information. All of a sudden she did refund my $1 back to my account. I felt extremely happy.
Moral of this incident - Even if it is late, if you want to save your own money you need to ask for the same. This might sound minimal. But the attitude you have towards your money is great. So, friends hereafter never forget to save money as making money is saving money.

Ebates cashback sweet spot on purchase

I wanted to utilize the promos, coupons , deals that come as part of St.Patricks day this year. It's been a while I've purchases my handbag, before six years to be exact. Also, I bought an affordable comforter for our family before 7 years. I thought it would be better for me to make bedding set purchase as well as handbag purchase this year As a first step, I logged into ebates a cashback website that I did enroll this month. This is a totally new concept. Now-a-days I see that most of the online shopping on major brands like walmart, kmart, target, krogers, 1800flowers, JCPenny, even travel websites like expedia, travelocity, orbitz, hotel booking website hotels.com, booking.com and much of the top brands that sell their service online has partnered with cashback websites like ebates.com When I mean by cashback, note that you need to do the following to earn money in the form of cash. Currently ebates has an option to ship the physical cheque to your home address as per their cycle. For my purchase made yesterday in the month of march, I got an email confirmation saying that I'm going to get this cheque in the month of May. This is my first try and I see ton lots of positive reviews about the credibility of ebates, they have been in business so long and I'm sure that I'll get this cheque in the month of May 2017 Adding to this I did chat with JC Penny online store customer support to make sure I'll get rewards if I start the shopping from ebates. They confirmed that I'm going to get my money from them To start with here are the simple things to earn free money on your purchase 1) Create an account at Ebates website. IF you click on the banner below, you will earn $10 during your first purchase. So, dont miss $10 worth of free money 2) Once you signup your free account, you can login and perform the search based on categories as well as keywords. I wanted to purchase bedding and did a search on that. I got a list of stores with their current coupon details. I found JC Penny offering coupon that will save me 20% on my purchase sitewide on any purchases over $100, 15% purchase below $100. Also, JC Penny offers free shipping for orders over $100. I did choose to utilize the opportunity and clicked on SHOP button from ebates website 3) In JC Penny website I made a purchase and finalized the order. I placed the order and to be double sure used the email address that I did make use of to create my ebates account. Typically the link tracking should work fine, but I did not want to take a chance. EVen if they do email comparison I will have credibility of being loyal to ebates 4) Immediately I turned back to ebates website to see what is going on. I did not see any cash back. This was yesterday night 5) Today morning exactly after 3 hours of making purchase I got the cashback credited in my ebates account. I've set my email alert in ebates, that did notify me of this 6) Ebates promised 3% cashback on my purchase. I see that the cashback earned is before taxes after applying JC penny discounts to the products. As such I got 20% + 3% 23% discount on the entire sale yesterday Today I got an email from airlines loyalty program and they talk about earning 5 miles per $ spent in their airline reward program. I got much interested. I'll keep publishing my analysis and findings on ton lots of money hacks, travel hacks, cashback, deals , offers and lots more including my case studies that did work for me Ebates has an option to send you cashback in form of physical cheque to your address as well as your paypal account. To support us please click on this banner to register your ebates account for FREE and start earning money today onwards

Google App Engine

Google App Engine is the web development and hosting framework from Google Inc which allows users to upload their web applications and host it for free.
It also allows web developers, to make their application public, allow other users todevelop versions of their applications, create dynamic websites, create websites with backend datastores etc.
Best thing about Google App Engine is that it comes with plenty of free features.
Google App Engine is free as long as :
1) User resource usage quota doesnot exceed 500MB
2) Number of page views is upto 5 million pages per month
Google has a billing system for quotas exceeding free quota.
Users can set their daily budget.

Walt Disney Adventureland Pirates Of the Carribean

Walt Disney Adventureland Pirates Of the Carribean is the journey through seas that takes us way back to ages wherein pirates ruled the world. As per Disney embark on a voyage to a time when pirates ruled the seas at Walt Disney Magic Kingdom's adventureland. This is a cruise with disney's song that takes us on a voyage through beautiful tunnel in which we can experience the feel of pirates ruled seas. This ride has an average wait time of 40 minutes and you can enter it in less than 10 minutes if you choose to make it late night. Visit disney today to enjoy the pirates cruise

What to do before Finger printing process?

Finger printing the process that ensures that person is free of crime based on report from FBI is an essential part of GC process. As soon as you get your receipt number from USCIS the next notice is the FP notice that gives details on finger print appointment. Here are general steps to follow during finger print appointment
1) Switch off your cell phones
2) Make it early before your appointment time
3) Call FBI the evening FP is complete and make sure that information is sent to USCIS
4) If it a second time FP attend without skipping it

5) As the finger print involves thumb impression make it a point to avoid sharp tools few days before FP process

General Securities Registered Representative Series 7 Exam FINRA Certification

If you are interested in becoming a stock broker also called as a registered representative Series 7 Exam is the right choice for you. You become a General Securities Registered Representative on clearing Series 7 Exam.
Series 7 licensed individuals are qualified to solicit, purchase, sell the comprehensive list of security products :
1) Corporate Stocks and bonds
2) Municipal bonds
3) U.S Government bonds
4) Options - Derivative product
5) Direct participation program - Limited partnership
6) Investment-company securities
7) Variable products
Series 7 Exam is a multiple-choice examination having 250 questions. It is a 6 hour exam. It is taken as a 2 part exam, 3-hours each. Each part has 125 questions.

Check if a python module is installed or not using a script, Check python module installation

When working with python development, plenty of modules come into picture. There are times wherein python developers/users are not sure about certain modules being installed.This script can be used to check if the module is installed or not.
_VERSION_ - attribute may be defined for some scripts. For some scripts, this might give out an error.
try:
import modulename
except ImportError:
print "modulename is not installed"
else:
print "modulename is installed"
print "with version", getattr (modulename, __VERSION__, "unknown")
For example, to check if the html/xml parser module BeautifulSoup is installed run,

try:
import BeautifulSoup
except ImportError:
print "soup is not installed"
else:
print "soup is installed"
print "with version", getattr (soup, __VERSION__, "unknown")

Load a Specific Theme Group Policy Applied Incorrect Windows 7 Windows Server 2008 R2

Group policy is the set of rules that can be applied across set of clients. This is similar to .profile file in UNIX/LINUX. Load a Specific Theme group policy forces all the clients in a domain to apply a specific theme when a user logs onto a client computer. In UNIX/LINUX environment including special environment variables like ORACLE_SID are automatically set in .profile file. It can be customized under /home/username/.profile to create user specific rules.
In our case we will be seeing issue specific to Load a Theme Group Policy in Windows 7 and Windows Server 2008 R2. Say after creating a group policy we enable Preserve Changing Desktop Background. Now a new user logs onto client computer. In this case the Load a specific theme group policy can't be applied to this new user.
To solve this issue download and apply the Fix307916 from Microsoft website.

Start Group Policy Management Console Windows 7

Group policy is the set of administrative rules applied to users. It plays a major role in user management. Group Policy Management in Windows 7 starts at Group Policy Management Console.
Here are steps on how to go about with starting Group Policy Management.
Click Start->Control Panel->Administrative Tools->Group Policy Management
 

Blogging - Agile website Development - Quick Monetization of your content

Blogging is the means to develop instant websites.All it takes is 5 minutes to create a blog from www.blogger.com and start publishing your post.All search engines are looking for is quality contect. To have best quality articles is the first and foremost SEO (Search engine Optimization) tip.First and foremost function of search engines is to deliver quality content to the end user. They try to kick out garbage.
We are the kings and queens of quality content.Make it a habit to blog daily.Read your article once. You are the best reviewer of your article. Be your articles be commented by you first. This will propel you to write quality articles.So, what next?
We have spoken a lot about article optimization, SEO but haven't touched upon title!!!!!!!!!!!
Agile - Fast/swift development of projects is popular among Information technology community, development community in particular today. Basic concept of Agile development is accelerating development and deliver solutions as early as possible.In a similar fashion, create a blog first. Keep blogging regularly.If you are tensed about how to build a website, don't waste that research pace in full fledged research.Lets say you find out all the tips and tricks needed to develop a quality website in two month time.
If you've had your blog by this time an blogged regularly, now your blog is two months old. It might have been indexed by Search Engine robots and will be progressing to the top. Now you can slowly create a great website and move your content.
Also, you might have been enjoying two months Adsense revenue.
So, now got the point.
Agile website development/Blogging advantages :
1) Search Engine Optimization (SEO)
2) Adsense revenue
3) Create quality websites without any rush

Apollo Command-line Tool - ADL

ADL is a command-line tool.ADL launches an Apollo application, based on its application.xml file, without requiring that the application be installed.This is a tool very useful for testing and debugging the application.
We call the ADL tool by passing one parameter - Path to the application descriptor file(application.xml file)
Usage :
adl application.xml
Full syntax of the ADL command is :
adl (-runtime )? ? (--)?
where,
-runtime - optional argument that specifies the directory that contains the Apollo runtime that should be used
path-app-xml - application.xml descriptor file for the application that should be launched
path-to-root-dir - optional argument. Specifies that directory that contains the application.xml descriptor file

-- - Any arguments specified after this argument will be passed to the application as startup/command-line arguments

Some Tips To Google Blogger Team

Here are my few cents on what google blogger team can do to make blog more sophisticated. We know that blogspot is aimed at static websites. I see some features in Google Sites product which can be integrated with blogspot so that we don't have to migrate to a new website using content management systems (CMS) like Wordpress, Joomla, Google sites etc.
1) At the end of every post there can be one additional button to delete the post. If this exists, we don't have to go to dashboard everytime to choose and delete a post
2) Blogger has provision to include Adsense ads between posts, at sidebar and bottom of posts. It would be great if blogger has an adsense provision to be included inside a post. This can come in following form
2.1) As a feature added to toolbar in post editor. This is the case with Google Sites
2.2) In layout, in body section this feature can be included
3) Adsense position option can be integrated. This is present in Google sites. When we choose to add Adsense as a gadget, we have colour customization (This feature is not in Google sites. This can be included as an additional feature in Google sites), type of unit to be included. In addition position - left, right, centre can be included

Windows 7 System Recovery Options

Windows 7 System Recovery Options screen displays a set of tools that can be used to repair serious system errors.
To get system recovery options menu, boot system press F8. Click on advanced boot option. Click on repair your computer. Press Enter

Pre-conceptional Visit Versus Prenatal Visit

Pre-conceptional Visit Versus Prenatal Visit - Are they the same? No. They are different.
If you go and meet a gynecological doctor before pregnancy it is pre-conceptional visit. If you visit a gynecologist say after two or three weeks of pregnancy when the embryo has already started developing, it is pre-natal visit.

WOW64 Windows Emulate 32-bit application on 64-bit Windows

WOW64 is the windows emulator which will let us run 32-bit applications on 64-bit windows. This architecture is implemented using set of DLLs
1) wow64.dll
2) wow64cpu.dll
3) Wow64win.dll
4) IA32Exec.bin and wowia32x.dll
WOW64 is implemented as a part of the OS and doesn't need to be enabled. Execution speed ad performance remain unaffected under WOW64 implementation.

Microsoft Windows 7 PSR Problem Steps Recorder Tool

Microsoft Windows 7 has an interesting tool that is used to record step by step action of user. It is a boon for customer service representative as it provides screenshots along with timestamp and short note on what user has done. This tool can be invoked by typing psr.exe (or) psr in command prompt. This invokes tool. We can click on Start Record, perform tasks which are recorded live and stop record. A File name "problem_xxx.mht" is created that can be opened in browser and accessed to find more information on the problem.

Windows 7 Activation Error : invalid Product Key Upgrading From Windows XP to Windows 7, Activation Error 0XC004F061

I have Windows XP running in one of my laptops. I thought of upgrading it to Windows 7 and purchased a Windows upgrade from microsoft.
I formatted the Windows XP OS and tried installing windows 7. I got this peculiar error which said ” Invalid Product Key”.Activation Error 0XC004F061
I followed the correct steps and was wondering why am I finding this error.
I checked few documents and found that I need to retain my old OS (In this case it is windows XP). Retain your old version – windows XP, Windows Vista intact while you are upgrading it to Windows 7.
I installed my Windows XP and tried upgrading it. Now I’m able to perform this upgrade without any error.
Other than this invalid product key error occurs when you mistype the product key, typed a product key relevant to older version (say if you upgrade from XP to Windows 7 you need to type product key information of Windows 7 not Windows XP). These fixes will help fixing “invalid product key” error.

Paypal Bill Me Later Credit Line From Paypal

Paypal the payment gateway noted for its quality and service makes shopping more easy, comfortable by offering an interesting credit line service to its customers. Paypal beautifully calls it Bill Me Later
The name speaks for itself. Now, you can choose to get preapproved creditline from paypal and pay the amount at a postdate
As an introductory offer, paypal offers the following benefits
1) $10 back on your first Bill Me Later purchase of any amount.
20 No Payments + No Interest if paid in full within 6 months on purchases of $99 or more.
However, interest will be charged to your account from the purchase date if the purchase balance is not paid in full within 6 months. This is same as COSTCO AMEX offer
Where do I apply for this?
https://www.billmelater.com/cm/paypal/landers/13ppbmlACQappdd.html

USCIS G-1145 e-notification form I-485

It is I-485 season right now. Priority dates are progressing in rocket speed and most of us are eagerly awaiting details on our priority date. Once the priority date becomes current and we proceed with the process of filing I-485, USCIS has introduced a free e-notification option that enables us to receive SMS and email from USCIS starting with I-485 receipt, EAD/AP approval, I-485 approval, FP notification etc to name a few. This is easily achieved by using form G-1145.
What is form G-1145?
It is a simple form that is available in latest I-485 document download page. It can be printed out, filled and submitted to USCIS.
How much does it cost?
It is absolutely free
Do USCIS take up cost of SMS?
Some mobile service provider do charge extra for SMS, in case we are not using data plan as with smart phones. USCIS doesn't take up cost of such messages and filer need to pay the money
Where do I download form G-1145?USCIS portal

Are you pregnant beware of obesity issues

Are you obese now? Do you think you don't tally the body mass index BMI receommendations? Are you planning to go for a baby now? It is right time to go for a pre-natal consultation. Studies have shown that obese mothers deliver lower birth weight (LBW) babies to delivery failure. A baby born with lower birth weight complication has great chances of developing type 2 diabets, high blood pressure and cardio problems in future. There is a great possibility that he or she picks up the obese gene from his mother
and grows into an obese adult. So an obese mother always delivers an obese baby. So, go for a prenatal consultation with your gynecologist. Follow the health recommendation including mineral, protein, vitamin rich 2000 calorie food daily. Also practice good prenatal exercises, exercise during pregnancy. Take the help of fitness trainer and do great exercises during pregnancy. A healthy mother delivers a healthy baby.

Apply this simple trick while choosing Travel Credit Card

I'm much interested in redeeming travel statement credit by appropriately applying for travel credit card these days. One thing that makes me stay away from applying for one is that I'm scared of too holding too many credit cards affecting my credit score.
I want to make a home purchase in near future and want a really good credit score. Though I'm prompt with paying my bills , pay all the statement balance in full, holding too many credit cards, opening and closing many bank accounts for sign-up bonuses does affect our credit score. I am somewhat hesitant about it
Now, coming to the trick on travel reward credit card, here is what I've found before few minutes
1) All of a sudden I saw a new service from google called Google Compare
2) I logged into Google compare and compared Credit Cards that fall under their category - Airline Miles
3) As with many bloggers constantly talking about the Barclays Arrival Airline miles card, I found both of them really interesting - Barclays Arrival Plus WorldElite Master Card, Barclays ArrivalWorld Mastercard
4) Here is the trick - When I checked requirements interestingly I found that
4.1) To redeem 20000 points from Barclays Arrival World Master card demands us to spend $1000 within first 90 days of card opening
4.1) To redeem 40000 points from Barclays Arrival Plus World Elite Master Card we need to spend $3000 within 90 days of opening
4.3) Trick Works - Myself and my spouse apply for Barclays Arrival World Master card, spend $1000 totally $2000 within first 90 days to redeem 40000 points. We save annual fee starting second year. Cool isn't it?
You can analyse all the options before deciding on it
However, if you would like to redeem all the 80000 points that translates to $800 in travel statement credit by making a purchase total of $6000 within first 3 months go for other option. Note that this card has an annual fee starting second year whereas the other one doesnt have one

best domain authority laser focus sure success

I've always felt that lack of focus had been the major productivity killer.But to achieve something great, we should look for a way to overcome defeat and attain success. This is the correct mindset of an entrepreneur. As an aspiring entrepreneur I've adopted this principle. As a first step I'm reading the books and trying to apply it in my projects.
Before few days, I've launched a competition Alexa 10 day challenge.The basic purpose of this is to make my top ranking alexa website, perform better by focusing on that One Thing. So, far I'm able to post atleast one post per day in that website.
Surprisingly I found that an interesting SEO metric called Domain Authority plays a vital role in determining the success of a website. I've been reading metrics like domain authority, page authority before few months and didn't focus much on it. However, the article that I read yesterday was talking much on importance of Domain authority and how this surpasses page rank parameter. Surprisingly when I checked the domain authority of this best alexa rank website this was closer to 30. This is a very good domain authority. In simple terms this is the measure of how well your posts will rank in a website. As this domain has been registered very long back and I've been working on and off on this, still this is growing stable without my knowledge. That is power of web. So, I decided to apply the One Thing principle with more force to this website.
More good quality posts I post here there is a best chance of them getting listed in first few pages very easily. I'll report more on domain authority progress after few days

How I paid myself before paying bills this month

Last week I have completed reading RICH DAD POOR DAD, the most popular book on personal finance. Although Rob tries to sugar coat usual things like multiplying your income rather than depending on income fromjob for lifetime, I wanted to see if I can try to apply some of the simple principles discussed therein.
As a step towards that the first step is to pay myself before paying my monthly bills. As per the book Rob asks us to make use of the money to be used to pay our bills to first be utilized for investment. In practical terms this might sound impractical. Say, we live in a condo and I got my electricity bill this morning.
It read $100+. I'm not sure what investment I can make with this $100 and make sure I pay the bill wihtin a month after making profit frm this $100. One quick thing that I cna think of is ultra penny stocks traded around $.01. If my luck favours me I might end up doubling my money. Ultra penny stocks are ultra risky. I might lose my money as well.
Also, as part of trading I need to consider $20 towards trading fee. As such I was looking for some safe bet to pay myself before paying the bill. The easiest and safest idea that did pop up is the savings account. I have habit of paying my bills day 1 all these days. Instead I've decided to make it a habit to pay my bills one day before due date and park money in savings account until then. I'm in process of reading and learning different form of investments. In future if I find something interesting I'll share the information here

Am I writing too little on my blogposts

This is a question that I get quite often to mention even with the post that I published before few minutes. Being bit by sEO bug that talks about creating original, unique, good quality content creation on daily basis with atleast 1000 to 3000 words, creating on single niche and making website authoritative etc, it happens that we get the feeling of writing too little and not meeting SEO guidelines set by gurus
Here is what I can say based on my experience
1) In this century google crawler looks for original, unique , good quality post which all of us do
2) We can write as much as we can now. Lets not think about size of posts
3) In a personal sticky note make a note of this post title, anytime in near future we might think of adding more content, updating the post we wrote sometime back.This will really help us improve the post and we will come out of this feeling
4) It may not be possible to build skyscrapper in a single day. Same principle does apply to our posts as well. Lets aim to make it sky scrapper over a period of time
5) Trust in your decision - This is essetially important for any entrepreneur and bloggers are no different

Building Sustainable Website

Any business starts with a business plan which can be set of instructions in a piece of paper. Once the business plan is in place, the business budgeting, execution of business plan, launch of product, marketing and sales of product, operation of business and all aspects of business life cycle come into picture.
As an online entrepreneur, it is really easy to launch a business. However, when it comes to sustaining of online web business it is equally competitive. With changing google algorithm, penalty from google, back links from unwanted websites, there is a extremely great possibility of website losing rank in less than an hour. Hence, stability and sustainability of an online web business is always questionable.
However, by adopting chosen few strategies it is quite possible to make an online business survive in longrun
1) Aim for constant growth - Success is a result of constant, continuous hardwork . Perseverance is the key. The day you launch a website have an attitude to aim for constant, continuous organic growth. Create, original , unique, good quality content articles that will last longer
2) Evergreen blogging is the sustainable factor - Corporate started realizing the power of blogging and spend about $150 or more to get great quality content that can rank better in google. The article forms the fulcrum upon which the offline business runs. Your small business is no different. Always aim for original, unique, good quality content to survive in long run. If you have a website with lots of old content that you think is not relevant in current scenario, better update it or purge it as google has changed the way it treats portals these days
3) Business is Number - This holds good for traffic, visitors, customers, revenue from website. On an average in a typical scenario a website sells for 20 times its revenue. This is the maximum for a well built website. If not look for 10 to 12 months worth of revenue. Make it a point to integrate google analytics code with website from day 1. This takes you miles

Obesity/Over weight - Ways to Overcome/Weight Reduction/Anti-obesity Tips & Tricks

Obesity or over weight is a common problem among the people today.Primary cause of over weight/obesity has been attributed to technological advancements which had made life so easy. Plenty of tricks and tips to overcome this problem will be discussed here.
1) Consume foods rich in omega-3 fatty acids. Some notable foods include oats,fish, canola oil etc. Oats is gainign great popularity and is supposed to be aprt of daily supplement typically an oats reakfast is considered best. This is a popular breakfast among diabetic, blood pressure patients. Fish is a rich source of omega-3 fatty acids. Regular cooking oil can be replaced with oil like canola oil that has less fat and is rich in omega-3
2) Do exercises on a regular basis. While performing exercises, gradually increase duration from 1 minute to 1 hour. This can start with simple floor exercises that can be practised in less than 10 minutes at home
3) Reduce the amount to carbohydrate content in the daily diet. IF you are eat rice, potatoes as part of regular diet keep check on quantity
4) Consume food rich in vitamin B complex. Some popular foods include Mushroom, Brocolli, greens, spinach,yeast,brown rice,wheat,wheat bread
5) Replace sweets and snacks with fruit and vegetable salads
6) Drinkatleast 1 glass of water every hour. This is a killer tip. As you drink plenty of water intake of food is reduced, appetite is controlled. Try this for one week adn observe noticeable difference
7) Avoid coffee/tea after lunch and dinner. This can easily induce you to add sugar adn cream, fat rich food after lunch and dinner
8) Don't skip breakfast. Anyone who skips his/her breakfast has been found to over-eat during lunch

Your time is always yours

Today is a big bright beautiful day and I'd like to wish Good Day to all my readers. This post on cultivate your time is on cultivating your own time.
There are 100's of 1000's of time management, personality developemtn books, courses out there. But why one more topic on this? Lets keep it simple. I've developed this time management trick to manage my projects online and offline. I see better results and wanted to share the secret recipe rather than some principles that I would have read in some books.
As I mentioned in first post of efinancialclub.com this website is all about real-life experiences, strategies that I make use of and found to be working fine to build business, grow business, sustain business.
How can I cultivate my best time?
Lets dissect this word by word
Cultivate - Create something new
Your - YES it is all yours
BEST - Aim for the sky to get best results
Time - This is the core concentration we will be talking about
Lets take a simple real-life strategy that I have been adopting for past few years to cultivate my best time
1) I run lots of online websites - I know one focus will help me reap best results. When I started blogging during my first few years, I was too much self-motivated and started taking up unrelated topics. With my littel knowledge on each of them with $10 domain investment, I can start sharing my knowledge without any hesitation. Currently these websites need little to zero maintenance and I choose to retain them considering SEO benefits that has gained over a period of time. Lets talk about SEO in forthcoming posts
2) I learn new technology skills on continuous basis - Knowledge is power and the day you stop reading will be your last day of life
3) I explore ways to make more money - Money Money Money. The magic wand gives you whatever you need in life. Always look for ways to make money in every possible way
4) I explore ways to save money - Even if the savings account pays me .10% extra I never hesitate to give it a try
5) I explore ways to grow money - I'm reading news on finance, tax saving and what not to see how I can grow my hard earned money. As I mentioned this is hard earned I don't want to splurge this
So, when do I cultivate time?
For all the above tasks I need to find my own time and here is my typical strategy to address the same
1) Say we find 10 quick minutes afte lunch/dinner - Utilize that for adding more contacts to your social network profiles like linkedin, facebook etc
2) Promote old interesting power posts - Power posts are the ones that perform best in our website and have scope to grow big. Say I created before 3 years and this post is still relevant and performing good. Promote the old post again in social network. This can be done on a lunch break
3) Career growth - This comes with finding new job that pays good. Even if you dont want to change job this year , if you are watching movie at home and if your family members dont hesitate try establishing recruiter contacts in your linkedin. Trust me. Over period of past 6 months I was choose right connections in my linkedin. Today morning when I checked my profile I've more than 1500 relevant connections. This is like dropping your pennies into future jackpot future pot
4) Make goal a way of your life - Right now I'm sipping my morning coffee. In this little 10 min break I wanted to blog something interesting rather than waiting for me to arrive at my blogging schedule. Please don't misunderstand me. This means that make use of free time for grooming and growing your personality like simple exercise, quick 2 lines for your future blogpost, collecting blogpost title ideas, quick read on some interesting technology (career related), finance related news and whatever helps you grow professionally, personally, financially
I've been blogging about my weight loss regimen and this is a strategy that I adopt, say I do real quick sit-ups even if I find 2 free mins. This adds value to lose weight and maintain your health