subject

Autor: Iwona Pabich © Copyright by Nowa Era Sp. z o. o. • www. nowaera. pl Karta pracy 4.1
Opracowywanie tekstu
1. Otwórz plik D4_T1_ZAD1_KP. docx (pobierzesz go ze strony informatyka. edu. pl).
Wykonaj polecenia:
 włącz opcję Pokaż wszystko i popraw w tekście błędy związane z redagowaniem
tekstu,
 na końcu tekstu dodaj nowy akapit – przepisz poniższe zdanie:
2. Napisz minimum 4 zasady prawidłowego redagowania tekstu.
…………………………….…………………………….…………………………… .…………
………………….…………………………….…………………………….……… ……………
……….…………………………….…………………………….………………… ……………
.…………………………….…………………………….………………………… ….………...
…………………….…………………………….…………………………….…… ……………
………….…………………………….…………………………….……………… …………...
3. Otwórz nowy dokument edytora tekstu i wykonaj polecenia:
 ustaw znacznik tabulatora na lewy,
 ustaw znacznik tabulatora na 1 cm,
 po naciśnięciu klawisza Tab wpisz pod spodem nazwy trzech przykładowych
urządzeń do pozyskiwania grafiki (skorzystaj z rys. 8a ze s. 109).
4. Otwórz nowy dokument edytora tekstu i wykonaj polecenia:
 ustaw znacznik tabulatora na prawy,
 ustaw znacznik tabulatora na 4 cm,
 przepisz poniższe liczby i przy użyciu klawisza Tab ustaw je tak, jak pokazano na
rys. 8b na s. 109:
30 000
678
2 009 001
Autor: Iwona Pabich © Copyright by Nowa Era Sp. z o. o. • www. nowaera. pl
5. Otwórz nowy dokument edytora tekstu i wykonaj polecenia:
 ustaw znacznik tabulatora na dziesiętny,
 ustaw znacznik tabulatora na 2 cm,
 przepisz poniższe liczby i przy użyciu klawisza Tab ustaw je tak, jak pokazano na
rys. 8d ze s. 109.
234,89
6,23
50,3
6. Otwórz plik D4_T1_ZAD6_KP. docx (znajdziesz go w miejscu wskazanym przez
nauczyciela albo pobierzesz ze strony informatyka. edu. pl). Wykonaj polecenia:
a) Wyszukaj za pomocą słownika błędy w tekście i popraw je.
b) Sformatuj drugą część tekstu tak samo jak pierwszą za pomocą Malarza formatów.
c) Plik zapisz pod nazwą Pan_Tadeusz_fragment.
7. Otwórz plik D4_T1_ZAD7_KP. docx (pobierzesz go ze strony informatyka. edu. pl).
Wykonaj polecenia:
a) Odszukaj w tekście wyrazy podane w tabeli. Przy pomocy narzędzia Tezaurus
poszukaj dla nich synonimów. Znalezione synonimy (po jednym dla każdego
przykładu) wpisz do tabeli.
Przykład Synonim
a) jaskrawego światła
b) miękkich
c) prawidłowo
d) niedostępnej
b) Za pomocą opcji Statystyka wyrazów sprawdź i wpisz do tabeli następujące
informacje:
liczba
akapity
wiersze
wyrazy
c) Podziel tekst na dwa akapity (w wybranym miejscu). Następnie ustaw wcięcia na
początkach akapitów na 1,5 cm.
d) Plik zapisz pod nazwą Latarnik_akapity. docx.
8. Utwórz nowy dokument programu Word. Wybierz odpowiedni szablon i przygotuj plakat.
Umieść na nim poniższe informacje:
 tytuł: Inscenizacja fragmentów „Pana Tadeusza”,
 data: wpisz dowolną datę,
 godzina: wpisz dowolną godzinę.
Plik zapisz pod nazwą plakat. docx.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 13:00
Which part of the cpu accepts data?
Answers: 1
question
Computers and Technology, 22.06.2019 22:30
Write a full class definition for a class named player , and containing the following members: a data member name of type string .a data member score of type int .a member function called setname that accepts a parameter and assigns it to name . the function returns no value.a member function called setscore that accepts a parameter and assigns it to score . the function returns no value.a member function called getname that accepts no parameters and returns the value of name .a member function called getscore that accepts no parameters and returns the value of score .this is what i have, aparently this is wrong: class player{private: string name; int score; public: void player: : setname (string n){name =n; }void player: : setscore (int s){score = s; }string player: : getname (){return name; }int player: : getscore (){return score; }};
Answers: 2
question
Computers and Technology, 23.06.2019 02:50
Define a class named movie. include private fields for the title,year, and name of the director. include three public functions withprototypes void movie: : settitle(cstring); , voidmovie: : setyear(int); , void movie: : setdirector(string); . includeanother function that displays all the information about a movie.write a main() function that declares a movie object namedmyfavoritemovie. set and display the object's fields.this is what i have but know its wrong since it will notcompile: #include#includeusing namespace std; //class declarationclass movie{private: string movietitle ; string movieyear; string directorname; public: void settitle(string title); void setyear(string year); void setdirector(string director); void displayinfo(); }; //class implementationvoid movie: : settitle(string title){ movietitle = title; cout< < "what is the title of themovie? "< > temp; myfavoritemovie.settitle(temp); cout< < "enter movie year"< > temp; myfavoritemovie.setyear(temp); cout< < "enter director'sname"< > temp; myfavoritemovie.setdirector(temp); //display all the data myfavoritemovie.displayinfo(); system("pause"); return 0; this code is not entirely mine someone on cramster edited my firstcode but then i try manipulating the new code and i still get acompile error message : \documents\visual studio 2008\projects\movie\movie\movie.cpp(46) : error c2679: binary '< < ' : no operator found which takes aright-hand operand of type 'std: : string' (or there is no acceptableconversion)c: \program files (x86)\microsoft visual studio9.0\vc\include\ostream(653): could be'std: : basic_ostream< _elem,_traits> & std: : operator< < > (std: : basic_ostream< _elem,_traits> & ,const char *)w
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Light travels at a speed of 186,000 miles a second. the distance light travels in a year is 5,865,690,000,000 miles/year 5,865,695,000,000 miles/year 58,656,950,000,000 miles/year 6,789,000,0000 miles/year
Answers: 1
You know the right answer?
Autor: Iwona Pabich © Copyright by Nowa Era Sp. z o. o. • www. nowaera. pl Karta pracy 4.1
Op...
Questions
question
World Languages, 05.11.2020 08:10
question
Mathematics, 05.11.2020 08:10
question
Business, 05.11.2020 08:10
question
English, 05.11.2020 08:10
question
Mathematics, 05.11.2020 08:10
Questions on the website: 13722359