piątek, 2 stycznia 2015

Oficjalna baza pytań egzaminacyjny została upubliczniona!

Można teraz już sprawdzić swoją wiedzę na tych samych pytaniach, które spotka się na egzaminie państwowym w WORD.

Poniżej link do strony gdzie można zakupić abonament (niestety płatny i okresowy).

http://www.ltesty.pl/cennik/

Dodatkowo ustawodawca przewiduje możliwość zdania egzaminu państwowego teoretycznego bez kursu teoretycznego w szkole jazdy. W jaki sposób będą to realizowały WORDy dowiemy się już niebawem.

Brak komentarzy:

Prześlij komentarz

// This code will work in iOS 2 and up // (spoiler: you're not going to need anything below iOS 6). // Tested in iOS 7 // In your app's UIApplicationDelegate: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { (...) NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if (![defaults boolForKey:@"termsAccepted"]) NSString *message = @"Your message for visitors here"; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Cookies" message:message delegate:self cancelButtonTitle:nil otherButtonTitles:@"Close message", nil]; [alert show]; } } // Elsewhere in the file: - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setBool:YES forKey:@"termsAccepted"]; [defaults synchronize]; }