Sunday, 12 July 2015

iPhone sales are about to explode

A new report from the Wall Street Journal points to iPhone sales exploding over the next few months.

It's a song and dance that's become somewhat of a routine: just as analysts believe iPhone sales are on the verge of peaking, new evidence suggests that the iPhone is about to become more popular than ever.

According to a report published on Wednesday in The Wall Street Journal, Apple recently asked its suppliers overseas to gear up for a production run of about 85 to 90 million iPhone units. By way of contrast, Apple during the build-up to the iPhone 6 and 6 Plus release anticipated orders in the 70 to 75 million unit range. In other words, Apple's iPhone sales during the company's next refresh cycle could skyrocket by upwards of 28%.

As for what features the iPhone 6s will bring to the table, it's been widely reported that Apple's new iPhone models will include a Force Touch display. It remains to be seen, however, how such a feature will translate into real-world usage on a smartphone. As for other features, users can look forward to faster internals, 2GB of RAM, and an improved Touch ID sensor.

Additionally, the Journal adds that the iPhone 6s may come in an additional color to the current lineup of silver, gold, and space gray. While this remains to be seen, some previous rumors on this topic have suggested that Apple is exploring both Rose Gold and Pink color options.

So while Apple Watch sales may be lagging, according to some reports, Apple's primary revenue generator -- the iPhone -- appears to be healthier than ever before.

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com


Thursday, 25 June 2015

How Amazon’s DynamoDB helped reinvent databases

In the earliest days of Amazon.com SQL databases weren’t cutting it, so the company created DynamoDB and in doing so helped usher in the NoSQL market

Behind every great ecommerce website is a database, and in the early 2000s Amazon.com’s database was not keeping up with the company’s business.

Part of the problem was that Amazon didn’t have just one database – it relied on a series of them, each with its own responsibility. As the company headed toward becoming a $10 billion business, the number and size of its SQL databases exploded and managing them became more challenging. By the 2004 holiday shopping rush, outages became more common, caused in large part by overloaded SQL databases.

Something needed to change.
But instead of looking for a solution outside the company, Amazon developed its own database management system. It was a whole new kind of database, one that threw out the rules of traditional SQL varieties and was able to scale up and up and up. In 2007 Amazon shared its findings with the world: CTO Werner Vogels and his team released a paper titled “Dynamo – Amazon’s highly available key value store.” Some credit it with being the moment that the NoSQL database market was born.

The problem with SQL
The relational databases that have been around for decades and most commonly use the SQL programming language are ideal for organizing data in neat tables and running queries against them. Their success is undisputed: Gartner estimates the SQL database market to be $30 billion.

But in the early to mid-2000s, companies like Amazon, Yahoo and Google had data demands that SQL databases just didn’t address well. (To throw a bit of computer science at you, the CAP theorem states that it’s impossible for a distributed system, such as a big database, to have consistency, availability and fault tolerance. SQL databases prioritize consistency over speed and flexibility, which makes them great for managing core enterprise data such as financial transactions, but not other types of jobs as well.)

Take Amazon’s online shopping cart service, for example. Customers browse the ecommerce website and put something in their virtual shopping cart where it is saved and potentially purchased later. Amazon needs the data in the shopping cart to always be available to the customer; lost shopping cart data is a lost sale. But, it doesn't necessarily need every node of the database all around the world to have the most up-to-date shopping cart information for every customer. A SQL/relational system would spend enormous compute resources to make data consistent across the distributed system, instead of ensuring the information is always available and ready to be served to customers.

One of the fundamental tenets of Amazon’s Dynamo, and NoSQL databases in general, is that they sacrifice data consistency for availability. Amazon’s priority is to maintain shopping cart data and to have it served to customers very quickly. Plus, the system has to be able to scale to serve Amazon’s fast-growing demand. Dynamo solves all of these problems: It backs up data across nodes, and can handle tremendous load while maintaining fast and dependable performance.

“It was one of the first NoSQL databases,” explains Khawaja Shams, head of engineering at Amazon DynamoDB. “We traded off consistency and very rigid

querying semantics for predictable performance, durability and scale – those are the things Dynamo was super good at.”

DynamoDB: A database in the cloud
Dynamo fixed many of Amazon’s problems that SQL databases could not. But throughout the mid-to-late 2000s, it still wasn’t perfect. Dynamo boasted the functionality that Amazon engineers needed, but required substantial resources to install and manage.

The introduction of DynamoDB in 2012 proved to be a major upgrade though. The hosted version of the database Amazon uses internally lives in Amazon Web Services’ IaaS cloud and is fully managed. Amazon engineers and AWS customers don’t provision a database or manage storage of the data. All they do is request the throughput they need from DynamoDB. Customers pay $0.0065 per hour for about 36,000 writes to the database (meaning the amount of data imported to the database per hour) plus $0.25 per GB of data stored in the system per month. If the application needs more capacity, then with a few clicks the database spreads the workload over more nodes.

AWS is notoriously opaque about how DynamoDB and many of its other Infrastructure-as-service products run under the covers, but this promotional video reveals that the service employs solid state drives and notes that when customers use DynamoDB, their data is spread across availability zones/data centers to ensure availability.

Forrester principal analyst Noel Yuhanna calls it a “pretty powerful” database and considers it one of the top NoSQL offerings, especially for key-value store use cases.

DynamoDB has grown significantly since its launch. While AWS will not release customer figures, company engineer James Hamilton said in November that DynamoDB has grown 3x in requests it processes annually and 4x in the amount of data it stores compared to the year prior. Even with that massive scale and growth, DynamoDB has consistently returned queries in three to four milliseconds.

Below is a video demonstrating DynamoDB’s remarkably consistent performance even as more stress is put on the system.

To see a demo of DynamoDB, jump to the 16:47 mark in the video.
Feature-wise, DynamoDB has grown, too. NoSQL databases are generally broken into a handful of categories: Key-value store databases organize information with a key and a value; document databases allow full documents to be searched against; while graph databases track connections between data. DynamoDB originally started as a key-value database, but last year AWS expanded itto become a document database by supporting JSON formatted files. AWS last year also added Global Secondary Indexes to DynamoDB, which allow users to have copies of their database, typically one for production and another for querying, analytics or testing.

NoSQL’s use case and vendor landscape
The fundamental advantage of NoSQL databases is their ability to scale and have flexible schema, meaning users can easily change how data is structured and run multiple queries against it. Many new web-based applications, such as social, mobile and gaming-centric ones, are being built using NoSQL databases.

While Amazon may have helped jumpstart the NoSQL market, it is now one of dozens of vendors attempting to cash in on it. Nick Heudecker, a Gartner researcher, stresses that even though NoSQL has captured the attention of many developers, it is still a relatively young technology. He estimates revenues of NoSQL products to not even surpass half a billion dollars annually (that’s not an official Gartner estimate). Heudecker says the majority of his enterprise client inquiries are still around SQL databases.

NoSQL competitors MongoDB, MarkLogic, Couchbase and Datastax have strong standings in the market as well and some seem to have greater traction among enterprise customers compared to DynamoDB, Huedecker says.

Living in the cloud

What’s holding DynamoDB back in the enterprise market? For one, it has no on-premises version – it can only be used in AWS’s cloud. Some users just aren’t comfortable using a cloud-based database, Heudecker says. DynamoDB competitors offer users the opportunity to run databases on their own premises behind their own firewall.

Khawaja Shams, director of engineering for DynamoDB says when the company created Dynamo it had to throw out the old rules of SQL databases.

Shams, AWS’s DynamoDB engineering head, says because the technology is hosted in the cloud, users don’t have to worry about configuring or provisioning any hardware. They just use the service and scale it up or down based on demand, while paying only for storage and throughput, he says.

For security-sensitive customers, there are opportunities to encrypt data as DynamoDB stores it. Plus, DynamoDB is integrated with AWS - the market’s leading IaaS platform (according to Gartner’s Magic Quadrant report), which supports a variety of tools, including other relational databases such as Aurora and RDS.

Adroll rolls with AWS DynamoDB

Marketing platform provider Adroll, which serves more than 20,000 customers in 150 countries, is among those organizations comfortable using the cloud-based DynamoDB. Basically, if an ecommerce site visitor browses a product page but does not buy the item, AdRoll bids on ad space on another site the user visits to show the product they were previously considering. It’s an effective method for getting people to buy products they were considering.

It’s really complicated for AdRoll to figure out which ads to serve to which users though. Even more complicated is that AdRoll needs to decide in about the time it takes for a webpage to load whether it will bid on an ad spot and which ad to place. That’s the job of CTO Valentino Volonghi --he has about 100 milliseconds to play with. Most of that time is gobbled up by network latency, so needless to say AdRoll requires a reliably fast platform. It also needs huge scale: AdRoll considers more than 60 billion ad impressions every day.

AdRoll uses DynamoDB and Amazon’s Simple Storage Service (S3) to sock away data about customers and help its algorithm decide which ads to buy for customers. In 2013, AdRoll had 125 billion items in DynamoDB; it’s now up to half a trillion. It makes 1 million requests to the system each second, and the data is returned in less than 5 milliseconds -- every time. AdRoll has another 17 million files uploaded into Amazon S3, taking up more than 1.5 petabytes of space.

AdRoll didn’t have to build a global network of data centers to power its product, thanks in large part to using DynamoDB.

“We haven’t spent a single engineer to operate this system,” Volonghi says. “It’s actually technically fun to operate a database at this massive scale.”

Not every company is going to have the needs of Amazon.com’s ecommerce site or AdRoll’s real-time bidding platform. But many are struggling to achieve greater scale without major capital investments. The cloud makes that possible, and DynamoDB is a prime example.

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com


Saturday, 20 June 2015

20 best iPhone/iPad games

Star Wars Rebels, Fireworks, Shakespeare and lots of quests are featured in top iPhone and iPad games.

Games
As we head toward summer 2015, it’s time to check in and see how the mobile gaming industry has fared for Apple iOS platforms, the iPhone and iPad. Here’s a look at top rated games issued so far this year, based on App Store user reviews and professional reviewers on Metacritic. We hope you’ll discover a few hidden gems in here.

Legend of Grimrock
Developer: Almost Human
Price: $5
Ratings: 95 of 100 on Metacritic; 4.5 of 5 stars on Apple App Store; Ages 9+

This popular role-playing game for the PC brings its dungeon crawling to iOS. With Legend of Grimrock, enable prisoners who may or may not have committed the crimes for which they’ve been exiled to Mount Grimlock navigate its maze of tunnels and tombs.

Ryan North’s To Be or Not to Be
Developer: Tim Man Games
Price: $6
Ratings: 93 of 100 on Metacritic; 4 of 5 stars on App Store; Rated 12+

Shakespeare meets the iPhone and iPad in Ryan North’s To Be or Not to Be game. As the developer writes: “Play as Hamlet and revenge your father's death. Play as Ophelia and make scientific discoveries. Play as King Hamlet, Sr. and die on the first page!”

Implosion: Never lose hope
Developer: Rayark
Price: $10
Ratings: 93 of 100 on Metacritic; 4.5 stars on App Store; Rated 12+

Implosion transports you here: “Twenty years after the fall of Earth, the remnants of the Human race are once again faced with extinction. The time has come to justify our existence. A mysterious life form known as the XADA squares off against humanity's last weapon - the War-Mech series III battle suit.”

Attack the Light: Steven Universe Light RPG
Developer: Cartoon Network
Price: $3
Ratings: 91 of 100 on Metacritic; 5 of 5 stars on App Store; Rated for ages 9+.

Attack the Light is a role-playing game in which 4 heroes team up for a magical adventure.

Sorcery! 3
Developer: Inkle Studios
Price: $5
Ratings: 90 of 100 on Metacritic; 4 of 5 stars on App Store; Rated 12+

Sorcery! 3 is described as “An epic adventure through a cursed wilderness of monsters, traps and magic.” And you don’t need to have played parts 1 or 2.
Video courtesy YouTube.com

Does not Commute
Developer: Mediocre AB
Price: Free
Ratings: 87 of 100 on Metacritic; 4.5 of 5 stars on App Store: Rated ages 4+.

In Does not Commute, “What starts out as a relaxing commute in a small town of the 1970s quickly devolves into traffic chaos with hot dog trucks, sports cars, school buses and dozens of other vehicles. You drive them all.”

Magic Touch: Wizard for Hire
Developer: Nitrome
Price: Free
Ratings: 87 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated age 9+.

In Magic Touch a wizard is wanted who has proficiency in spell casting for popping intruders’ balloons.

Halo Spartan Strike
Developer: Microsoft
Price: $6
Ratings: 86 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 12+.

In Halo Spartan Strike, you are a supersoldier tasked with up to 30 challenging missions in city and jungle settings. Don’t worry, you have plenty of weapons, skills and vehicles with which to pummel and outwit enemies of Earth.

SwapQuest
Developer: Constantin Graf
Price: $3
Ratings: 85 of 100 on Metacritic; 3.5 of 5 stars on App Store; Rated for ages 9+.

SwapQuest mixes easy-to-learn puzzles with role-playing action as you try to save the Kingdom of Aventana from a demon cloud dubbed the Horde.

Silly Sausage in Meatland
Developer: Nitrome
Price: Free
Ratings: 85 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 9+.

In Silly Sausage you’re a dog with an infinitely stretchy body, which can be handy but also exposes you to all sorts of meat cutting instruments.

Card Crawl
Developer: Arnold Rauers
Price: $2
Ratings: 84 of 100 on Metacritic; 5 of 5 stars on App Store; Rated for ages 12+.

Card Crawl is solitaire with a dungeon crawler twist, in which you need to say monsters efficiently.

TouchTone
Developer: Mikengreg
Price: $3
Ratings: 84 of 100 on Metacritic; 4 of 5 stars on App Store; Rated ages 12+.

TouchTone is a game that the likes of the NSA and Anonymous would love: decrypt suspicious messages to make the nation safer and stronger.

Flop Rocket
Developer: Butterscotch Shenanigans
Price: Free
Ratings: 84 of 100 on Metacritic; 4.5 of 5 on App Store; Rated for ages 12+.

Next best thing to flying a drone: “Pilot your Flop Rocket through a 5 kilometer cave filled with dragon-like Spaceducks, enormous rock-worms, and other space-time anomalies as you try to prevent an underfunded space program from going bust.”

Fearless Fantasy
Developer: TinyBuild
Price: $4
Ratings: 84 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 9+.

Fearless Fantasy is a gesture-based role-playing game in which you are a bounty hunter intent on slaying weird creatures and saving a young woman from an awful marriage.

The Quest Keeper
Developer: Tyson Ibele
Price: Free
Ratings: 83 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 4+.

In The Quest Keeper, your mission is to help a peasant become a dungeon master, but you’ll need to dodge spikes, knives and scary creatures to do so.

Star Wars Rebels: Recon Missions
Developer: Disney Interactive Studios
Price: Free
Ratings: 83 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 9+.

Star Wars Rebels is based on the TV show, and lets you take on the Empire in this action platform game.

Blokshot Revolution
Developer: Foxhole Games
Price: Free
Ratings: 82 of 100 on Metacritic; 4.5 of 5 stars on App Store; Rated for ages 4+.

In Blokshot Revolution, experience “a beautiful firework display of hypnotic neon destruction” set against a pumping EDM sountrack.

Beast Quest

Developer: Miniclip.com
Price: Free
Ratings: 81 of 100 on Metacritic; 4 of 5 stars on App store; Rated for ages 9+.

The Beast Quest action-adventure game asks whether you are the hero Avantia has been looking for to free the magical beasts of this leand from the spell of a wicked wizard.
best iphone ipad games 20

Marvel Future Fight
Developer: Netmarble Games
Price: Free
Ratings: 81 of 100 on Metacritic; 4.5 of 5 on App Store;

This Marvel role-playing game lets you assemble teams of super heroes for single or multiple player games, as you battle via weapons and skills to keep humanity alive.

MicRogue
Developer: Crescent Moon Games
Price: $2
Ratings: 80 of 100 on Metacritic; 2 of 5 stars on App Store; Rated for ages 4+.

MicRogue does have a weak rating on the App Store based on limited reviews, but Metacritic reviewers gave it some love for packing fun into a small package. Climb a dark tower and avoid monsters with chess-like moves.

Tuesday, 9 June 2015

CompTIA Network+ Exam Code N10-006

CompTIA Network+ Exam Code N10-006
Network+ Certification Network+ is an ISO-17024 compliant, vendor-neutral technology certification that verifies the certified individual has the skills and knowledge needed to take on a pivotal role in building, managing, and protecting the critical asset that is the data network.

Recommended as a first professional-level networking certification
Held by nearly half a million people worldwide
12% job growth expected for Network & Computer Systems Administrators (2012 – 2022, according to the BLS
The leading vendor-neutral, globally-recognized networking certification
ISO 17025 compliant
Fulfills US DoD Directive 8570.01-M
 
Jobs that use Network+

Network Administrator
Network Technician
Network Installer
Help Desk Technician
IT Cable Installer
Keeping the world connected
Network+ helps IT Professionals around the world advance their careers. Don't just take our word for it. See for yourself in this 2 minute video.

A new version of Network+ (N10-006) will launch on February 28, 2015. The new exam has been updated to reflect the current thinking of industry professionals as well as to reflect technologies used today, with a greater emphasis on practical knowledge, especially how to identify and use elements of a network infrastructure. Significant changes include:

Additional IPv6 concepts.
Emphasis on troubleshooting.
Additional security knowledge.
Knowledge of how to administer key systems.

The main differences between CompTIA Network+ N10-005 and Network+ N10-006 are the following:
Updated terms and technologies in the IT networking field.
More hands-on experiences such as installing, configuring, implementing, managing and troubleshooting.
Three new topics:
Compare and contrast physical security controls.
Summarize basic forensic concepts.
Summarize safety practices.

Companies such as Dell, HP, Ricoh, Sharp and Xerox recommend or require CompTIA Network+ for their networking technicians. It is also a technical prerequisite option for IT technicians seeking to join the Apple Consultants Network, and is recognized by the U.S. Department of Defense.

The CompTIA Network+ce program is included in the scope of this accreditation, and may be kept current through the CompTIA Continuing Education program.

Test Details
Exam Codes N10-005
JK0-019 (for CompTIA Academy Partners only) N10-006
JK0-023 (for CompTIA Academy Partners only)
Launch Date 1-Dec-11 28-Feb-15

Number of Questions Maximum of 100 questions Maximum of 90 questions
Type of Questions Multiple choice and performance-based

Passing Score
720 (on a scale of 100-900)

Recommended Experience
CompTIA A+ Certification (9) months of networking experience

Languages English, Japanese, German, Simplified Chinese, Korean, Spanish, Traditional Chinese
English at launch (2/28/15) Japanese and German - in development







QUESTION 1
A technician has verified that a recent loss of network connectivity to multiple workstations is due
to a bad CAT5 cable in the server room wall. Which of the following tools can be used to locate its
physical location within the wall?

A. Cable certifier
B. Multimeter
C. Cable tester
D. Toner probe

Answer: D

Explanation:


QUESTION 2
Which of the following is used to authenticate remote workers who connect from offsite? (Select
TWO).

A. OSPF
B. VTP trunking
C. Virtual PBX
D. RADIUS
E. 802.1x

Answer: D,E

Explanation:


QUESTION 3
Which of the following network infrastructure implementations would be used to support files being
transferred between Bluetooth-enabled smartphones?

A. PAN
B. LAN
C. WLAN
D. MAN

Answer: A

Explanation:


QUESTION 4
Which of the following would be used in an IP-based video conferencing deployment? (Select
TWO).

A. RS-232
B. 56k modem
C. Bluetooth
D. Codec
E. SIP

Answer: D,E

Explanation:


QUESTION 5
Which of the following helps prevent routing loops?

A. Routing table
B. Default gateway
C. Route summarization
D. Split horizon

Answer: D

Explanation:


QUESTION 6
Which of the following is MOST likely to use an RJ-11 connector to connect a computer to an ISP
using a POTS line?

A. Multilayer switch
B. Access point
C. Analog modem
D. DOCSIS modem

Answer: C

Explanation:


QUESTION 7
An administrator has a virtualization environment that includes a vSAN and iSCSI switching.
Which of the following actions could the administrator take to improve the performance of data
transfers over iSCSI switches?

A. The administrator should configure the switch ports to auto-negotiate the proper Ethernet
settings.
B. The administrator should configure each vSAN participant to have its own VLAN.
C. The administrator should connect the iSCSI switches to each other over inter-switch links (ISL).
D. The administrator should set the MTU to 9000 on the each of the participants in the vSAN.

Answer: D

Explanation:


QUESTION 8
A network topology that utilizes a central device with point-to-point connections to all other devices
is which of the following?

A. Star
B. Ring
C. Mesh
D. Bus

Answer: A

Explanation:


QUESTION 9
A technician is connecting a NAS device to an Ethernet network. Which of the following
technologies will be used to encapsulate the frames?

A. HTTPS
B. Fibre channel
C. iSCSI
D. MS-CHAP

Answer: C

Explanation:


QUESTION 10
The network install is failing redundancy testing at the MDF. The traffic being transported is a
mixture of multicast and unicast signals. Which of the following would BEST handle the rerouting
caused by the disruption of service?

A. Layer 3 switch
B. Proxy server
C. Layer 2 switch
D. Smart hub

Answer: A

Explanation:

Monday, 25 May 2015

MB7-702 Microsoft Dynamics NAV 2013 C/Side Development

MB7-702 Microsoft Dynamics NAV 2013 C/Side Development

Published: 18 January 2013
Languages: English, French, German, Spanish
Audiences: IT professionals
Technology: Microsoft Dynamics NAV 2013
Credit towards certification: MCP, MCTS

Skills measured
This exam measures your ability to accomplish the technical tasks listed below. The percentages indicate the relative weight of each major topic area in the exam. The higher the percentage, the more questions you are likely to see on that content area in the exam.

Please note that the questions may test on, but will not be limited to, the topics described in the bulleted text.

Describe the data and process models (10-15%)

Explain the table types and characteristics
Explain the characteristics of master tables, supplemental tables, subsidiary tables, ledger tables, register tables, journal tables, document tables, document history tables and setup tables

Describe the standard data model and process model
Describe the data model diagram, describe standard data flow and typical data triggers

Preparation resources
Tables
Triggers
Design the data model

Implement master tables, pages and documents (10-15%)

Track participants
Develop participant tracking solutions, describe triggers and multi-language support

Manage seminars, instructors and rooms
Describe seminar management; explain a setup table, master tables and pages; design seminar management solutions; develop solutions to manage instructors and rooms; create seminar tables and pages

Implement documents
Describe registrations; design a solution for registrations; develop registrations; use objects as text files; describe multi-language functionality in text messages; explain document pages, page functions, virtual tables, temporary tables and system tables

Describe the table code
Describe seminar registration line table code, the seminar charge table, the seminar comment line table and pages

Preparation resources
How Do I: Work with the Payment Registration for incoming payments in Microsoft Dynamics NAV 2013 R2
Page Designer walkthroughs

Implement posting and dimensions (10-15%)

Explain posting and develop a posting solution
Describe the journal, ledger, register, tables and pages; identify journal posting codeunits; explain the journal and document posting processes; describe the example posting routine, existing objects, and code comments; diagnose performance issues; create journal and document posting routines; create and modify codeunits, tables, and pages for a posting solution; complete the journal and ledger tables registration posting; create codeunits and pages for seminar journal posting; create tables and pages for posted registration information; modify tables, pages, and codeunits for resource posting; create codeunits for document posting

Integrate seminar management with dimensions
Choose dimension types, set up dimensions, describe the dimensions data model, design and develop integration of seminar management with dimensions

Preparation resources
Set up posting groups
Codeunits
Set up dimensions to mark transactions

Implement feature integration and role tailoring (10-15%)
Integrate seminar-management features

Modify tables that contain data, design and develop seminar feature integration

Enable the Navigate feature
Describe Navigate feature architecture, develop solutions for the Navigate feature, integrate objects with the Navigate feature

Explain role tailoring
Describe the RoleTailored user interface, Role Centre, actions, ribbon, activities, lists, charts and profiles

Develop the seminar manager Role Centre and department page

Design seminar manager Role Centre solutions, develop seminar management department pages

Create and design MenuSuite objects
Describe the fundamentals of the MenuSuite object type, explain the design levels, create and design MenuSuite objects, explain how searching functions by using the Microsoft Dynamics NAV 2013 Windows client

Preparation resources
Navigation pane
Learn about the RoleTailored design
Walkthrough: Creating MenuSuites for the Microsoft Dynamics NAV Windows client

Create reports and manage statistics (10-15%)

Design and create a participant list report
Design and analyse solutions; differentiate between GUI design, functional design and table design; create seminar participant lists

Develop invoice posting batch jobs
Design and analyse solutions, create invoice posting batch jobs

Manage seminar statistics
Design and analyse solutions, add statistics to the Seminar Management module, create FlowFields of the Sum type, create seminar statistics pages

Preparation resources
Report design guidelines
Batch post purchase invoices batch job
SumIndexField Technology (SIFT)

Implement interfaces and Web Services (10-15%)

Automate email communication with participants
Explain how to implement automation and OCX controls to perform tasks by using other applications, describe file handling functions to import or export data, design and implement email capability

Explain Web Services
Explain Web Services architecture, SOAP Web Services, page operations with SOAP Web Services, extension codeunits and OData Web Services; handle user interface interactions

Develop a Web Service
Design, develop and test registration Web Services; create Web Services; create Windows form applications to test Web Services

Preparation resources
How to: Send email messages
Overview of Microsoft Dynamics NAV Web Services
Web Service walkthroughs

Test and debug code (10-15%)
Test the seminar management solution

Describe test-driven development fundamentals; test features, codeunits and functions; explain transaction models for test functions; describe the use of ASSERTERROR in test functions; use handler functions; test pages; create and run a test runner codeunit; design and develop seminar management test solutions; create seminar management unit tests

Debug code
Activate the Microsoft Dynamics NAV Debugger, use breakpoints, run and track code

Preparation resources
Testing the application
Walkthrough: Debugging the Microsoft Dynamics NAV Windows client
How do I: Use the Debugger in Microsoft Dynamics NAV 2013 R2

Optimise for SQL Server (10-15%)
Explain SQL Server integration and database tasks with Microsoft Dynamics NAV

Explain the advantages of using SQL Server for Microsoft Dynamics NAV 2013, describe Microsoft Dynamics NAV tables and indexes in SQL Server, explain how to share data across companies, obtain a list of indexes and their definitions

Use collation, the SQL Server Profiler and the SQL Server query optimiser
Describe collation, order by sort, describe the value of the SQL Server query optimiser, gather SQL Server statistics, explain SQL Server Profiler terminology

Optimise a Microsoft Dynamics NAV application
Optimise SumIndexField Technology (SIFT) tables and indexes, describe the index usage query, define keys to improve performance, describe implicit and explicit locking, identify problems with NEXT, define suboptimal coding and other performance penalties, analyse index usage, optimise C/AL code

Explain data access redesign
Describe simplified deployment, explain decreased resource consumption, identify caching, describe performance improvements

Describe C/AL database functions and performance on SQL Server
Describe the GET, FIND, NEXT, CALCFIELDS, CALCSUMS, COUNT, SETAUTOCALCFIELDS, INSERT, MODIFY, DELETE and LOCKTABLE functions; explain dynamic result sets

Describe bulk inserts, locking, blocking and deadlocks
Describe bulk inserts; identify bulk insert constraints; describe locking, blocking and deadlocks; explain the benefits of avoiding deadlocks
Describe SIFT data storage in SQL Server
Identify SIFT data storage in SQL Server

Preparation resources
Optimising SQL Server performance with Microsoft Dynamics NAV
C/AL database functions and performance on SQL Server
SIFT and SQL Server




QUESTION 1
Which of the following options best describe the core aim of utilizing a function trigger?

A. It forms an indicator which is set upon a record pending modifications in the table
B. It forms an indicator to alert you upon the page being opened and the record being recaptured
from the required table
C. It forms an indicator to bring to your attention that the page has been loaded yet the controls
are still unavailable
D. It forms an indicator which is set upon a new record being added to a table

Answer: D

Explanation:


QUESTION 2
Which of the following posting groups will need to be included in a table if you are assigned the
task of creating a master table which represents entities with business associates?

A. Customer Posting Group
B. The Gen. Prod. Posting Group
C. VAT Business Posting Group
D. VAT Posting Setup

Answer: B

Explanation:


QUESTION 3
Which of the following statements regarding Text fields is true?

A. The Item table can have a Text field of up to 256 characters.
B. The Item table can have a Text field with a minimum of 156 characters.
C. The Item table can have a Text field of up to 250 characters.
D. The Item table can have a Text field of exactly to 186 characters.

Answer: C

Explanation:


QUESTION 4
Which of the following options states the correct amount of SumIndexFields one key is capable of
possessing in a FlowField?

A. A minimum of 10
B. Exactly 18
C. A maximum of 20.
D. A maximum of 22

Answer: C

Explanation:


QUESTION 5
Which of the following statements regarding bulk inserts is accurate?

A. Bulk inserts on the tables increase the capacity for server calls thus greatly advancing
performance capabilities.
B. Bulk inserts would be implemented upon needing to find statements therefore greatly lessens
the period in which the table is unlocked.
C. Bulk inserts would be implemented upon needing to alter or remove statements on the table as
this greatly lessens the period in which the table is locked.
D. The bulk inserts enhance the scalability by accelerating the insert in the transaction therefore
this greatly lessens the period in which the table is locked

Answer: C

Explanation:

Saturday, 16 May 2015

70-341: Core Solutions of Microsoft Exchange Server 2013

70-341: Core Solutions of Microsoft Exchange Server 2013
Published: 15 January 2013
Languages: English, Chinese (Simplified), French, German, Japanese, Portuguese (Brazil)
Audiences: IT professionals
Technology: Microsoft Exchange Server 2013
Credit towards certification: MCP, MCSE

Skills measured
This exam measures your ability to accomplish the technical tasks listed below. The percentages indicate the relative weight of each major topic area in the exam. The higher the percentage, the more questions you are likely to see on that content area in the exam.

From July 2014, the questions on this exam include content covering Microsoft Exchange Server 2013 Service Pack 1.

Please note that the questions may test on, but will not be limited to, the topics described in the bulleted text.

Plan, install, configure and manage transport (25%)

Plan a high availability solution for common scenarios

Set up redundancy for intra-site scenarios; plan for SafetyNet; plan for shadow redundancy; plan for redundant MX records

Design a transport solution

Design inter-site mail flow; design inter-org mail flow; plan for Domain Secure/TLS; design Edge transport; design message hygiene solutions; design shared namespace scenarios

Configure and manage transport

Configure Edge servers; configure Send/Receive connectors; configure transport rules; configure accepted domains; configure email policies; configure Address Rewriting

Troubleshoot and monitor transport

Interpret message tracking logs and protocol logs; troubleshoot a shared namespace environment; troubleshoot SMTP mail flow; given a failure scenario, predict mail flow and identify how to recover; troubleshoot Domain Secure/TLS; troubleshoot the new transport architecture

Configure and manage hygiene

Manage content filtering; manage recipient filtering; manage SenderID; manage connection filtering; manage Spam Confidence Level (SCL) thresholds; manage anti-malware

Preparation resources

Transport high availability
Use an Edge Transport Server in Exchange 2013
Hygiene management

Install, configure and manage the mailbox role (25%)

Plan the mailbox role

Plan for database size and storage performance requirements; plan for virtualisation requirements and scenarios; plan mailbox role capacity and placement; design public folder placement strategy; validate storage by running JetStress

Configure and manage the mailbox role

Create and configure Offline Address Book (OAB); create and configure public folders; deploy mailbox server roles; design and create hierarchical address lists

Deploy and manage high availability solutions for the mailbox role

Create and configure a Database Availability Group (DAG); identify failure domains; manage DAG networks; configure proper placement of a file share witness; manage mailbox database copies

Monitor and troubleshoot the mailbox role

Troubleshoot database replication and replay; troubleshoot database copy activation; troubleshoot mailbox role performance; troubleshoot database failures; monitor database replication and content indexing

Develop backup and recovery solutions for the mailbox role and public folders

Manage lagged copies; determine most appropriate backup solution/strategy; perform a dial tone restore; perform item-level recovery; recover the public folder hierarchy; recover a mailbox server role

Create and configure mail-enabled objects

Configure resource mailboxes and scheduling; configure team mailboxes; configure distribution lists; configure moderation; configure a linked mailbox

Manage mail-enabled object permissions

Configure mailbox folder permissions; configure mailbox permissions; set up room mailbox delegates; set up team mailbox membership; set up auto-mapping; determine when to use Send As and Send On Behalf permissions

Preparation resources

Mailbox server
Database availability groups
Perform a dial tone recovery

Plan, install, configure and manage client access (25%)

Plan, deploy and manage a Client Access Server (CAS)

Design to account for differences between legacy CAS and Exchange CAS/CAF; configure Office web application

Plan and configure namespaces and client services

Design namespaces for client connectivity; configure URLs; plan for certificates; configure authentication methods; implement auto-discover for a given namespace

Deploy and manage mobility solutions

Deploy OWA for Devices; configure OWA policies; configure mobile device mailbox policies; configure Allow Block Quarantine (ABQ); deploy and manage Office Apps

Implement load balancing

Configure namespace load balancing; configure Session Initiation Protocol (SIP) load balancing; plan for differences between layer seven and layer four load balancing methods; configure Windows Network Load Balancing (WNLB)

Troubleshoot client connectivity

Troubleshoot Outlook Anywhere connectivity; troubleshoot POP/IMAP; troubleshoot authentication; troubleshoot web services; troubleshoot AutoDiscover; troubleshoot mobile devices

Preparation resources

Client access server
Clients and mobile
Load balancing

Design and manage an Exchange infrastructure (25%)

Plan for impact of Exchange on Active Directory services

Plan the number of domain controllers; plan placement of Global Catalogue (GC); determine DNS changes required for Exchange; prepare domains for Exchange; evaluate impact of schema changes required for Exchange; plan around Active Directory site topology

Administer Exchange workload management

Configure user workload policies; configure system workload policies; monitor system workload events; monitor user workload events

Plan and manage Role Based Access Control (RBAC)

Determine appropriate RBAC roles and cmdlets; limit administration using existing role groups; evaluate differences between RBAC and Active Directory split permissions; configure a custom-scoped role group; configure delegated setup

Design an appropriate Exchange solution for a given SLA

Plan for updates; plan for change management; design a solution that meets SLA requirements around scheduled downtime; design a solution that meets SLA requirements around RPO/RTO; design a solution that meets SLA requirements around message delivery

Preparation resources

Prepare Active Directory and domains
Exchange workload management
Planning for role-based access control




QUESTION 1
You need to prepare the environment for the implementation of phase 1.
What changes must be made to the environment before you can install Exchange Server 2013?

A. The operating system or service pack level of TexDC1 needs to be upgraded.
B. The Windows 2008 R2 domain controllers in Washington and Boston need to be upgraded.
C. A server running Exchange Server 2007 or Exchange Server 2010 needs to be installed in
Texas.
D. The PDC emulator role needs to be transferred to a domain controller in Washington or Boston.

Answer: A

Explanation:


QUESTION 2
You are evaluating whether the proposed Exchange solution will meet the current and future
capacity requirements.
You want to gather statistics about the current Exchange environment.
Which of the following tools would you use to determine the number of emails sent to and received
by the current users?

A. Remote Server Administration Tools.
B. Microsoft Exchange Server Profile Analyzer.
C. Microsoft Exchange Server Deployment Assistant.
D. ESEUtil.exe.
E. Microsoft Exchange Server Jetstress.

Answer: B

Explanation:


QUESTION 3
You need to apply the required size restriction to the mailboxes in the new environment.
Which of the following commands should you run?

A. Get-MailboxDatabase | Set-MailboxDatabase –ProhibitSendReceiveQuota
B. Get-MailboxDatabase | Set-Mailbox –ProhibitSendReceiveQuota
C. Get-Mailbox | Set-Mailbox –ProhibitSendReceiveQuota
D. Get-MailboxDatabase | Get-Mailbox | Set-Mailbox –ProhibitSendReceiveQuota

Answer: A

Explanation:


QUESTION 4
You are evaluating whether the proposed Exchange solution will meet the current and future
capacity requirements.
You want to gather statistics about the current Exchange environment.
Which of the following tools would you use to determine the number of IOPS (Input/Output
Operations Per Second) required for the mailbox database storage?

A. ESEUtil.exe.
B. Microsoft Exchange Server Jetstress.
C. Microsoft Exchange Server Deployment Assistant.
D. Exchange Mailbox Server Role Requirements Calculator.
E. SQL Server Analysis Services.

Answer: D

Explanation:


QUESTION 5
You need to install and configure anti-spam and antimalware filtering.
Which servers should you install the anti-spam agents and enable the anti-spam and antimalware
filtering? (Choose two).

A. You should install the anti-spam agents on the Client Access Servers only.
B. You should install the anti-spam agents on the Mailbox serversonly.
C. You should install the anti-spam agents on the Client Access Servers and the Mailbox Servers.
D. You should enable antimalware filtering on the Client Access Serversonly.
E. You should enable antimalware filtering on the Mailbox serversonly.
F. You enable antimalware filtering on the Client Access Servers and the Mailbox Servers.

Answer: B,E

Explanation:

Wednesday, 29 April 2015

Hottest products at Interop 2015

Interop 2015 features products from networking, cloud, virtualization and security vendors.

Interop 2015
Interop 2015 is in full swing this year with an estimated 12,000 attendees and 300 exhibitors, including 125 new ones compared to last year. Check out our roundup of the hottest products and services being announced or displayed at this year’s conference.

Mobile Power Packs
Key features: Mobile power packs, including 3000, 5000 and 10000mAh models, keep USB mobile devices like smartphones and tablets charged on-the-go, so you can stay connected wherever life takes you.

Sentinel
Key features: Sentinel monitors data centers 24/7, surveys 12 status conditions and sends alerts via phone, text or email. Cloud-based logging provides unlimited storage and protects against data loss.

LiquidPlanner Dashboards
Key features: Our new Dashboards feature is an easy and powerful way to share important project information with team members and stakeholders—inside and outside your company.

PRTG Network Monitor
Pricing: free for 100 sensor license, starts at $1600 for 500 sensors and increases with scale

Key features: PRTG Network Monitor includes new sensors to monitor the loading time of web servers worldwide and the ping time to any device, in any location.

XCom Global World Wi-Fi Hotspot Rental
Key features - Expanded LTE coverage in Asia-Pacific. In addition to Japan and South Korea, XCom Global is now offering secure, reliable super-fast LTE Internet connections in Thailand, Taiwan, China and Australia.

ARC CBA850 Cellular Broadband Adapter with Out-of-Band Management
Key features: Cradlepoint ensures critical network uptime by combining secure cloud access with 4G LTE networking, failover and unique Out-of-Band Management capabilities without the traditional need for costly static IPs.

CenturyLink Orchestrate
Key features: Orchestrate is a fully managed database service for rapid application development. The service allows developers to easily manage, search & manipulate data from multiple, disparate databases through a single GUI.

FLX UC 1000 IP & USB Conference Phone
Key features: One Phone for All: Supports USB audio for softphone calls and SIP telephony for all market-leading IP PBXs. Features HD audio quality for call bridging between VoIP and USB calls.

Jolata TruFlow Platform
Key features: Jolata’s TruFlow Platform is a software-based network analytics solution that identifies latency and other hard-to-find problems in physical and virtual networks to see precisely how a network is performing – with microsecond precision and in real-time.

Open Networking Adapter
Key features: provides instant network identity to any device with an Ethernet port including medical devices, manufacturing equipment, kiosks, and branch offices. The pocket-sized appliance leverages commercial, off the shelf processing with an Open Virtual Switch (OVS), Avaya extensions and SDN Control to extend the power and flexibility of SDN to any Ethernet-enabled device or location.

Ethernet Routing Switch (ERS) 5900 Series
Key features: Premium Stackable Chassis system providing high-performance, convergence-ready, resilient and secure Ethernet switching connectivity. Supporting Avaya’s innovative Fabric technology, it delivers virtual fabric services to the network edge /wiring closet environment. More info

CloudShell
Key features: CloudShell is a cloud automation platform that features:
Visual modeling of complete infrastructure environments
Resource management of physical, virtual and public cloud elements
Visual orchestration workflow authoring

NetCrunch 8.6
Key features: NetCrunch 8.6 features a brand-new GUI, cloud-monitoring capabilities, dynamic widgets for real-time monitoring, and over 400 other changes.

Allot Cloud Access Optimization
Key features: Allot Cloud Access Optimization, with support for Microsoft Office 365, enables enterprises and cloud managed service providers to enhance cloud application visibility, control and security to ensure high user QoE and productivity.

Cloud Workspace Suite Version 4.1
Key features: Cloud Workspace Suite v4.1 is integrated workspace automation software featuring centralized multi-datacenter administration, automated workflow and delivery of Microsoft RemoteApp services, configuration, and deployment.

Tonomi autonomic application delivery and management platform
Key features: Tonomi provides autonomic application delivery and management platform for cloud applications. Tonomi enables applications to become adaptive, self-managed services that will configure, heal, optimize and protect themselves in response to changes within dynamic cloud environments.

One Hybrid Cloud software platform
Key features: CloudVelox delivers an automated cloud DR and migration platform specifically developed for the unique operating demands of existing, multi-tier apps migrating to the AWS cloud and disaster recovery in AWS.

Redbooth Analytics
Key features: collects and visualizes collaboration data – including ownership, overdue tasks, completion potential, and active work – giving managers and teams transparency about efficiency and productivity across tasks, projects and groups.

LiquidSecurity Hardware Security Module (HSM) Family
Key features -- The LiquidSecurity HSM family complete Hardware Based Transaction Security Solution provides a FIPS 140-2 level 2 and 3 partitioned, centralized and elastic key management solution with the highest transaction/sec performance.

EH6100v
Key features: ExtraHop’s EH6100v virtual appliance delivers real-time wire data analysis up to a sustained 10Gbps for AWS cloud and VMware environments, providing enterprises the capacity to monitor cloud-based workloads at scale.

nFAST
Key features: nFAST SW platform enables Resource Attribute Sharing which increases the Velocity of Test Cycles. Key features include Auto-Discovery, Asset Management & Tracking and Cloud Control Orchestration Engine.

Dell SonicWALL TZ Series firewalls
Key features: The new solutions deliver enterprise-class security, featuring a dramatic increase in network performance to support faster Internet speeds, the ability to analyze encrypted SSL traffic and an integrated wireless controller.

LaunchKey White Label
Pricing: LaunchKey White Label - $10 total per month for (small “Powered by LaunchKey” marking); LaunchKey White Label PRO - 10 cents per user per month – (No LaunchKey Markings)

Key features: LaunchKey is a decentralized authentication platform capable of multi-factor authentication, providing your users with password-free or 2-step login from a native mobile app, via LaunchKey White Label.

Tufin Orchestration Suite
Key features: The Tufin Orchestration Suite is a solution to the challenges of network security management in today’s complex environment – providing automation and increased visibility into the daily changes impacting network security.

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com